(Testing new redlink color) |
(testing new clickedlink color) |
||
Line 21: | Line 21: | ||
body a.new { | body a.new { | ||
color: #e31f00 !important; | color: #e31f00 !important; | ||
} | |||
body a:visited { | |||
color: #ba8002 !important; | |||
} | } |
Revision as of 02:42, 28 June 2021
/* CSS placed here will affect users of the DarkVector skin */
@keyframes spin {
from {
transform:rotate(0deg);
filter:hue-rotate(0deg);
}
to {
transform:rotate(360deg);
filter:hue-rotate(360deg);
}
}
.mw-wiki-logo {
animation-name: spin;
animation-duration: 4000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
body a.new {
color: #e31f00 !important;
}
body a:visited {
color: #ba8002 !important;
}