-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (68 loc) · 1.23 KB
/
styles.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body{
background-color: black;
color: orange;
}
div{
display: block;
height: 100px;
width: 100px;
}
h1{
}
#content-wrapper{
margin-left: auto;
margin-right: auto;
width: 331px;
}
#content-wrapper div{
margin-left: auto;
margin-right: auto;
}
#mask{
border-radius: 50%;
box-shadow: 7px 7px 1px 0 black;
transform: rotate(223deg);
background: transparent;
margin-left: 158.5px !important;
position: absolute;
top: 83px;
height: 15px;
width: 15px;
}
#white{
margin-left: 100px;
width: 0;
height: 0;
border-left: 25px solid transparent;
border-right: 25px solid transparent;
border-bottom: 50px solid white;
border-top-left-radius: 40px;
border-top-right-radius: 40px;
}
#orange{
margin-left: 50px;
width: 50px;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid orange;
}
#yellow{
width: 150px;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid yellow;
border-radius: 22px;
}
#answer-wrapper{
font-size: 3em;
margin-left: 50px;
margin-top: 15px;
width: 153px;
}
a{
color: orange;
margin-right: 25px;
}
a:hover{color: red;}