No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
animation-iteration-count: infinite; | animation-iteration-count: infinite; | ||
animation-timing-function: linear; | animation-timing-function: linear; | ||
} | |||
a .new { | |||
color: #99220f; | |||
} | } |
Revision as of 02:31, 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;
}
a .new {
color: #99220f;
}