127 lines
1.8 KiB
CSS
127 lines
1.8 KiB
CSS
html {
|
|
background-color: var(--bg);
|
|
color: var(--fg);
|
|
}
|
|
|
|
#splash {
|
|
position: fixed;
|
|
z-index: 10000;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
cursor: wait;
|
|
background-color: var(--bg);
|
|
opacity: 1;
|
|
transition: opacity 0.2s ease;
|
|
}
|
|
|
|
#splashIcon {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
margin: auto;
|
|
width: 64px;
|
|
height: 64px;
|
|
pointer-events: none;
|
|
animation-duration: 1s;
|
|
animation-iteration-count: infinite;
|
|
animation-name: tada;
|
|
}
|
|
|
|
#splashSpinner {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
margin: auto;
|
|
display: inline-block;
|
|
width: 28px;
|
|
height: 28px;
|
|
transform: translateY(110px);
|
|
display: none;
|
|
color: var(--accent);
|
|
}
|
|
#splashSpinner > .spinner {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 28px;
|
|
height: 28px;
|
|
fill-rule: evenodd;
|
|
clip-rule: evenodd;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
stroke-miterlimit: 1.5;
|
|
}
|
|
#splashSpinner > .spinner.bg {
|
|
opacity: 0.275;
|
|
}
|
|
#splashSpinner > .spinner.fg {
|
|
animation: splashSpinner 0.5s linear infinite;
|
|
}
|
|
|
|
@keyframes splashSpinner {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes tada {
|
|
0% {
|
|
transform: scale3d(1, 1, 1);
|
|
}
|
|
|
|
10%,
|
|
20% {
|
|
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
|
|
}
|
|
|
|
30%,
|
|
50%,
|
|
70%,
|
|
90% {
|
|
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
|
|
}
|
|
|
|
40%,
|
|
60%,
|
|
80% {
|
|
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
|
|
}
|
|
|
|
100% {
|
|
transform: scale3d(1, 1, 1);
|
|
}
|
|
}
|
|
|
|
@media(prefers-reduced-motion) {
|
|
#splashSpinner {
|
|
display: block;
|
|
}
|
|
|
|
#splashIcon {
|
|
animation: none;
|
|
}
|
|
}
|
|
|
|
#splashText {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
margin: auto;
|
|
display: inline-block;
|
|
width: 70%;
|
|
height: 0;
|
|
text-align: center;
|
|
padding-top: 100px;
|
|
font-family: sans-serif;
|
|
}
|