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.code {
font-family: 'Courier New', Courier, monospace;
padding:1rem;
background-color: var(--gray-4);;
}
.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;
}
}
.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% }
}