journal-media-vue/public/app-loading.css
gcch 11fa3d1558
Some checks failed
ci/woodpecker/push/publish_instable Pipeline failed
2025-03-03
2025-03-03 17:28:33 +01:00

44 lines
509 B
CSS

@import url("fonts.css");
#app-loading {
position: fixed;
z-index: 100;
inset: 0;
align-content: center;
font-family: Banquise;
font-size: 2rem;
text-align: center;
background: salmon;
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: "";
}
}