16 lines
369 B
CSS
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)
|
|
}
|
|
}
|