-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (60 loc) · 1006 Bytes
/
style.css
File metadata and controls
63 lines (60 loc) · 1006 Bytes
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
body {
margin: 0 15%;
font-family: 'Nunito', sans-serif;
font-size: larger;
}
h1 {
font-size: 6vw;
}
p {
font-size: large;
}
button {
color: white;
background-color: #89498a;
border: none;
border-radius: 4px;
padding: 5px;
margin: 1px;
}
input {
width: 50%;
padding: 1px;
padding-bottom: 2px;
}
button:hover {
background-color: #876888;
}
button, input {
font-family: 'Nunito', sans-serif;
font-size: x-large;
}
#menu {
display: flex;
justify-content: space-between;
}
#homePage, #quiz, #finalScore, #highScores {
text-align: center;
}
#quiz #questions button {
margin: 1%;
width: 70%;
}
#scoreList li {
margin: 10px 20%;
text-align: left;
background-color: #7fffd4;
}
#scoreList li:nth-child(2n) {
background-color: rgb(200, 255, 237);
}
@media screen and (min-width: 1080px) {
h1 {
font-size: 68px;
}
}
@media screen and (max-width: 400px) {
h1 {
font-size: 24px;
}
}