MediaWiki:Darkvector.css: Difference between revisions

MediaWiki interface page
No edit summary
(test)
Line 20: Line 20:


a .new {
a .new {
color: #99220f;
color: #de280b;
}
}

Revision as of 02:34, 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: #de280b;
}