-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (83 loc) · 1.57 KB
/
style.css
File metadata and controls
94 lines (83 loc) · 1.57 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap");
h1 {
font-family: "Raleway", sans-serif;
text-align: center;
color: #cfd3da;
font-size: 35px;
}
ul {
list-style: none;
}
li {
font-family: "Raleway", sans-serif;
font-size: 2em;
color: #374a6b;
}
input[type="radio"] {
border: 0px;
width: 20px;
height: 2em;
}
p {
font-family: "Raleway", sans-serif;
}
.quizContainer {
background-image: url("rainbow.png");
background-color: #748198;
border-radius: 8px;
width: 75%;
margin: auto;
margin-top: 190px;
padding-top: 5px;
position: relative;
}
.nextButton {
background-image: url("btn_rainbow.png");
text-align: center;
background-color: #374a6b;
border-radius: 6px;
width: 150px;
height: 40px;
color: #e22030;
font-family: "Raleway", sans-serif;
font-size: 1em;
font-weight: bold;
position: relative;
margin: auto;
padding-top: 20px;
}
.question {
font-family: "Raleway", sans-serif;
font-size: 2em;
width: 90%;
height: auto;
margin: auto;
border-radius: 6px;
background-color: #cfd3da;
text-align: center;
color: #374a6b;
}
.quizMessage {
font-family: "Raleway", sans-serif;
width: 30%;
margin: auto;
padding: 2px;
border-radius: 6px;
background-color: #cfd3da;
text-align: center;
color: #374a6b;
}
.choiceList {
font-family: "Raleway", sans-serif;
color: crimson;
}
.result {
font-family: "Raleway", sans-serif;
width: 30%;
height: auto;
margin: auto;
margin-top: 35px;
border-radius: 6px;
background-color: #cfd3da;
text-align: center;
}