-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
189 lines (189 loc) · 4.12 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
*{
font-family: sans-serif;
}
html
{
height:100%;
background-color:#dde2e3;
}
.gametitle{
text-align: center;
font-size: 30px;
color: #2c2e9a;
margin-top: 50px;
}
.player{
border-radius:5px;
position: relative;
margin: 50px auto;
width: 300px;
}
#board{
background-color:#abd7ec;
width: 500px;
height: 380px;
border-radius:5px;
box-shadow: 0px 5px 5px #134b80;
-moz-box-shadow: 0px 5px 5px #134b80;
-webkit-box-shadow: 0px 5px 5px #134b80;
position: relative;
margin: 50px auto;
}
#right{
padding:5px;
background-color:#4fb832;
width: 70px;
position: absolute;
margin: 20px 200px;
text-align: center;
color:white;
border-radius: 5px;
box-shadow: 0px 5px 5px #133512;
-moz-box-shadow: 0px 5px 5px #133512;
-webkit-box-shadow: 0px 5px 5px #133512;
display:none;
}
#wrong{
padding:5px;
background-color: #bb1010;
width: 70px;
position: absolute;
margin: 20px 200px;
text-align: center;
color:white;
border-radius: 5px;
box-shadow: 0px 5px 5px #45150c;
-moz-box-shadow: 0px 5px 5px #45150c;
-webkit-box-shadow: 0px 5px 5px #45150c;
display:none;
}
#score{
padding: 5px;
background-color:#c5d750;
width:70px;
text-align:center;
position: absolute;
margin: 20px 380px;
border-radius: 5px;
box-shadow: 0px 5px 5px grey;
-moz-box-shadow: 0px 5px 5px grey;
-webkit-box-shadow: 0px 5px 5px grey;
}
#problem{
padding:5px;
background-color:#4d74df;
width: 400px;
height: 60px;
text-align:center;
position: absolute;
margin: 85px 40px;
font-size: 40px;
line-height: 60px;
color:white;
border-radius: 5px;
box-shadow: 0px 5px 5px #153d93;
-moz-box-shadow: 0px 5px 5px #153d93;
-webkit-box-shadow: 0px 5px 5px #153d93;
}
#instruction{
padding:5px;
background-color:#75ba26;
width: 400px;
height: 30px;
text-align:center;
line-height: 30px;
position: absolute;
margin: 165px 40px;
font-size: 20px;
color:white;
border-radius: 5px;
box-shadow: 0px 5px 5px #223927;
-moz-box-shadow: 0px 5px 5px #223927;
-webkit-box-shadow: 0px 5px 5px #223927;
}
#answers{
margin: 215px 40px;
position: absolute;
}
#answer1, #answer2, #answer3, #answer4{
padding: 5px;
height: 50px;
line-height: 50px;
width: 60px;
background-color: aliceblue;
float:left;
border-radius: 5px;
font-size: 34px;
text-align:center;
margin-right: 43px;
box-shadow: 0px 5px 5px grey;
-moz-box-shadow: 0px 5px 5px grey;
-webkit-box-shadow: 0px 5px 5px grey;
}
#answer1:hover, #answer2:hover, #answer3:hover, #answer4:hover{
background-color:#4b4ecc;
color:white;
cursor:pointer;
}
#answer4{
margin-right:0;
}
#start{
padding:5px;
background-color:#9837ae;
width: 70px;
position: absolute;
margin: 300px 210px;
text-align: center;
color:white;
border-radius: 5px;
box-shadow: 0px 5px 5px #281036;
-moz-box-shadow: 0px 5px 5px #281036;
-webkit-box-shadow: 0px 5px 5px #281036;
}
#reset{
padding:5px;
background-color:#9837ae;
width: 70px;
position: absolute;
margin: 300px 210px;
text-align: center;
color:white;
border-radius: 5px;
box-shadow: 0px 5px 5px #281036;
-moz-box-shadow: 0px 5px 5px #281036;
-webkit-box-shadow: 0px 5px 5px #281036;
display:none;
}
#reset:hover, #start:hover{
background-color: #b739e9;
cursor:pointer;
}
#time{
padding:5px;
background-color:#e4c6f0;
width: 105px;
text-align: center;
position: absolute;
margin: 310px 350px;
border-radius: 5px;
box-shadow: 0px 5px 5px #0b353b;
-moz-box-shadow: 0px 5px 5px #0b353b;
-webkit-box-shadow: 0px 5px 5px #0b353b;
display:none;
}
#gameover{
padding:5x;
line-height: 50px;
background-color:#304f96;
color: white;
width: 350px;
height: 210px;
position:absolute;
margin: 75px 70px;
text-align:center;
font-size: 30px;
border-radius: 5px;
z-index: 2;
display:none;
}