journal-media-vue/public/app-loading.css
gcch a510899ff1
All checks were successful
ci/woodpecker/push/publish_instable Pipeline was successful
2025-02-24
2025-02-24 22:54:59 +01:00

40 lines
505 B
CSS

@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 {
0% {
content: "";
}
25% {
content: ".";
}
50% {
content: "..";
}
75% {
content: "...";
}
100% {
content: "";
}
}