-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
67 lines (56 loc) · 1008 Bytes
/
index.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
body {
background-color: lightgrey;
font-family: 'Open Sans', sans-serif;
}
h1 {
text-align: center;
}
.clicktostart {
text-align: center;
}
.titleimage {
display: block;
margin: auto;
width: 70%;
height: 70%;
}
.startbutton {
margin: auto;
left: 0;
right: 0;
margin-top: 20px;
display: block;
padding: 5px;
border: 1px solid grey;
width: 100px;
height: 50px;
border-radius: 3px;
}
.answer, .next-question, .final-score, .playagain {
width: 120px;
height: 60px;
display: block;
font-size: 1.1em;
border-radius: 3px solid grey;
background-color: lightgrey;
}
@media only screen and (max-width: 640px) {
body {
width: 100%;
}
}
.questionnumber {
text-align: center;
font-size: 1.2em;
}
.questiontitle, .score-tab, .correct-answer, .incorrect-answer, .quizresults {
text-align: center;
}
.answer, .next-question, .final-score, .playagain {
display: block;
margin: auto;
background-color: white;
}
.questionbox {
display: block;
}