MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→CSS placed here will be applied to all skins: .blinking-header { font-size: 24px; font-weight: bold; color: #ff0000; animation: blink-animation 1s steps(5, start) infinite; text-align: center; margin-top: 20px; } @keyframes blink-animation { to { visibility: hidden; } }" |
(No difference)
|
Latest revision as of 11:47, 19 August 2024
/* CSS placed here will be applied to all skins */
.blinking-header {
font-size: 24px;
font-weight: bold;
color: #ff0000;
animation: blink-animation 1s steps(5, start) infinite;
text-align: center;
margin-top: 20px;
}
@keyframes blink-animation {
to {
visibility: hidden;
}
}