-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (61 loc) · 1.04 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
html {
box-sizing: border-box;
font-family: 'Helvetica', sans-serif;
}
*, *:before, *:after {
box-sizing: inherit;
}
.main {
height: 100vh;
width: 100vw;
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
}
h1, h2, p, h3 {
text-align: center;
}
h1 {
margin: 0px;
}
h2 {
font-weight: normal;
font-size: large;
}
a {
height: 30px;
padding: 5px 10px;
color: black;
text-decoration: none;
border-radius: 20px;
border: 2px solid black;
}
a:hover {
background-color: black;
color: white;
}
input {
margin: auto;
}
#header {
width: 100vw;
padding-left: 5vw;
padding-right: 5vw;
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: space-between;
}
#timer #score {
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
}
#questions {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
}