-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.css
81 lines (70 loc) · 1.42 KB
/
quiz.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
73
74
75
76
77
78
79
80
81
/* Quiz question */
.quiz-question {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
/* Quiz options */
.quiz-options {
display: flex;
flex-direction: column;
margin-left: 50px;
margin-right: 50px;
}
.quiz-options li {
display: flex;
align-items: baseline;
font-size: 18px;
margin-bottom: 20px;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: space-between;
}
.quiz-options input[type="radio"] {
margin-right: 10px;
cursor: pointer;
transform: scale(1.5);
}
/* Quiz buttons */
.quiz-buttons {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.quiz-buttons button {
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
transition: background-color 0.3s;
}
.quiz-buttons button#save-next-btn {
margin-right: 50px;
margin-left: 50px;
margin-bottom: 30px;
background-color: #007bff;
}
.quiz-buttons button#save-next-btn:hover {
background-color: #0056b3;
}
.quiz-buttons button#previous-btn {
margin-left: 50px;
margin-bottom: 30px;
background-color: #6c757d;
}
.quiz-buttons button#previous-btn:hover {
background-color: #4d545b;
}
/* Quiz result */
#quiz-result {
text-align: center;
display: none;
margin-top: 30px;
}
#result-text {
font-size: 20px;
font-weight: bold;
}