-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimonSaysCSS.css
107 lines (96 loc) · 1.47 KB
/
SimonSaysCSS.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body {
background-color: #5D7D7F;
}
#firstList {
text-align: center;
display: flex;
position: relative;
list-style: none;
top: 3em;
}
#secondList {
text-align: center;
display: flex;
position: relative;
list-style: none;
top: 3em;
left: 4em;
}
li {
margin-left: .5em;
margin-right: .5em;
font-size: 2em;
}
.onOff {
position: relative;
font-size: 1em;
border-radius: .3em;
background: #E2B7E3;
}
.title {
position: relative;
top: 1em;
font-size: 3em;
}
.liBtn {
margin-top: .9em;
font-size: 1em;
border-radius: .3em;
background: #E2B7E3;
}
.roundCounter {
border-style: solid;
color: #BA3434;
border-color: black;
background: #681A1A;
padding-left: .5em;
padding-right: .5em;
border-radius: .3em;
}
.main {
position: relative;
width: 50em;
height: 50em;
margin: 0 auto;
}
.quarter {
position: absolute;
width: 50%;
height: 50%;
border-style: solid;
}
.quarter1 {
top: 0;
left: 0;
background-color: red;
border-radius: 100% 0 0 0;
}
.quarter2 {
top: 0;
right: 0;
background-color: blue;
border-radius: 0 100% 0 0 ;
}
.quarter3 {
bottom: 0;
left: 0;
background-color: orange;
border-radius: 0 0 0 100%;
}
.quarter4 {
bottom: 0;
right: 0;
background-color: green;
border-radius: 0 0 100% 0 ;
}
.cutout {
width: 50%;
height: 50%;
background-color: white;
position: absolute;
top: 25%;
left: 25%;
border-radius: 50%;
border-style: solid;
background: #C1D8D9;
}