Difference between revisions of "User:Firestar233/vector.css"
Firestar233 (talk | contribs) m (inverting image colors) |
Firestar233 (talk | contribs) m (finally making the main page dark) |
||
| Line 172: | Line 172: | ||
.disctemp { | .disctemp { | ||
background-color:var(--medium-background)!important; | background-color:var(--medium-background)!important; | ||
| + | } | ||
| + | |||
| + | /* main page shenanigans */ | ||
| + | .page-Main_Page #bodyContent .mw-parser-output > div:first-of-type { | ||
| + | background-color:var(--dark-background)!important | ||
} | } | ||
Latest revision as of 00:36, 26 June 2026
/* dark mode */
:root {
--link-base:#2070ff/*#f9ba52 #f4ff7f*/;
--link-visited:#8030ff/*#6439ff*/;
--dark-background:#1e1e1e;
--medium-background:#202020;
--light-background:#2e2e2e;
--lighter-background:#434343;
--text-color:#d7d7d7;
}
#mw-page-base {
background-image:none
}
#mw-head-base {
background-image:none
}
#mw-panel {
background-color:var(--dark-background);
padding-left:0;
}
.mw-body {
background-color:var(--light-background);
color:var(--text-color);
}
/*.mw-body-content {
background-color:var(--light-background);
color:var(--text-color);
}*/
.mw-wiki-logo {
filter:invert(1)
}
.mediawiki {
background-color:var(--dark-background);
color:var(--text-color);
}
.noprint {
background-color:var(--dark-background)
}
a {
color:var(--link-base)/*#f9ba52 #0645ad*/
}
a:visited {
color:var(--link-visited)/*#f4ff7f #0b0080*/
}
div#mw-panel div.portal div.body ul li a {
color:var(--link-base)
}
div#mw-panel div.portal div.body ul li a:visited {
color:var(--link-visited)
}
div#localNotice {
color:#222222
}
.mw-code {
background-color:var(--medium-background);
color:var(--text-color);
border-color:#000000
}
h1, h2, h3, h4, h5, h6 {
color:#ffffff;
}
div.vectorTabs {
background-image:none;
background-color:#303030;
color:var(--text-color);
}
div.vectorTabs h3 {
display:inherit;
}
div.vectorTabs li {
background-image:none;
background-color:#303030;
color:inherit;
}
div.vectorTabs ul li {
background-image:none;
background-color:#303030;
color:inherit;
}
div.vectorTabs li a {
color:var(--link-base);
}
div.vectorTabs li.selected {
background-image:none;
}
div.vectorTabs li.selected a, div.vectorTabs li.selected a:visited {
color:inherit;
}
h3#p-personal-label {
display:inherit;
font-size:small;
}
li#pt-logout, li#pt-mycontris, li#pt-mytalk, li#pt-preferences, li#pt-userpage, li#pt-watchlist {
margin-top:-9.2px;
}
div.vectorTabs ul {
border-left-style:solid;
border-left-width:0.3167px;
}
#mw-head-base {
height:6.45em;
}
#p-search {
margin-top:1.45em;
}
#p-cactions {
margin-top:1.45em
}
.editOptions {
background-color:var(--lighter-background);
}
#wpTextbox1 {
background-color:var(--medium-background);
color:var(--text-color);
}
.oo-ui-textInputWidget input,
.oo-ui-textInputWidget textarea {
background-color:var(--dark-background);
color:var(--text-color);
}
div#footer ul li {
color:var(--text-color);
}
#toc, .toc {
background-color:var(--medium-background);
}
.tocnumber, .toctitle {
color:var(--text-color)
}
.catlinks {
background-color:var(--medium-background)
}
.notice_tpl {
color:#000000
}
table.wikitable {
background-color:var(--light-background);
color:var(--text-color);
}
tr.header, table.wikitable > * > tr > th {
background-color:var(--medium-background)
}
table.wikitable > * > tr > td {
background-color:var(--light-background)
}
/* comic view */
.comic-content {
background-color:#323232!important;
border-color:#5d564e!important;
}
.comic-content tbody {
color:var(--text-color);
}
.comic-content img {
filter:invert(1);
}
/* discussion */
.disctemp {
background-color:var(--medium-background)!important;
}
/* main page shenanigans */
.page-Main_Page #bodyContent .mw-parser-output > div:first-of-type {
background-color:var(--dark-background)!important
}
