blob: cd86b654c32d4c96fe35ecc42cee3da0d7be237c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
@charset "utf-8";
/**
* Boot screen style
*/
html {
font-family: sans-serif;
}
body > noscript {
position: fixed;
z-index: 2;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
background: #fff;
}
body > noscript > p {
display: block;
margin: 32px;
font-size: 2em;
color: #555;
}
#ini {
position: fixed;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--bg);
cursor: wait;
}
#ini > svg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 64px;
height: 64px;
animation: ini 0.6s infinite linear;
}
@keyframes ini {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
|