-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuiz.css
More file actions
60 lines (56 loc) · 1.02 KB
/
Copy pathQuiz.css
File metadata and controls
60 lines (56 loc) · 1.02 KB
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
body{
background-color: rgb(78, 79, 208);
display: grid;
justify-content: center;
}
.Container{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: whitesmoke;
margin-top: 10px;
display: flex;
flex-direction: column;
gap: 20px;
padding: 20px;
}
.Question{
font-size: 25px
}
.Options{
display: grid;
gap: 5px;
}
.Navigation{
display: flex;
justify-content: space-between;
}
.Navigation button {
width: 90px;
padding: 5px;
}
button:hover{
background-color: rgb(79, 79, 208);
color: whitesmoke;
border-width: 1px;
border-radius: 5px;
cursor: pointer;
}
.Options button {
width: 100%;
padding: 10px;
font-size: 16px;
}
.info-container{
display: flex;
justify-content: space-between;
}
.info-container {
display: flex;
justify-content: space-between;
padding: 10px;
background-color: #f4f4f4;
border-radius: 5px;
}
.Qno, .time {
font-size: 18px;
font-weight: bold;
}