-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (87 loc) · 1.7 KB
/
style.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
body {
background-color: #000;
background-image: url("https://www.transparenttextures.com/patterns/3px-tile.png");
font-family: 'Kelly Slab', cursive;
margin-top: 40px;
}
h1 {
font-size: 40px;
line-height: 0px;
}
.title,
.byline {
color: white;
text-align: center;
font-family: 'Bungee Shade', cursive;
}
button {
width: 56px;
height: 20px;
background-color: rgba(255, 0, 0, 0.76);
border: 0px;
color: white;
text-align: center;
}
.wrapper {
overflow: hidden;
}
.circle {
width: 300px;
height: 300px;
border-radius: 100%;
position: relative;
text-align: center;
margin: auto;
background-color: #333;
border: 12px solid #232323;
}
.half {
height: 50%;
padding-bottom: 2%;
}
.sector {
height: 96%;
width: 48%;
}
.topleft {
border-top-left-radius: 100%;
float: left;
}
.topright {
border-top-right-radius: 100%;
float: right;
}
.bottomleft {
border-bottom-left-radius: 100%;
float: left;
}
.bottomright {
border-bottom-right-radius: 100%;
float: right;
}
.red {
background-color: rgba(255, 0, 0, 0.76);
}
.green {
background-color: rgba(0, 128, 0, 0.76);
}
.blue {
background-color: rgba(0, 0, 255, 0.76);
}
.yellow {
background-color: rgba(255, 255, 0, 0.76);
}
.game-control {
width: 150px;
height: 150px;
position: absolute;
border-radius: 100%;
top: 50%;
left: 50%;
margin: -87px 0 0 -87px;
background-color: #ECE7EE;
border: 12px solid #333;
}
.lighten {
box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.3);
}