Difference between revisions of "User:Certified nqh/common.css"
| Line 3: | Line 3: | ||
/* Keyframes */ | /* Keyframes */ | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
@keyframes punch { | @keyframes punch { | ||
| Line 45: | Line 26: | ||
/* The Actual style in the Style Sheet */ | /* The Actual style in the Style Sheet */ | ||
| − | + | :not(body, a) { | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | :not( | ||
background-color: black !important; | background-color: black !important; | ||
color: white !important; | color: white !important; | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
} | } | ||
| Line 78: | Line 38: | ||
a[href$="redlink=1"] { | a[href$="redlink=1"] { | ||
text-decoration: line-through !important; | text-decoration: line-through !important; | ||
| + | color: #F00 !important; | ||
| + | } | ||
| + | |||
| + | a { | ||
| + | |||
} | } | ||
Revision as of 14:45, 20 October 2023
/* This style sheet works with all skins. */
/* Made by NQH */
/* Keyframes */
@keyframes punch {
from{font-size: 2em;}
to {font-size: 1em;}
}
@keyframes sizedouble {
from{font-size: 1em;}
to {font-size: 2em;}
}
@keyframes sizehalve {
from{font-size: 1em;}
to {font-size: 0.5em;}
}
@keyframes sizezero {
from{font-size: 1em;}
to {font-size: 0em;}
}
/* The Actual style in the Style Sheet */
:not(body, a) {
background-color: black !important;
color: white !important;
}
.mw-wiki-logo {
background-color: white !important;
filter: invert(100%);
}
a[href$="redlink=1"] {
text-decoration: line-through !important;
color: #F00 !important;
}
a {
}
a:not([href$="redlink=1"]) {
color: #99F !important;
}
a:hover:not([href$="redlink=1"]) {
animation: rainbowtext 0.25s linear infinite, punch 0.5s;
font-weight: bold;
}
a:active:not([href$="redlink=1"]) {
animation: rainbow 0.25s linear infinite;
color: black !important;
}
