This commit is contained in:
Gaspard Jankowiak 2026-06-03 22:40:12 +02:00
commit 45501c30f1
2 changed files with 111 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/* .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)
}
}