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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85.code {
font-family: 'Courier New', Courier, monospace;
padding: 1rem;
background-color: var(--gray-4);
;
}
.main {
margin:0 auto;
text-align: center;
.equalify-logo {
max-width: 300px;
text-align: center;
}
}
.loading-spinner-scrim {
background-color: #196121;
color: white;
text-align: center;
display: flex;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 100;
align-content: center;
justify-content: center;
align-items: center;
flex-direction: column;
.equalify-logo {
max-width: 600px;
}
.loading-text {
font-style: italic;
}
.loading-text:first-letter {
text-transform: uppercase;
}
}
.loader {
margin: 0 auto;
height: 30px;
aspect-ratio: 2.5;
--_g: no-repeat radial-gradient(farthest-side, #fff 90%, rgba(255, 255, 255, 0));
background: var(--_g), var(--_g), var(--_g), var(--_g);
background-size: 20% 50%;
animation: l43 .8s infinite linear;
}
@keyframes l43 {
0% {
background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 50%
}
16.67% {
background-position: calc(0*100%/3) 0, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 50%
}
33.33% {
background-position: calc(0*100%/3) 100%, calc(1*100%/3) 0, calc(2*100%/3) 50%, calc(3*100%/3) 50%
}
50% {
background-position: calc(0*100%/3) 50%, calc(1*100%/3) 100%, calc(2*100%/3) 0, calc(3*100%/3) 50%
}
66.67% {
background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 100%, calc(3*100%/3) 0
}
83.33% {
background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 100%
}
100% {
background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 50%
}
}