-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextinction.css
63 lines (58 loc) · 1.22 KB
/
extinction.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
63
#outer-circle {
width: 230px;
height: 230px;
background: black;
-moz-border-radius: 150px;
-webkit-border-radius: 150px;
border-radius: 150px;
margin-top: 25px;
margin-left: 25px;
}
#inner-circle {
width: 195px;
display:inline-block;
height: 195px;
background: white;
-moz-border-radius: 150px;
-webkit-border-radius: 150px;
border-radius: 150px;
margin-top: 17px;
margin-left: 17px;
}
#top-triangle {
width: 0;
height: 0;
border-left: 84px solid transparent;
border-right: 84px solid transparent;
border-top: 85px solid black;
display:inline-block;
margin-left:15px;
margin-top:24px;
}
#inner-top-triangle {
width: 0;
height: 0;
border-left: 49px solid transparent;
border-right: 49px solid transparent;
border-top: 50px solid white;
margin-top: -73px;
margin-left: -49px;
}
#bottom-triangle {
width: 0;
height: 0;
border-left: 84px solid transparent;
border-right: 84px solid transparent;
border-bottom: 85px solid black;
margin-top: -27px;
margin-left:15px;
}
#inner-bottom-triangle {
width: 0;
height: 0;
border-left: 49px solid transparent;
border-right: 49px solid transparent;
border-bottom: 50px solid white;
padding-top: 21px;
margin-left: -49px;
}