MediaWiki:Common.css

From Sunfish City Wiki
Revision as of 19:41, 9 February 2026 by Grankor (talk | contribs) (Created page with "→‎Dark Mode Theme for Sunfish City Wiki: →‎Page background: html, body { background-color: #121212 !important; } →‎Content area: .mw-body, .mw-page-container { background-color: #1e1e1e !important; color: #e0e0e0 !important; } →‎Headers: h1, h2, h3, h4, h5, h6, .mw-headline, .mw-page-title-main { color: #ffffff !important; border-bottom-color: #444 !important; } →‎Links: a, a:visited { color: #6db3f2 !important; } a:hover {...")
(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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Dark Mode Theme for Sunfish City Wiki */

/* Page background */
html, body {
    background-color: #121212 !important;
}

/* Content area */
.mw-body, .mw-page-container {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
}

/* Headers */
h1, h2, h3, h4, h5, h6,
.mw-headline,
.mw-page-title-main {
    color: #ffffff !important;
    border-bottom-color: #444 !important;
}

/* Links */
a, a:visited {
    color: #6db3f2 !important;
}

a:hover {
    color: #90caf9 !important;
}

/* Sidebar */
.vector-menu-portal, 
.mw-sidebar,
.vector-menu-content {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
}

/* Navigation */
.vector-menu-tabs, 
.vector-menu-tabs a {
    background-color: #2d2d2d !important;
    color: #e0e0e0 !important;
}

/* Search box */
.vector-search-box-input {
    background-color: #2d2d2d !important;
    color: #e0e0e0 !important;
    border-color: #444 !important;
}

/* Tables */
table, th, td {
    border-color: #444 !important;
}

th {
    background-color: #2d2d2d !important;
    color: #e0e0e0 !important;
}

/* Infoboxes and content boxes */
.infobox, .wikitable {
    background-color: #2d2d2d !important;
    color: #e0e0e0 !important;
}

/* Footer */
#footer {
    background-color: #1e1e1e !important;
    color: #888 !important;
}

/* Category links */
.catlinks {
    background-color: #2d2d2d !important;
    border-color: #444 !important;
}

/* Edit page textarea */
.mw-editfont-monospace,
textarea {
    background-color: #2d2d2d !important;
    color: #e0e0e0 !important;
}