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

MediaWiki interface page
Revision as of 18:56, 3 April 2021 by Admin (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* All CSS here will be loaded for users of the Citizen skin */

:root.skin-citizen-light {
    --bgb-blue:         rgb(27 62 116 / 100%);
    --interface-blue:   rgb(74 112 170 / 100%);
    --bg-color:         rgb(255 255 255 / 100%);

    --text-header:      rgb(0 0 0 / 100%);
    --text-content:     rgb(0 0 0 / 80%);

    //background: var(--bgb-blue);
    background-image: linear-gradient(red, yellow);
    --color-primary: var(--interface-blue);
}

:root.skin-citizen-dark {
    --bgb-blue:         rgb(27 62 116 / 100%);
    --interface-blue:   rgb(74 112 170 / 100%);
    --bg-color:         rgb(24 40 64 / 100%);

    --text-header:      rgb(255 255 255 / 100%);
    --text-content:     rgb(255 255 255 / 80%);

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

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

body {
    background: var(--bg-color);
    color: var(--text-content);
}

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

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

/*
.last-modified-bar {
    background: var(--bg-color);
}

.last-modified-bar-content {
    background: var(--bg-color);
}
*/