MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
m (Forgot to remove stuff for testing) |
(Change which font file EGA8 points to) |
||
| Line 3: | Line 3: | ||
@font-face { | @font-face { | ||
font-family: "EGA8"; | font-family: "EGA8"; | ||
src: url("/w/images/ | src: url("/w/images/a/ae/Web437_IBM_EGA_8x14.woff") format("woff"); | ||
} | } | ||
Revision as of 04:53, 11 January 2021
/* CSS placed here will be applied to all skins */
@font-face {
font-family: "EGA8";
src: url("/w/images/a/ae/Web437_IBM_EGA_8x14.woff") format("woff");
}
.blinking {
animation: 2.5s linear infinite blinking_text;
}
@keyframes blinking_text {
35% {
opacity: 100%;
}
45% {
opacity: 0%;
}
55% {
opacity: 0%;
}
65% {
opacity: 100%;
}
}