Jump to content

MediaWiki:Common.css

From jeankn.app WIKI
Revision as of 17:25, 19 October 2025 by Jeanknapp (talk | contribs) (Created page with "Change background and link colors globally: body { background-color: #f5f6fa; color: #1b1b1b; } a, a:visited { color: #0078d7; } a:hover { color: #004d99; } Sidebar color: #mw-panel { background: #002b36; } Header background: #mw-head { background: #003c4f; }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.
/* Change background and link colors globally */
body {
    background-color: #f5f6fa;
    color: #1b1b1b;
}

a, a:visited {
    color: #0078d7;
}

a:hover {
    color: #004d99;
}

/* Sidebar color */
#mw-panel {
    background: #002b36;
}

/* Header background */
#mw-head {
    background: #003c4f;
}