-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
118 lines (100 loc) · 1.77 KB
/
styles.css
File metadata and controls
118 lines (100 loc) · 1.77 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
* {
box-sizing: border-box;
background: linear-gradient(-90deg, rgb(240, 240, 245), rgb(250, 250, 250));
font-family: Arial, sans-serif;
font-size: 18px;
text-align: center;
}
p {
font-family: 'Roboto', sans-serif;
}
.answer-container {
display: block;
text-align: center;
background: #BF0A30;
opacity: 0.8;
padding: 20px 50px 20px 50px;
margin: 0px 20px 0px 20px;
}
.answer-container .answer {
color: black;
font-size: 30px;
font-weight: 700;
}
.explanation {
color: black;
font-size: 20px;
font-weight: 650;
padding: 20px 10px 20px 10px;
}
.answerImage {
height: 150px;
width: 150px;
}
.mainpage, .question-container, .answer-container {
display: none;
}
.btn-next, .btn-final {
display: none;
margin:auto;
}
header {
width: 100%;
padding: 50px 0px 0px;
color: black;
font-size: 15px;
}
header p {
display: inline-block;
padding: 0px 15px;
}
h1 {
font-family: 'Overpass', sans-serif;
font-size: 3em;
font-weight: 100;
}
h2 {
font-size: 2em;
color: green;
}
.question {
font-size: 1em;
color: black;
}
.container ul{
list-style: none;
margin: 0;
padding: 0;
overflow: auto;
}
.button {
font-size:20px;
color: #CE5C17;
background-color:#BF0A30;
border: 2px solid #CE5C17;
padding: 7px;
text-transform: uppercase;
text-align: center;
}
.container, .quiz {
float: center;
text-align: center;
}
.question-container input[type="radio"] {
display: none;
}
.question-container label {
display: block;
background-color:#FED700;
opacity: 0.8;
padding: 10px 10px 10px 10px;
font-weight: 300;
color: #BF0A30;
font-size: 18px;
cursor: pointer;
margin: 5px 20px 5px 20px;
}
.question-container input[type="radio"]:checked+label {
background-color:#BF0A30;
color:#002868;
}