-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyling.css
More file actions
138 lines (125 loc) · 2.44 KB
/
styling.css
File metadata and controls
138 lines (125 loc) · 2.44 KB
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
html {
background: radial-gradient(circle, #fff, #000);
height: 100%
}
#container {
height: 400px;
width: 900px;
background-color: #1dd2ea;
margin: 100px auto;
padding: 20px;
border-radius: 10px;
box-shadow: 4px 4px 20px;
position: relative;
}
#score {
background-color: #f1ff92;
color: inherit;
padding: 10px;
position: absolute;
left: 800px;
box-shadow: 2px 2px 2px 2px;
}
#correct {
position: absolute;
left: 400px;
background-color: #42e252;
color: white;
padding: 10px;
display: none;
}
#wrong {
position: absolute;
left: 400px;
background-color: #de401a;
color: white;
padding: 10px;
display: none;
}
#question {
position: center;
width: 700px;
height: 220px;
background-color: #2e62e2;
margin: 70px auto 0px;
box-shadow: 2px 2px 10px 2px;
font-size: 180px;
text-align: center;
font-family: cursive, sans-serif;
}
#instruction {
width: 450px;
background: #848109;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding: 20px;
text-align: center;
box-shadow: 2px 2px 10px;
}
#choices {
width: 450px
height: 100px;
margin: 5px auto;
padding-left: 115px;
padding-top: 10px;
}
.box {
width: 85px;
height: 85px;
background-color: #823456;
float: left;
margin-right: 110px;
border-radius: 3px;
cursor: pointer;
box-shadow: 0px 2px 10px 2px;
text-align: center;
line-height: 80px;
position: relative;
}
.box:hover, #start:hover {
background-color: #956682;
color: white;
box-shadow: 0px 4px #956682;
}
.box:active, #start:active {
box-shadow: 0px 4px #956682;
top: 4px;
}
#start {
background-color: #9f4215;
float: left;
border-radius: 3px;
cursor: pointer;
box-shadow: 0px 2px 10px 2px;
text-align: center;
position: relative;
margin: 20px;
padding: 5px;
margin-left: 400px;
}
#timeremaining {
width: 200px;
padding: 10px;
background-color: green;
position: absolute;
border-radius: 4px;
top: 500px;
left: 700px;
box-shadow: 2px 2px 10px 2px;
display: none;
}
#gameover {
width: 720px;
height: 220px;
background-color: #6f9f32;
text-align: center;
top: 80px;
left: 110px;
position: absolute;
line-height: 80px;
font-size: 80px;
padding-top: 50px;
border-radius: 10px;
display: none;
}