MediaWiki:Common.css: Difference between revisions

From AirlineSim Wiki
Jump to navigation Jump to search
Created page with "→‎CSS placed here will be applied to all skins: @media (prefers-color-scheme: dark) { body { background-color: #121212; color: #e0e0e0; } a { color: #64b5f6; } a:visited { color: #bb86fc; } .mw-body { background-color: #1e1e1e; } →‎Add more custom styles as needed: }"
(No difference)

Revision as of 01:39, 17 November 2024

/* CSS placed here will be applied to all skins */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    a {
        color: #64b5f6;
    }
    a:visited {
        color: #bb86fc;
    }
    .mw-body {
        background-color: #1e1e1e;
    }
    /* Add more custom styles as needed */
}