MediaWiki:Common.css: Difference between revisions

From Twisted
No edit summary
No edit summary
Line 1: Line 1:
/* 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 {
body {
     background: #11191f !important; /* Deep stormy blue */
     background: #11191f !important; /* Deep stormy blue */

Revision as of 23:08, 13 August 2025

/* 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;
}