Jump to content

Template:In the news/styles.css

From Rolling Lounge Wiki
Revision as of 19:04, 15 October 2025 by AZMindroma (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* In the news header styling */
.news-header {
    border-width: 1px;
    border-style: solid;
    margin-top: 3px;
    margin-bottom: 0.5em;
    padding: 0.2em 0.4em;
    font-size: 120%;
    font-weight: bold;
    font-family: inherit;
    background: #cedff2;
    border-color: #a3b0bf;
}

/* Dark mode support for In the news header */
html.skin-theme-clientpref-night .news-header {
    background-color: #082849;
    border-color: #1a3d5c;
    color: #e8e6e3;
}

/* OS dark mode support for In the news header */
@media screen and (prefers-color-scheme: dark) {
    html.skin-theme-clientpref-os .news-header {
        background-color: #082849;
        border-color: #1a3d5c;
        color: #e8e6e3;
    }
}