-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgci.css
62 lines (55 loc) · 1.01 KB
/
gci.css
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
body {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.container {
position: relative;
height: 200px;
width: 200px;
}
.gci {
position: absolute;
width: 200px;
height: 200px;
background-color: #2196F3;
border-radius: 50%;
top: 50px;
left: 50px;
}
.gci:after {
content: "";
position: absolute;
width: 100px;
height: 100px;
border-radius: 50%;
top: 50px;
left: 50px;
background-color: white;
box-shadow:
120px 0 0 -10px white,
-120px 0 0 -10px white,
0 120px 0 -10px white,
0 -120px 0 -10px white,
85px 85px 0 -10px white,
-85px 85px 0 -10px white,
85px -85px 0 -10px white,
-85px -85px 0 -10px white;
animation: circleAround 4s linear infinite;
}
.gci:before {
content: "";
position: absolute;
height: 60px;
width: 60px;
top: 70px;
left: 70px;
border-radius: 50%;
background-color: #FF8F00;
z-index: 10;
}
@keyframes circleAround {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}