Template:User OS:Dos/style.css: Difference between revisions
|  (Create template page. Related to the Statustop template.) | 
| (No difference) | 
Latest revision as of 16:01, 30 October 2025
/* {{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
*/
