MediaWiki:Common.css

From Twisted
Revision as of 23:08, 13 August 2025 by Cactii (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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Make navbar and footer dark like the rest */
.navbar, .footer, #mw-head, #mw-panel, .chameleon-navbar, .chameleon-footer, .chameleon-header {
    background: #11191f !important;
    color: #c4f000 !important;
    border: none !important;
}

/* Fix the Tools dropdown if it’s still light */
.chameleon-navbar .dropdown-menu, .navbar .dropdown-menu {
    background: #11191f !important;
    color: #c4f000 !important;
}

/* Make sure links in nav/footer still pop */
.navbar a, .footer a, .chameleon-navbar a, .chameleon-footer a {
    color: #00ffe7 !important;
}

.navbar a:hover, .footer a:hover, .chameleon-navbar a:hover, .chameleon-footer a:hover {
    color: #fff !important;
}

/* Tweak the search box if needed */
input[type="search"], .chameleon-search input, .form-control {
    background: #171f26 !important;
    color: #c4f000 !important;
    border: 1px solid #00ffe7 !important;
}

body {
    background: #11191f !important; /* Deep stormy blue */
    color: #c4f000 !important; /* Radar green for text */
    font-family: 'Share Tech Mono', 'Consolas', 'monospace', Arial, sans-serif;
}

a, a:visited {
    color: #00ffe7 !important; /* Cyan link like radar UI */
}

.navbar, .sidebar, #mw-panel, .mw-portlet, .footer {
    background: #18232a !important;
    border: none !important;
    color: #c4f000 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #c4f000 !important;
    font-family: 'Share Tech Mono', 'Consolas', 'monospace', Arial, sans-serif;
}

pre, code {
    background: #252e37 !important;
    color: #00ffe7 !important;
    font-family: 'Share Tech Mono', 'Consolas', 'monospace';
}

table, th, td {
    border-color: #00ffe7 !important;
    background: #171f26 !important;
    color: #c4f000 !important;
}

::-webkit-scrollbar {
    background: #1a242c;
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background: #00ffe7;
}