-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquiz.css
63 lines (52 loc) · 903 Bytes
/
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
body {
background-color: #f3dfa2 !important;
color: #54494b !important;
font-family: "Montserrat", sans-serif !important;
}
.bt-color {
background-color: #fcb0b3 !important;
color: #51a3a3 !important;
}
.card-footer {
font-size: 20px;
}
.padding-bottom {
padding-bottom: 3vw;
}
.title-quiz {
text-align: center;
}
.mg-bt {
margin-bottom: 4vw;
}
.question {
background-color: #51a3a3 !important;
color: white;
font-size: 4.5vw;
}
.radio-button {
float: none !important;
transform: scale(0.5);
}
.element-centered {
display: flex;
flex-direction: column;
}
.quiz-form {
text-align: left;
margin-left: 10%;
padding-bottom: 20px;
}
@media (min-width: 1025px) {
.question {
background-color: #51a3a3 !important;
color: white;
font-size: 1.9vw;
width: 900px;
margin: auto;
padding: 10px;
}
.response {
font-size: 1.6vw;
}
}