Source Code

/ src / style / theme6.css

:root {
    --bg-dark: #0b0b0b;
    --bg-panel: #1e1e1e;
    --text-main: #e6e6e6;
    --text-muted: #888888;

    --accent-red: #ff0000;
    --accent-purple: #000;
    --accent-neon: #00ff99;

    --link-main: #ff3300;
    --link-hover: #ff6600;

    --border-main: #444444;
    --border-hover: #ff0000;

    --quote-bg: #111111;
    --quote-border: #ff0000;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: "Courier New", monospace;
    line-height: 1.4;
}


a {
    color: var(--link-main);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: var(--link-hover);
    text-shadow: 0 0 5px var(--accent-red);
}


article {
    background: var(--bg-panel);
    border: 2px solid var(--border-main);
    border-radius: 3px;
    margin: 1em 0;
    padding: 1em;
    transition: all 0.2s;
}

article:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 15px var(--accent-red);
    transform: translateX(2px) rotate(-0.5deg);
}



.post-content {
    background: var(--bg-panel);
    border-left: 4px solid var(--accent-purple);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.post-content pre {
    background: #111;
    color: #ff3300;
    border-radius: 5px;
    padding: 1rem;
    font-size: 0.85rem;
}



.post-list-item {
    background: #111;
    border: 1px solid var(--border-main);
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 0.6rem;
    transition: all 0.15s;
}

.post-list-item:hover {
    border-color: var(--accent-red);
    background: #1c1c1c;
    transform: scale(1.02) rotate(-0.5deg);
}



.item-title {
    font-weight: bold;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.sidebar {
    background: #111;
    border: 2px dashed var(--accent-purple);
    padding: 1rem;
    border-radius: 5px;
}

.sidebar h3 {
    color: var(--accent-neon);
    text-shadow: 0 0 5px var(--accent-neon);
}



.author-info {
    background: #111;
    border: 1px solid var(--accent-red);
    padding: 0.5rem;
    border-radius: 3px;
    display: flex;
    gap: 0.5rem;
    margin-top: -10px;
}

.author-info-avatar {
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
}


.comments-container {
    background: #111;
    border-left: 4px solid var(--accent-red);
    padding: 1rem;
    margin-top: 2rem;
}

.comments-container::before {
    content: "post your thoughts… if you dare";
    display: block;
    font-size: 0.85rem;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}


blockquote {
    background: var(--quote-bg);
    border-left: 5px solid var(--quote-border);
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    font-style: italic;
    border-radius: 3px;
}



footer {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 2rem;
}



.webrings {
    background: #111;
    border: 2px solid var(--accent-purple);
    border-radius: 5px;
    padding: 0.5rem;
}

.webrings a:hover {
    background: var(--accent-red);
    color: var(--black);
    transform: translateY(-2px);
}



@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.post-list-item:hover {
    animation: flicker 0.15s infinite;
}