-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquiz.css
More file actions
57 lines (54 loc) · 947 Bytes
/
quiz.css
File metadata and controls
57 lines (54 loc) · 947 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
body{
font-size: 2em;
font-family: sans-serif;
background-color: purple;
}
.result{
display: flex;
width: 50%;
justify-content: space-around;
opacity:0;
}
.dispscore{
background-color: aqua;
padding: 20px;
}
.page{
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.question{
background-color: aquamarine;
width: 75%;
padding: 20px;
text-align: center;
}
.options{
text-align: left;
background-color: orange;
width: 60%;
padding: 20px;
}
.submitbutton{
background-color: green;
font-size: 1em;
color: white;
border-radius: 10px;
padding: 10px;
}
.retry{
background-color: greenyellow;
font-size: 1em;
border-radius: 10px;
padding: 10px;
}
.feedback{
background-color: blue;
color: white;
padding: 20px;
text-align: center;
}