MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
Created page with "→CSS placed here will be applied to all skins: @keyframes breathe { 0% { opacity: 0.4; } 100% { opacity: 0.7; } }" |
No edit summary |
||
Line 1: | Line 1: | ||
@keyframes breathe { | @keyframes breathe { | ||
0% { opacity: 0.4; } | |||
100% { opacity: 0.7; } | |||
} | |||
@-webkit-keyframes breathe { | |||
0% { opacity: 0.4; } | |||
100% { opacity: 0.7; } | |||
} | |||
@-moz-keyframes breathe { | |||
0% { opacity: 0.4; } | 0% { opacity: 0.4; } | ||
100% { opacity: 0.7; } | 100% { opacity: 0.7; } | ||
} | } |