File size: 916 Bytes
1a34be3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dd60d3f
1a34be3
 
 
 
dd60d3f
1a34be3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
}

.loader div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0.8;
}

.one {
  border-top: 1px solid #8834e8;
  animation: rotate-left 1s linear infinite;
}

.two {
  border-right: 1px solid #a28ecb;
  animation: rotate-right 1s linear infinite;
}

.three {
  border-bottom: 1px solid #ffd933;
  animation: rotate-right 1s linear infinite;
}

.four {
  border-left: 1px solid #ff7f00;
  animation: rotate-right 1s linear infinite;
}

@keyframes rotate-left {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}