-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
57 lines (54 loc) · 1.14 KB
/
app.css
File metadata and controls
57 lines (54 loc) · 1.14 KB
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
/* Spinner 1 */
.spinner-1:before {
content: "";
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
height: 60px;
width: 60px;
margin-top: -30px;
margin-left: -30px;
border-radius: 50%;
border: 3px solid lightgray;
border-top-color: coral;
animation: spinner 0.7s linear infinite;
}
/* Spinner 2 */
.spinner-2:before {
content: "";
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
height: 60px;
width: 60px;
margin-top: -30px;
margin-left: -30px;
border-radius: 50%;
border: 2px solid transparent;
border-top-color: coral;
border-bottom-color: coral;
animation: spinner 0.7s ease infinite;
}
/* Spinner 3 */
.spinner-3:before {
content: "";
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
height: 60px;
width: 60px;
margin-top: -30px;
margin-left: -30px;
border-radius: 50%;
border-top: 2px solid coral;
border-right: 2px solid transparent;
animation: spinner 0.7s linear infinite;
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}