-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
137 lines (118 loc) · 2.22 KB
/
Copy pathstyles.css
File metadata and controls
137 lines (118 loc) · 2.22 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* styles.css */
body {
margin: auto;
font-family: Cambria; Arial;
/* max-width: 800px; */
}
.main {
margin: 80px auto 20px auto;
max-width: 800px;
}
.footer {
display: flex;
flex-direction: row;
align-items: center;
position: fixed;
bottom: 0px;
width: 100%;
}
.footer img {
/* display: block; */
width: 160px;
max-height: 100px;
object-fit: cover;
border-radius: 10px;
margin: 0px auto;
}
.header {
/* background-color: #1F456E; */
/* background-color: #9B1003; --> red */
background-color: #151E3D;
position: fixed;
top: 0px;
width: 100%;
color: white;
text-align: center;
display: flex;
justify-content: space-evenly;
vertical-align: center;
}
.title, i {
margin: 10px;
font-size: 28px
}
#question {
background-color: #1F456E;
color: white;
padding: 15px;
margin-bottom: 10px;
border-radius: 10px 30px;
}
/* Custom radio button styles */
.custom-radio input[type="radio"] {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
width: 16px;
height: 16px;
border-radius: 50%;
border: 4px solid #151E3D;
outline: none;
transition: border-color 0.3s ease-in-out;
margin: 10px 15px 0px -30px;
}
#answers {
font-size: 90%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: left;
border: 3px solid #1F456E;
border-radius: 10px;
padding: 5px 10px 20px 40px;
background-color: #C5C6D0;
}
hr {
border: 3px solid #1F456E;
}
.custom-radio input[type="radio"]:checked {
background-color: #1F456E;
}
.custom-radio input[type="radio"]:checked::before {
content: '';
display: block;
width: 8px;
height: 8px;
margin: 0px;
border-radius: 50%;
background-color: #B90E0A;
}
#submit, #next, #restart {
background-color: #1F456E;
border-radius: 12px;
padding: 6px 20px;
margin-top: 10px;
color: white;
}
#next {
background-color: #151E3D;
}
#restart {
display: flex;
object-position: center;
margin: -20px auto 0px auto;
background-color: #B90E0A;
}
#reaction {
font-size: 90%;
min-height: 50px;
border: 3px solid #B90E0A;
border-radius: 10px;
padding: 10px;
background-color: #F5F5F5;
margin-top: 10px;
}
button:disabled, button[disabled] {
opacity: 0.7;
color: gray;
}