Difference between revisions of "User:Certified nqh/common.css"

Explain xkcd: It's 'cause you're dumb.
Jump to: navigation, search
Line 2: Line 2:
 
/* Fair warning, this one probably has a much lower chance of working. */
 
/* Fair warning, this one probably has a much lower chance of working. */
  
:not(a, .mw-wiki-logo) {
 
background-color: black !important;
 
color: white !important;
 
}
 
  
span.mw-plusminus-pos {
+
/* Sets everything to black background. */
color: #5F5 !important;
+
:not(a, .mw-wiki-logo) {background-color: black !important; color: white !important;}
}
 
span.mw-plusminus-neg {
 
color: #F55 !important;
 
}
 
strong.mw-plusminus-pos {
 
color: #0F0 !important;
 
font-size: 1.2em;
 
}
 
span.mw-plusminus-pos {
 
color: #0F0 !important;
 
font-size: 1.2em;
 
}
 
  
.mw-wiki-logo {
+
/* Numbers in history view. */
background-color: white !important;
+
span.mw-plusminus-pos {color: #5F5 !important;}
filter: invert(100%);
+
span.mw-plusminus-neg {color: #F55 !important;}
}
+
strong.mw-plusminus-pos {color: #0F0 !important; font-size: 1.2em;}
 +
strong.mw-plusminus-pos {color: #0F0 !important; font-size: 1.2em;}
  
a[href$="redlink=1"] {
+
/* Links. */
color: #F00 !important;
+
a[href$="redlink=1"] {color: #F00 !important; text-decoration: line-through !important;}
text-decoration: line-through !important;
+
a:not([href$="redlink=1"]) {color: #88F !important;}
}
+
a:visited:not([href$="redlink=1"]) {color: #AAF !important;}
 +
a:hover:not([href$="redlink=1"]) {color: #AAF !important; text-decoration: underline !important; font-weight: bold !important;}
 +
a:active:not([href$="redlink=1"]) {color: #FFF !important; text-decoration: underline !important; font-weight: bold !important;}
  
a:not([href$="redlink=1"]) {
+
/* Misc. */
color: #88F !important;
+
.mw-wiki-logo {background-color: white !important; filter: invert(100%);}
}
 
 
 
a:visited:not([href$="redlink=1"]) {
 
color: #AAF !important;
 
}
 
 
 
a:hover:not([href$="redlink=1"]) {
 
color: #AAF !important;
 
text-decoration: underline !important;
 
font-weight: bold !important;
 
}
 
 
 
a:active:not([href$="redlink=1"]) {
 
color: #FFF !important;
 
text-decoration: underline !important;
 
font-weight: bold !important;
 
}
 

Revision as of 02:39, 23 October 2023

/* NQH's coolly total and radically amazing ~extended~ dark mode */
/* Fair warning, this one probably has a much lower chance of working. */


/* Sets everything to black background. */
:not(a, .mw-wiki-logo) {background-color: black !important; color: white !important;}

/* Numbers in history view. */
span.mw-plusminus-pos {color: #5F5 !important;}
span.mw-plusminus-neg {color: #F55 !important;}
strong.mw-plusminus-pos {color: #0F0 !important; font-size: 1.2em;}
strong.mw-plusminus-pos {color: #0F0 !important; font-size: 1.2em;}

/* Links. */
a[href$="redlink=1"] {color: #F00 !important; text-decoration: line-through !important;}
a:not([href$="redlink=1"]) {color: #88F !important;}
a:visited:not([href$="redlink=1"]) {color: #AAF !important;}
a:hover:not([href$="redlink=1"]) {color: #AAF !important; text-decoration: underline !important; font-weight: bold !important;}
a:active:not([href$="redlink=1"]) {color: #FFF !important; text-decoration: underline !important; font-weight: bold !important;}

/* Misc. */
.mw-wiki-logo {background-color: white !important; filter: invert(100%);}