2025-02-21

This commit is contained in:
gcch 2025-02-21 23:23:22 +01:00
commit 5d5918f0d7
69 changed files with 1481 additions and 305 deletions

40
public/app-loading.css Normal file
View file

@ -0,0 +1,40 @@
@import url("fonts.css");
#app-loading {
position: fixed;
inset: 0;
text-align: center;
align-content: center;
z-index: 100;
background: salmon;
font-family: Banquise;
font-size: 2rem;
p {
width: 10ch;
margin: auto;
}
p::after {
content: "";
animation: 2s forwards infinite loading;
}
}
@keyframes loading {
from {
content: "";
}
25% {
content: ".";
}
50% {
content: "..";
}
75% {
content: "...";
}
to {
content: "";
}
}