2025-02-21
This commit is contained in:
parent
98131c3b78
commit
5d5918f0d7
69 changed files with 1481 additions and 305 deletions
40
public/app-loading.css
Normal file
40
public/app-loading.css
Normal 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: "";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue