MediaWiki:Timeless.css: Difference between revisions
From Ghost Theory Wiki
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* === GLOBAL BACKGROUND === */ | ||
html, body { | |||
background: #000 !important; | |||
color: #fff !important; | |||
} | } | ||
/* === MAIN CONTENT AREA === */ | |||
#mw-content, | |||
#mw-content-container, | |||
#mw-content-block, | |||
#mw-content-text { | |||
background: #000 !important; | |||
color: #fff !important; | |||
} | } | ||
/* | /* === SIDEBAR + NAVIGATION === */ | ||
#mw-navigation, | |||
#mw-panel, | |||
#mw-panel .mw-portlet, | |||
#mw-panel .mw-portlet-body { | |||
background: #000 !important; | |||
color: #fff !important; | |||
} | } | ||
/* === RIGHT SIDEBAR (page tools, more, etc.) === */ | |||
#mw-related-navigation, | |||
#mw-data-navigation, | |||
#mw-related-navigation .mw-portlet, | |||
#mw-data-navigation .mw-portlet { | |||
background: #000 !important; | |||
color: #fff !important; | |||
} | } | ||
/* === HEADERS, TABS, TOP BAR === */ | |||
#mw-header, | |||
#mw-header-container, | |||
#mw-header h1, | |||
#mw-header h2, | |||
#mw-header .mw-portlet { | |||
background: #000 !important; | |||
color: #fff !important; | |||
} | } | ||
/* | /* === SEARCH BAR === */ | ||
# | #searchInput, | ||
# | #searchInput:focus { | ||
background: #111 !important; | |||
color: #fff !important; | |||
border: 1px solid #444 !important; | |||
} | } | ||
/* === LINKS === */ | |||
a { | |||
color: #ff0 !important; /* yellow links */ | |||
} | } | ||
a:visited { | |||
color: #ccc !important; /* silver visited links */ | |||
} | } | ||
/* | /* === GRAY CONTENT BOXES === */ | ||
.mw-parser-output .infobox, | |||
.mw-parser-output .toc, | |||
.mw-parser-output table, | |||
.mw-parser-output .thumb, | |||
.mw-parser-output .thumbinner, | |||
.mw-parser-output .navbox, | |||
.mw-parser-output .metadata { | |||
background: #111 !important; | |||
color: #fff !important; | |||
border-color: #333 !important; | |||
} | } | ||
#mw-content-container | /* === FIX WHITE GAPS BETWEEN ELEMENTS === */ | ||
#mw-content-container, | |||
#mw-content-block, | |||
#mw-content-text, | |||
#mw-content { | #mw-content { | ||
background-color: #000 !important; | |||
} | } | ||
. | /* === REMOVE WHITE BACKGROUND FROM EDITOR === */ | ||
.wikiEditor-ui, | |||
.wikiEditor-ui textarea { | |||
background: #000 !important; | |||
color: #fff !important; | |||
} | } | ||
/* === FORCE DARK BACKGROUND ON ALL GENERIC DIVS === */ | |||
div { | |||
background-color: transparent !important; | |||
/* | |||
} | } | ||
Revision as of 20:50, 15 December 2025
/* === GLOBAL BACKGROUND === */
html, body {
background: #000 !important;
color: #fff !important;
}
/* === MAIN CONTENT AREA === */
#mw-content,
#mw-content-container,
#mw-content-block,
#mw-content-text {
background: #000 !important;
color: #fff !important;
}
/* === SIDEBAR + NAVIGATION === */
#mw-navigation,
#mw-panel,
#mw-panel .mw-portlet,
#mw-panel .mw-portlet-body {
background: #000 !important;
color: #fff !important;
}
/* === RIGHT SIDEBAR (page tools, more, etc.) === */
#mw-related-navigation,
#mw-data-navigation,
#mw-related-navigation .mw-portlet,
#mw-data-navigation .mw-portlet {
background: #000 !important;
color: #fff !important;
}
/* === HEADERS, TABS, TOP BAR === */
#mw-header,
#mw-header-container,
#mw-header h1,
#mw-header h2,
#mw-header .mw-portlet {
background: #000 !important;
color: #fff !important;
}
/* === SEARCH BAR === */
#searchInput,
#searchInput:focus {
background: #111 !important;
color: #fff !important;
border: 1px solid #444 !important;
}
/* === LINKS === */
a {
color: #ff0 !important; /* yellow links */
}
a:visited {
color: #ccc !important; /* silver visited links */
}
/* === GRAY CONTENT BOXES === */
.mw-parser-output .infobox,
.mw-parser-output .toc,
.mw-parser-output table,
.mw-parser-output .thumb,
.mw-parser-output .thumbinner,
.mw-parser-output .navbox,
.mw-parser-output .metadata {
background: #111 !important;
color: #fff !important;
border-color: #333 !important;
}
/* === FIX WHITE GAPS BETWEEN ELEMENTS === */
#mw-content-container,
#mw-content-block,
#mw-content-text,
#mw-content {
background-color: #000 !important;
}
/* === REMOVE WHITE BACKGROUND FROM EDITOR === */
.wikiEditor-ui,
.wikiEditor-ui textarea {
background: #000 !important;
color: #fff !important;
}
/* === FORCE DARK BACKGROUND ON ALL GENERIC DIVS === */
div {
background-color: transparent !important;
}
