-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (46 loc) · 910 Bytes
/
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
* {
background-color: darkgray;
box-sizing: border-box;
margin: 0px;
padding: 0px;
font-size: 40px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
h1, h2 {
margin-bottom: 20px;
}
.container{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
max-width: 80%;
margin: 0 auto;
border: solid black 10px;
}
.fewx-column {
display: flex;
flex-direction: column;
}
.flex-center {
justify-content: center;
align-items: center;
}
#start-button {
font-size: 30px;
text-align: center;
background-color: black;
color: white;
padding: 10px;
}
#quiz, #end-screen, #high-scores {
display: none;
}
#answers {
font-size: 30px;
text-align: center;
background-color: black;
color: white;
padding: 10px;
}