Source Code

/ src / style / theme4.css

:root {
    --page-bg: #0e0f12;
    --page-fg: #e6e6eb;

    --panel-bg: #14161b;
    --panel-bg-soft: #1b1e25;

    --divider: #2a2e38;

    --accent: #c62828;
    --accent-soft: #ff5c5c;
    --accent-muted: #7a1f1f;

    --link: #eaeaf0;
    --link-hover: #ff6a6a;

    --description: #a9abb3;
    --mute: #7b7e89;

    --code-bg: #0b0c10;
    --code-fg: #f2f2f2;

    --year-td: #2a2e38;
    --month-empty: #16181f;

    --webrings: #14161b;
    --webrings-hover: #1f2330;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    max-width: 980px;
    margin: 2.5rem auto;
    padding: 0 1.25rem;
    background: var(--page-bg);
    color: var(--page-fg);
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover);
    text-decoration: none;
}

hr {
    border: none;
    border-top: 1px solid var(--divider);
}


pre {
    background: var(--code-bg);
    color: var(--code-fg);
    padding: 1.25em 1em;
    border-radius: 10px;
    font-size: 0.9em;
    overflow-x: auto;
}

.post-content img,
.post-content video,
.post-content iframe {
    max-width: 100%;
    display: block;
    background: var(--panel-bg);
}

.post-content a {
    color: var(--link-hover);
    text-decoration: none;
}
.post-content a:hover {
    color: var(--link);
    text-decoration: none;
}

.content-sidebar-container {
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 2rem;
}

.sidebar {
    border-left: 1px solid var(--divider);
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.logo-subtitle-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.logo-main {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.logo-thorn {
    margin-top: -32px;
    opacity: 0.85;
}

.column-links {
    text-align: right;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.column-links a {
    border-radius: 6px;
}

.column-links a:hover {
    background: var(--panel-bg-soft);
}

.post-list-item {
    display: flex;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--divider);
    position: relative;
}

.post-list-item:last-child {
    border-bottom: none;
}

.item-thumb {
    width: 150px;
    height: 105px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--panel-bg);
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 650;
    letter-spacing: 0.2px;
}

.item-title:hover {
    color: var(--accent-soft);
}

.item-main-bottom-group {
    color: var(--description);
    margin-top: 0.4rem;
    line-height: 1.45;
}

.item-main-extra-group {
    margin-top: 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mute);
}

.item-author-avatar {
    border: 2px solid var(--accent-muted);
}

.author-info {
    background: var(--panel-bg);
    border-radius: 14px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.author-info-avatar {
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--divider);
}

.author-info-description {
    color: var(--description);
    font-size: 0.85rem;
}

.year-calendar td {
    border: 1px solid var(--year-td);
    background: var(--panel-bg);
}

.year-calendar .month-cell.empty {
    background: var(--month-empty);
}

.year-calendar .month-name {
    font-weight: 600;
}

.year-calendar .month-count {
    color: var(--accent-soft);
}

.webrings {
    background: var(--webrings);
    border: 1px solid var(--divider);
    border-radius: 14px;
}

.webrings a:hover {
    background: var(--webrings-hover);
    transform: translateY(-1px);
}

blockquote {
    background: var(--panel-bg);
    border-left: 4px solid var(--accent);
    padding: 0.75rem 1rem;
    margin: 1.25rem 0;
    border-radius: 8px;
    color: var(--description);
}

footer {
    border-top: 1px solid var(--divider);
    margin-top: 3rem;
    padding-top: 1rem;
    font-size: 0.75rem;
    color: var(--mute);
}

@media (max-width: 800px) {
    .content-sidebar-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        border-left: none;
        border-top: 1px solid var(--divider);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .column-links {
        text-align: left;
    }
}

.post-list-item .item-main-top-group {
    width: unset;
}