Difference between revisions of "Template:User OS:Dos/style.css"
Jump to navigation
Jump to search
imported>Great Brightstar m |
(No difference)
|
Latest revision as of 15:45, 14 June 2019
/* {{pp-template}} */
blink,
.blink {
animation: 2s linear infinite blink;
}
@keyframes blink {
0% {
visibility: visible;
}
50% {
visibility: hidden;
}
100% {
visibility: hidden;
}
}
/*
Reference:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blink#CSS_Polyfill
*/