epas-ripper/style.css
Gaspard Jankowiak 45501c30f1 wip
2026-06-03 22:40:12 +02:00

16 lines
369 B
CSS

/* .ripper-link { text-decoration: underline } */
/* from https://stackoverflow.com/questions/67605723/triple-dot-css-animation-on-a-loading-screen */
.loading {
font-weight: bold;
display: inline-block;
font-family: monospace;
clip-path: inset(0 3ch 0 0);
animation: l 1s steps(4, jump-none) infinite;
}
@keyframes l {
to {
clip-path: inset(0)
}
}