Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
| Line 5: | Line 5: | ||
.mw-wiki-logo { | .mw-wiki-logo { | ||
background-size: contain; | background-size: contain; | ||
| + | } | ||
| + | .mw-wiki-logo:hover { | ||
animation: beat 0.666s ease-out infinite; | animation: beat 0.666s ease-out infinite; | ||
} | } | ||
Revision as of 16:22, 19 September 2020
/* CSS placed here will be applied to all skins #ca0312 */
#p-logo { background: #5d0312 }
.mw-wiki-logo {
background-size: contain;
}
.mw-wiki-logo:hover {
animation: beat 0.666s ease-out infinite;
}
@keyframes beat {
from {
transform: scale(1.05, 1.05)
}
to {
transform: scale(1, 1)
}
}