Jump to content

MediaWiki:Common.css

From Dreamon Studios Wiki
Revision as of 22:29, 27 December 2025 by Anders (talk | contribs) (Replaced content with "Base background + text: body { background-color: #000; color: #fff; } Main content area: .mw-body, .mw-parser-output { background-color: #000; color: #fff; } Headings: h1, h2, h3, h4, h5, h6 { color: #fff; } Links: a { color: #6aa9ff; } a:visited { color: #b38cff; } Tables: table { background-color: #111; color: #fff; } Infoboxes / wikitables: .infobox, .wikitable { background-color: #111;...")

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.
/* Base background + text */
body {
    background-color: #000;
    color: #fff;
}

/* Main content area */
.mw-body,
.mw-parser-output {
    background-color: #000;
    color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

/* Links */
a {
    color: #6aa9ff;
}
a:visited {
    color: #b38cff;
}

/* Tables */
table {
    background-color: #111;
    color: #fff;
}

/* Infoboxes / wikitables */
.infobox,
.wikitable {
    background-color: #111;
    border-color: #333;
}

/* Table headers */
.infobox th,
.wikitable th {
    background-color: #222;
    color: #fff;
}

/* Sidebar (Vector) */
#mw-panel {
    background-color: #000;
}

/* Footer */
#footer {
    background-color: #000;
    color: #aaa;
}