-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
154 lines (142 loc) · 3.1 KB
/
Copy pathstyle.css
File metadata and controls
154 lines (142 loc) · 3.1 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/* Formatting to remove default button behavior of underlining and turning text purple */
a, a:hover, a:active, a:focus {
text-decoration: none;
color: white;
}
/* Formatting for intro message */
#Intro {
display: flex;
text-align: center;
font-weight: bolder;
margin-left: 25%;
margin-right: 25%;
margin-top: 5%;
background-color: maroon;
color: white;
border: black solid 5px;
border-radius: 10px;
}
/* Formatting for start button */
#Start {
display: flex;
padding: 0px;
width: fit-content;
margin-left: auto;
margin-right: auto;
margin-top: 2%;
font-size: 30px;
background-color: lightgrey;
border: black solid 5px;
border-radius: 10px;
}
#ListOfScores {
padding: 0px 0px 0px 0px;
}
/* Formatting for high scores */
#HiScores {
display: flex;
padding: 2px 2px 2px 2px;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
background-color: lightgrey;
border: black solid 5px;
border-radius: 10px;
display: flex;
font-size: 20px;
position: absolute;
top: 0px;
left: 0px;
width: fit-content;
margin-bottom: 5px;
}
/* Formatting for countdown element */
#Countdown {
display: flex;
border: 0px;
margin: 0px;
position: absolute;
top: 0px;
right: 0px;
font-size: 24px;
font-weight: bolder;
margin-bottom: 5px;
}
/* Formatting for all answer options */
ul {
text-decoration: none;
list-style-type: none;
margin: 0;
max-width: 200px;
left: 50%;
right: 50%;
justify-content: center;
font-size: 24px;
}
/* Formatting for individual answer options */
ul li {
text-decoration: none;
background-color: darkgreen;
text-align: center;
margin-bottom: 15px;
padding: 10px 10px 10px 10px;
border: 5px 5px 5px 5px;
width: 200px;
margin-left: 35%;
margin-right: 35%;
border-radius: 10px;
}
/* Formatting for whole question element */
#Q1, #Q2, #Q3, #Q4, #Q5 {
text-decoration: none;
display: none;
border: black solid 5px;
border-radius: 10px;
margin-top: 10%;
margin-left: 25%;
margin-right: 25%;
background: navy;
color: white;
}
/* Formatting for game over screen when time = 0 or all questions answered */
#GameOver {
display: none;
border: black solid 5px;
border-radius: 10px;
margin-top: 10%;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 10px;
color: red;
font-size: 50px;
font-weight: bolder;
}
/* Formatting for current round score display */
#YourScore {
display: none;
text-align: center;
border: black solid 5px;
border-radius: 10px;
margin-left: 10%;
margin-right: 10%;
color: black;
font-size: 30px;
font-weight: bolder;
}
/* Formatting for all h1 elements */
h1 {
text-align: center;
}
/* Formatting for reload button */
#Reload {
display: none;
padding: 0px;
width: fit-content;
margin-left: auto;
margin-right: auto;
margin-top: 12%;
font-size: 30px;
background-color: lightgrey;
border: black solid 5px;
border-radius: 10px;
}