MediaWiki:Timeless.css

From Tuyin Archives
Revision as of 21:24, 6 July 2025 by Morrisj18 (talk | contribs) (Created page with "All CSS here will be loaded for users of the Timeless skin: ===== Global background and text =====: body { background-color: #1a1a1a; color: #e2decf; font-family: "Garamond", "Georgia", serif; } ===== Page content area =====: #content, .mw-body { background-color: #2b2620; border: 1px solid #554433; padding: 20px; box-shadow: 0 0 10px #000; } ===== Headings =====: h1, h2, h3 { color: #ffcc66; text-shadow: 0 0 3px #aa8844; } /* ===...")
(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.
/* All CSS here will be loaded for users of the Timeless skin */
/* ===== Global background and text ===== */
body {
  background-color: #1a1a1a;
  color: #e2decf;
  font-family: "Garamond", "Georgia", serif;
}

/* ===== Page content area ===== */
#content, .mw-body {
  background-color: #2b2620;
  border: 1px solid #554433;
  padding: 20px;
  box-shadow: 0 0 10px #000;
}

/* ===== Headings ===== */
h1, h2, h3 {
  color: #ffcc66;
  text-shadow: 0 0 3px #aa8844;
}

/* ===== Links ===== */
a {
  color: #88ccee;
}
a:visited {
  color: #c088ff;
}

/* ===== Sidebar ===== */
#mw-panel {
  background-color: #181818;
  border-right: 1px solid #444;
}

/* ===== Tables and infoboxes ===== */
table.wikitable, .infobox {
  background-color: #333029;
  border: 1px solid #665544;
}