blob: 4d69b30488a4d785c8ac45b879a49274177610ea (
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
|
body {
padding: 0;
margin: 0;
}
#loading-overlay {
width: 100%;
height: 100%;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,.5);
}
#spinner {
width: 50px;
height: 50px;
margin-top: -40px;
margin-left: -40px;
position: absolute;
top: 50%;
left: 50%;
border-width: 120px;
border-radius: 50%;
border: 16px solid #33abda;
border-top: 16px solid #3c3c3c;
-webkit-animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
canvas {
display: block;
}
.hidden {
display: none;
}
|