2020-12-26 03:01:32 +02:00
|
|
|
html {
|
|
|
|
background-color: var(--bg);
|
|
|
|
color: var(--fg);
|
|
|
|
}
|
|
|
|
|
2021-03-05 06:51:22 +02:00
|
|
|
#splash {
|
2020-12-26 03:01:32 +02:00
|
|
|
position: fixed;
|
2021-03-05 06:51:22 +02:00
|
|
|
z-index: 10000;
|
2020-12-26 03:01:32 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2021-03-05 16:23:00 +02:00
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
2020-12-26 03:01:32 +02:00
|
|
|
cursor: wait;
|
2021-03-05 06:51:22 +02:00
|
|
|
background-color: var(--bg);
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.5s ease;
|
2020-12-26 03:01:32 +02:00
|
|
|
}
|
|
|
|
|
2022-04-11 17:11:11 +03:00
|
|
|
#splashIcon {
|
2020-12-26 03:01:32 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
2021-03-05 06:51:22 +02:00
|
|
|
pointer-events: none;
|
2020-12-26 03:01:32 +02:00
|
|
|
}
|
2022-04-11 17:11:11 +03:00
|
|
|
|
|
|
|
#splashSpinner {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
|
|
|
display: inline-block;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
transform: translateY(70px);
|
2022-05-19 09:24:35 +03:00
|
|
|
color: var(--accent);
|
2022-04-11 17:11:11 +03:00
|
|
|
}
|
2022-05-19 09:24:35 +03:00
|
|
|
#splashSpinner > .spinner {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2022-04-11 17:11:11 +03:00
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
2022-05-19 09:24:35 +03:00
|
|
|
fill-rule: evenodd;
|
|
|
|
clip-rule: evenodd;
|
|
|
|
stroke-linecap: round;
|
|
|
|
stroke-linejoin: round;
|
|
|
|
stroke-miterlimit: 1.5;
|
2022-04-11 17:11:11 +03:00
|
|
|
}
|
2022-05-19 09:24:35 +03:00
|
|
|
#splashSpinner > .spinner.bg {
|
|
|
|
opacity: 0.275;
|
2022-04-11 17:11:11 +03:00
|
|
|
}
|
2022-05-19 09:24:35 +03:00
|
|
|
#splashSpinner > .spinner.fg {
|
2022-04-11 17:11:11 +03:00
|
|
|
animation: splashSpinner 0.5s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes splashSpinner {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|