Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the Citizen skin */
/* All CSS here will be loaded for users of the Citizen skin */
:root.skin-citizen-light {
    --bgb-blue: #ff3f75;
    --interface-blue: #4a70aa;
    --dark-bg-blue: #182840;
    --white-100: rgb(255 255 255 / 100%);
    --white-80: rgb(255 255 255 / 80%);
    background: var(--dark-bg-blue);
    --color-primary: var(--interface-blue);
}


:root.skin-citizen-dark {
:root.skin-citizen-dark {

Revision as of 18:44, 3 April 2021

/* All CSS here will be loaded for users of the Citizen skin */

:root.skin-citizen-light {
    --bgb-blue: #ff3f75;
    --interface-blue: #4a70aa;
    --dark-bg-blue: #182840;

    --white-100: rgb(255 255 255 / 100%);
    --white-80: rgb(255 255 255 / 80%);

    background: var(--dark-bg-blue);
    --color-primary: var(--interface-blue);
}

:root.skin-citizen-dark {
    --bgb-blue: #1c3f75;
    --interface-blue: #4a70aa;
    --dark-bg-blue: #182840;

    --white-100: rgb(255 255 255 / 100%);
    --white-80: rgb(255 255 255 / 80%);

    background: var(--dark-bg-blue);
    --color-primary: var(--interface-blue);
}

.mw-header-siteinfo .mw-wiki-title .mw-logo-wordmark {
    color: var(--white-100);
}

body {
    background: var(--dark-bg-blue);
    color: var(--white-80);
}

.mw-body {
    background: var(--dark-bg-blue);
}

.mw-footer {
    background: var(--bgb-blue);
}

.last-modified-bar {
    background: var(--dark-bg-blue);
}

.last-modified-bar-content {
    background: var(--dark-bg-blue);
}