-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
129 lines (116 loc) · 1.88 KB
/
main.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
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
html {
font-family: sans-serif;
line-height: 1.15;
height: 100%;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #1a1a1a;
text-align: left;
height: 100%;
width: 100%;
background-color: #fff;
}
.container {
display: flex;
flex-direction: column;
height: 100%;
}
.map {
flex: 1;
background: #f0f0f0;
}
.info {
padding: 1rem;
margin: 0;
}
.info.error {
color: #fff;
background: #dc3545;
}
/*Quiz syling:*/
h1{
font-weight: 300;
margin: 0px;
padding: 10px;
font-size: 20px;
background-color: #444;
color: #fff;
}
.question{
font-size: 18px;
line-height: normal;
margin-bottom: 10px;
width: 100%;
}
.answers {
margin-bottom: 20px;
margin-left: 20px;
text-align: left;
display: inline-block;
}
.answers label{
display: block;
margin-bottom: 10px;
}
button{
font-family: 'Work Sans', sans-serif;
font-size: 22px;
background-color: rgb(82, 153, 34);
color: #fff;
border: 0px;
border-radius: 3px;
padding: 20px;
cursor: pointer;
margin-bottom: 20px;
margin-left: 20px;
position: absolute;
bottom: 0;
}
button:hover{
background-color: rgb(42, 141, 51);
}
.slide{
position: absolute;
left: 20px;
top: 0px;
z-index: 1;
opacity: 0;
transition: opacity 0.5s;
}
.active-slide{
opacity: 1;
z-index: 2;
}
.quiz-container{
position: relative;
height: 350px;
margin-top: 40px;
display: none;
width: 100%;
}
#results{
text-align: center;
margin-bottom: 20px;
font-size: larger;
}
/*Splash*/
#splash{
width: 100%;
height: 100vh;
}
.splash-header {
font-size: x-large;
font-weight: 400;
text-align: center;
}
form {
margin-left: 20px;
}
h2 {
margin-bottom: 0px;
}