-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
58 lines (41 loc) · 795 Bytes
/
main.css
File metadata and controls
58 lines (41 loc) · 795 Bytes
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
#counter{
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: 9;
font-size: 20px;
}
#circle1{
height: 165px;
width: 165px;
background-color:#696878;
border-radius: 50%;
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: 1;
}
#shadowring{
height: 165px;
width: 165px;
border-radius: 50%;
box-shadow: 0 0 6px rgba(0,0,0,.5);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: 99;
}
#circle2{
height: 196px;
width: 196px;
background-color:#BBD9DB;
border-radius: 50%;
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: -1;
}