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