blob: 1f690bde3235a2539fdc86a3cd846c1f36a2b32f (
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
|
.container {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
z-index: 99999;
background: rgb(255 255 255 / 75%);
}
.spinner {
width: 50px;
height: 50px;
margin: auto;
display: inline-block;
border: 3px solid #c9c9c9;
border-radius: 50%;
border-top-color: #25a070;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
|