vjfw/web/css/tripledot.css
2024-05-25 17:44:34 +03:00

13 lines
252 B
CSS

@keyframes dot-blink {
0% { content: ''; }
33% { content: '.'; }
66% { content: '..'; }
100% { content: '...'; }
}
.loading::after {
content: '';
display: inline-block;
animation: dot-blink 0.80s infinite steps(1, end);
}