-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
70 lines (58 loc) · 886 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
h1,
h2 {
font-family: Lato;
}
.quizContainer {
padding: 2em;
max-width: 840px;
margin: 0 auto;
}
.questionImages {
margin-bottom: 1em;
width: 100%;
display: grid;
row-gap: 1em;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.questionImages img {
max-width: 250px;
}
.resultCard,
.questionsCard {
display: none;
}
.questionsCard {
position: relative;
margin-top: 1em;
}
.questionsCard .timer {
width: fit-content;
padding: 0.75em 1em;
font-weight: 600;
position: absolute;
right: -1em;
top: -1em;
}
.question {
margin: 1em 0.5em 0.5em;
}
.choiceList {
display: grid;
grid-auto-flow: row;
gap: 1em;
}
.choiceList label {
width: 100%;
}
.btns .col,
.resultBtnContainer {
display: flex;
justify-content: center;
}
.btns .col {
padding: 1.25em 0;
}
.resultBtnContainer {
display: none;
margin-top: 1em;
}