-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
229 lines (196 loc) · 3.71 KB
/
styles.css
File metadata and controls
229 lines (196 loc) · 3.71 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
.question-bg {
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
background-position: center;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
padding: 20px;
height: 1300px;
width: 100%;
}
.topTitle-bg {
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
background-position: center;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
padding: 20px;
height: 900px;
width: 100%;
}
body {
margin: 0;
padding: 0;
}
#map {
top: 0;
height: 100vh;
width: 100%;
position: fixed;
}
#header {
margin: auto;
min-height: 100vh;
width: 100%;
position: relative;
z-index: 5;
padding: 2vh 0vh 5vh 0vh;
}
#features {
padding-top: 80vh;
padding-bottom: 10vh;
}
@media (max-width: 750px) {
#features {
width: 90vw;
margin: 0 auto;
}
}
#footer {
min-height: 2vh;
text-align: left;
line-height: 25px;
width: 100%;
position: relative;
z-index: 5;
}
#header h1 {
font-weight: 700;
text-transform: uppercase;
font-family: 'Roboto Condensed', sans-serif;
text-align: center;
margin: auto;
max-width: 1200px;
}
#header h4 {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
margin-bottom: 0.5em;
margin-left: auto;
margin-right: auto;
text-align: center;
max-width: 1200px;
}
#header h5.byline {
font-weight: 300;
font-size: 0.9em;
margin-top: 0.5em;
margin-left: auto;
margin-right: auto;
}
#header h5 {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 400;
margin-top: 0.5em;
text-align: center;
font-size: 1.2em;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
#header p.byline {
font-weight: 300;
font-size: 0.9em;
margin: 0.5em auto 0.8em auto;
}
#header p {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 400;
text-align: left;
font-size: 1.2em;
max-width: 600px;
margin: 1em auto 1em auto;
}
#features h3 {
font-size: 30px;
line-height: 1.2;
font-family: 'Roboto Condensed', sans-serif;
text-align: left;
max-width: 50vw;
}
#features p {
font-family: 'Roboto Condensed', sans-serif;
text-align: left;
font-size: 1.2em;
max-width: 50vw;
}
#features .imageCredit {
font-size: 0.9em;
margin-top: -5px;
}
#footer p {
font-family: 'Roboto Condensed', sans-serif;
font-size: 0.9em;
max-width: 600px;
padding: 0.75em 0em;
margin: 0px auto;
}
a,
a:hover,
a:visited {
color: #e96138;
}
.hidden {
visibility: hidden;
}
.centered {
width: 50vw;
margin: 0 auto;
}
.lefty {
width: 33vw;
margin-left: 5vw;
}
.righty {
width: 33vw;
margin-left: 62vw;
}
.fully {
width: 100%;
margin: auto;
}
.light {
color: #444;
background-color: #ffffff;
}
.dark {
color: #fafafa;
background-color: #44444400;
/* The original version during the presentation: change background-color to transparent */
}
.transparent{
color: #fafafa;
background-color: #44444400;
}
.step {
padding-bottom: 50vh;
opacity: 0.15;
}
.step.active {
opacity: 0.99;
}
.step div {
padding: 25px 50px;
line-height: 25px;
font-size: 13px;
}
.step img {
width: 100%;
}
@media (max-width: 750px) {
.centered,
.lefty,
.righty,
.fully {
width: 90vw;
margin: 0 auto;
}
}
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas {
touch-action: unset;
}