Difference between revisions of "User:Certified nqh/epicdarkmode.css"
(Created page with "→NQH's totally cool and amazingly radical dark mode: :not(a, .mw-wiki-logo) { background-color: black !important; color: white !important; } .mw-wiki-logo { background...") |
|||
| Line 10: | Line 10: | ||
} | } | ||
| − | a { | + | a[href$="redlink=1"] { |
| + | color: #F00 !important; | ||
| + | text-decoration: line-through !important; | ||
| + | } | ||
| + | |||
| + | a:not([href$="redlink=1"]) { | ||
color: #88F !important; | color: #88F !important; | ||
} | } | ||
| − | a:visited { | + | a:visited:not([href$="redlink=1"]) { |
color: #AAF !important; | color: #AAF !important; | ||
} | } | ||
| − | a:hover { | + | a:hover:not([href$="redlink=1"]) { |
color: #AAF !important; | color: #AAF !important; | ||
text-decoration: underline !important; | text-decoration: underline !important; | ||
| Line 24: | Line 29: | ||
} | } | ||
| − | a:active { | + | a:active:not([href$="redlink=1"]) { |
color: #FFF !important; | color: #FFF !important; | ||
text-decoration: underline !important; | text-decoration: underline !important; | ||
font-weight: bold !important; | font-weight: bold !important; | ||
} | } | ||
Revision as of 23:34, 19 October 2023
/* NQH's totally cool and amazingly radical dark mode */
:not(a, .mw-wiki-logo) {
background-color: black !important;
color: white !important;
}
.mw-wiki-logo {
background-color: white !important;
filter: invert(100%);
}
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;
}
