jekyll-theme-easy-wedding 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_config.yml +36 -0
- data/_includes/celebrations.html +46 -0
- data/_includes/chi_details.html +210 -0
- data/_includes/details.html +5 -0
- data/_includes/email_form.html +49 -0
- data/_includes/faq.html +12 -0
- data/_includes/footer.html +7 -0
- data/_includes/google_map.html +3 -0
- data/_includes/guide.html +39 -0
- data/_includes/head.html +42 -0
- data/_includes/hotel_thumbnail.html +22 -0
- data/_includes/js.html +1 -0
- data/_includes/lbc_details.html +17 -0
- data/_includes/modals.html +3 -0
- data/_includes/modals/form_modal.html +29 -0
- data/_includes/modals/modal.html +7 -0
- data/_includes/nav.html +42 -0
- data/_includes/our_story.html +40 -0
- data/_includes/people.html +66 -0
- data/_includes/photo-gallery.html +83 -0
- data/_includes/registry.html +15 -0
- data/_layouts/default.html +22 -0
- data/_layouts/info.html +16 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/main.scss +602 -0
- data/assets/css/bootstrap.min.css +5 -0
- data/assets/css/font-awesome/css/font-awesome.css +1672 -0
- data/assets/css/font-awesome/css/font-awesome.min.css +4 -0
- data/assets/css/font-awesome/fonts/FontAwesome.otf +0 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.svg +1 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/assets/css/font-awesome/less/bordered-pulled.less +16 -0
- data/assets/css/font-awesome/less/core.less +11 -0
- data/assets/css/font-awesome/less/fixed-width.less +6 -0
- data/assets/css/font-awesome/less/font-awesome.less +17 -0
- data/assets/css/font-awesome/less/icons.less +552 -0
- data/assets/css/font-awesome/less/larger.less +13 -0
- data/assets/css/font-awesome/less/list.less +19 -0
- data/assets/css/font-awesome/less/mixins.less +25 -0
- data/assets/css/font-awesome/less/path.less +14 -0
- data/assets/css/font-awesome/less/rotated-flipped.less +20 -0
- data/assets/css/font-awesome/less/spinning.less +29 -0
- data/assets/css/font-awesome/less/stacked.less +20 -0
- data/assets/css/font-awesome/less/variables.less +561 -0
- data/assets/css/font-awesome/scss/_bordered-pulled.scss +16 -0
- data/assets/css/font-awesome/scss/_core.scss +11 -0
- data/assets/css/font-awesome/scss/_fixed-width.scss +6 -0
- data/assets/css/font-awesome/scss/_icons.scss +552 -0
- data/assets/css/font-awesome/scss/_larger.scss +13 -0
- data/assets/css/font-awesome/scss/_list.scss +19 -0
- data/assets/css/font-awesome/scss/_mixins.scss +25 -0
- data/assets/css/font-awesome/scss/_path.scss +14 -0
- data/assets/css/font-awesome/scss/_rotated-flipped.scss +20 -0
- data/assets/css/font-awesome/scss/_spinning.scss +29 -0
- data/assets/css/font-awesome/scss/_stacked.scss +20 -0
- data/assets/css/font-awesome/scss/_variables.scss +561 -0
- data/assets/css/font-awesome/scss/font-awesome.scss +17 -0
- data/assets/css/styles.scss +10 -0
- data/assets/img/favicon.png +0 -0
- data/assets/img/lyft.svg +1 -0
- data/assets/img/uber-black.png +0 -0
- data/assets/img/uber-white.png +0 -0
- data/assets/js/bootstrap.js +2306 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/globals.js +7 -0
- data/assets/js/jquery.easing.min.js +44 -0
- data/assets/js/jquery.js +4 -0
- data/assets/js/main.js +70 -0
- data/assets/js/ouical.min.js +1 -0
- data/assets/js/rsvp.js +320 -0
- metadata +188 -0
data/_layouts/info.html
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
{% capture style %}
|
5
|
+
{% if page.image_position %} background-position: {{ page.image_position }};{% endif %}
|
6
|
+
background-image: url({{site.baseurl}}/{{ page.billboard_image }})
|
7
|
+
{% endcapture %}
|
8
|
+
|
9
|
+
<header class="billboard billboard-header"
|
10
|
+
style="{{style}}">
|
11
|
+
<h1 class="billboard-text">
|
12
|
+
{{ page.title }}
|
13
|
+
</h1>
|
14
|
+
</header>
|
15
|
+
|
16
|
+
{{ content }}
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
data/_sass/main.scss
ADDED
@@ -0,0 +1,602 @@
|
|
1
|
+
body {
|
2
|
+
width: 100%;
|
3
|
+
height: 100%;
|
4
|
+
font-family: Cardo, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5
|
+
color: #404040;
|
6
|
+
background-color: #fff;
|
7
|
+
display: flex;
|
8
|
+
flex-direction: column;
|
9
|
+
}
|
10
|
+
|
11
|
+
.content-wrapper {
|
12
|
+
flex: 1 0 auto;
|
13
|
+
}
|
14
|
+
|
15
|
+
.footer-wrapper {
|
16
|
+
flex-shrink: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
html {
|
20
|
+
width: 100%;
|
21
|
+
height: 100%;
|
22
|
+
}
|
23
|
+
|
24
|
+
h1,
|
25
|
+
h2,
|
26
|
+
h3,
|
27
|
+
h4,
|
28
|
+
h5,
|
29
|
+
h6 {
|
30
|
+
margin: 0 0 35px;
|
31
|
+
text-transform: uppercase;
|
32
|
+
font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
33
|
+
font-weight: 700;
|
34
|
+
letter-spacing: 1px;
|
35
|
+
}
|
36
|
+
|
37
|
+
p {
|
38
|
+
margin: 0 0 25px;
|
39
|
+
font-size: 18px;
|
40
|
+
line-height: 1.5;
|
41
|
+
}
|
42
|
+
|
43
|
+
ul {
|
44
|
+
font-size: 18px;
|
45
|
+
margin: 0 0 25px;
|
46
|
+
}
|
47
|
+
|
48
|
+
@media (min-width: 767px) {
|
49
|
+
p {
|
50
|
+
margin: 0 0 35px;
|
51
|
+
line-height: 1.6;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
a {
|
56
|
+
color: #219ab3;
|
57
|
+
-webkit-transition: all 0.2s ease-in-out;
|
58
|
+
-moz-transition: all 0.2s ease-in-out;
|
59
|
+
transition: all 0.2s ease-in-out;
|
60
|
+
}
|
61
|
+
|
62
|
+
a:hover,
|
63
|
+
a:focus {
|
64
|
+
text-decoration: none;
|
65
|
+
color: #11505d;
|
66
|
+
}
|
67
|
+
|
68
|
+
.light {
|
69
|
+
font-weight: 400;
|
70
|
+
}
|
71
|
+
|
72
|
+
.navbar-custom {
|
73
|
+
margin-bottom: 0;
|
74
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
|
75
|
+
text-transform: uppercase;
|
76
|
+
font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
77
|
+
background-color: #fff;
|
78
|
+
}
|
79
|
+
|
80
|
+
.navbar-custom .navbar-brand {
|
81
|
+
font-weight: 700;
|
82
|
+
}
|
83
|
+
|
84
|
+
.navbar-custom .navbar-brand:focus {
|
85
|
+
outline: 0;
|
86
|
+
}
|
87
|
+
|
88
|
+
.navbar-custom .navbar-brand .navbar-toggle {
|
89
|
+
padding: 4px 6px;
|
90
|
+
font-size: 16px;
|
91
|
+
color: #fff;
|
92
|
+
}
|
93
|
+
|
94
|
+
.navbar-custom .navbar-brand .navbar-toggle:focus,
|
95
|
+
.navbar-custom .navbar-brand .navbar-toggle:active {
|
96
|
+
outline: 0;
|
97
|
+
}
|
98
|
+
|
99
|
+
.navbar-custom .navbar-toggle {
|
100
|
+
margin-top: 5px;
|
101
|
+
margin-bottom: 5px;
|
102
|
+
color: #fff;
|
103
|
+
}
|
104
|
+
|
105
|
+
.navbar-custom.top-nav-collapse .navbar-toggle {
|
106
|
+
color: inherit;
|
107
|
+
}
|
108
|
+
|
109
|
+
.navbar-custom a {
|
110
|
+
color: #404040;
|
111
|
+
/*text-shadow: 0px 0px 1px #B38C00;*/
|
112
|
+
}
|
113
|
+
|
114
|
+
.navbar-custom ul {
|
115
|
+
font-size: 14px;
|
116
|
+
}
|
117
|
+
|
118
|
+
.navbar-custom.top-nav-collapse .nav li.active,
|
119
|
+
.navbar-custom.is-expanded .nav li.active {
|
120
|
+
outline: none;
|
121
|
+
background-color: #ddd;
|
122
|
+
}
|
123
|
+
|
124
|
+
.navbar-custom .nav li a {
|
125
|
+
-webkit-transition: background 0.3s ease-in-out;
|
126
|
+
-moz-transition: background 0.3s ease-in-out;
|
127
|
+
transition: background 0.3s ease-in-out;
|
128
|
+
}
|
129
|
+
|
130
|
+
.navbar-custom .nav li a:hover,
|
131
|
+
.navbar-custom .nav li a:focus,
|
132
|
+
.navbar-custom .nav li a.active {
|
133
|
+
outline: 0;
|
134
|
+
background-color: rgba(255, 255, 255, 0.3);
|
135
|
+
}
|
136
|
+
|
137
|
+
.navbar-custom.top-nav-collapse .nav li a:hover,
|
138
|
+
.navbar-custom.top-nav-collapse .nav li a:focus,
|
139
|
+
.navbar-custom.top-nav-collapse .nav li a.active {
|
140
|
+
outline: 0;
|
141
|
+
background-color: rgba(0, 0, 0, 0.2);
|
142
|
+
}
|
143
|
+
|
144
|
+
.navbar-custom {
|
145
|
+
border-bottom: 3px solid #afa63d;
|
146
|
+
box-shadow: #888 0px 1px 10px;
|
147
|
+
}
|
148
|
+
|
149
|
+
.navbar {
|
150
|
+
border-bottom: 0;
|
151
|
+
box-shadow: none;
|
152
|
+
letter-spacing: 1px;
|
153
|
+
background: 0 0;
|
154
|
+
-webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
|
155
|
+
-moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
|
156
|
+
transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
|
157
|
+
}
|
158
|
+
|
159
|
+
.navbar-custom.is-expanded,
|
160
|
+
.top-nav-collapse {
|
161
|
+
padding: 0;
|
162
|
+
background-color: #fff;
|
163
|
+
}
|
164
|
+
|
165
|
+
.navbar-custom.is-expanded a,
|
166
|
+
.navbar-custom.top-nav-collapse a {
|
167
|
+
color: #404040;
|
168
|
+
}
|
169
|
+
|
170
|
+
.navbar a {
|
171
|
+
color: #fff;
|
172
|
+
}
|
173
|
+
.navbar-custom.top-nav-collapse {
|
174
|
+
border-bottom: 3px solid #afa63d;
|
175
|
+
box-shadow: #888 0px 1px 10px;
|
176
|
+
}
|
177
|
+
|
178
|
+
.intro {
|
179
|
+
display: table;
|
180
|
+
width: 100%;
|
181
|
+
height: 100vh;
|
182
|
+
text-align: center;
|
183
|
+
color: #fff;
|
184
|
+
text-shadow: black 2px 2px 10px;
|
185
|
+
background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%,
|
186
|
+
rgba(0,0,0,0.65) 100%),url($intro_image) no-repeat center center scroll;
|
187
|
+
background-color: #000000;
|
188
|
+
background-position: center;
|
189
|
+
background-size: cover;
|
190
|
+
-webkit-background-size: cover;
|
191
|
+
-moz-background-size: cover;
|
192
|
+
-o-background-size: cover;
|
193
|
+
}
|
194
|
+
|
195
|
+
@media (min-width: 992px) {
|
196
|
+
/*
|
197
|
+
Only allow background-attachment: fixed for desktop-ish sizes
|
198
|
+
https://twitter.com/paul_irish/status/306818591196602368
|
199
|
+
*/
|
200
|
+
.intro {
|
201
|
+
background-attachment: fixed;
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
.intro .intro-body {
|
206
|
+
display: table-cell;
|
207
|
+
vertical-align: middle;
|
208
|
+
}
|
209
|
+
|
210
|
+
.brand-heading {
|
211
|
+
font-size: 40px;
|
212
|
+
letter-spacing: 0.025em;
|
213
|
+
}
|
214
|
+
|
215
|
+
.intro-text {
|
216
|
+
font-size: 18px;
|
217
|
+
}
|
218
|
+
|
219
|
+
@media (min-width: 767px) {
|
220
|
+
.intro {
|
221
|
+
padding: 0;
|
222
|
+
}
|
223
|
+
|
224
|
+
.brand-heading {
|
225
|
+
font-size: 100px;
|
226
|
+
}
|
227
|
+
|
228
|
+
.intro-text {
|
229
|
+
font-size: 25px;
|
230
|
+
}
|
231
|
+
}
|
232
|
+
|
233
|
+
.btn-circle {
|
234
|
+
width: 70px;
|
235
|
+
height: 70px;
|
236
|
+
margin-top: 15px;
|
237
|
+
padding: 7px 16px;
|
238
|
+
border: 2px solid #fff;
|
239
|
+
border-radius: 35px;
|
240
|
+
font-size: 40px;
|
241
|
+
color: #fff;
|
242
|
+
background: 0 0;
|
243
|
+
-webkit-transition: background 0.3s ease-in-out;
|
244
|
+
-moz-transition: background 0.3s ease-in-out;
|
245
|
+
transition: background 0.3s ease-in-out;
|
246
|
+
}
|
247
|
+
|
248
|
+
.btn-circle:hover,
|
249
|
+
.btn-circle:focus {
|
250
|
+
outline: 0;
|
251
|
+
color: #fff;
|
252
|
+
background: rgba(255, 255, 255, 0.1);
|
253
|
+
}
|
254
|
+
|
255
|
+
.btn-circle i.animated {
|
256
|
+
-webkit-transition-property: -webkit-transform;
|
257
|
+
-webkit-transition-duration: 1s;
|
258
|
+
-moz-transition-property: -moz-transform;
|
259
|
+
-moz-transition-duration: 1s;
|
260
|
+
}
|
261
|
+
|
262
|
+
.btn-circle:hover i.animated {
|
263
|
+
-webkit-animation-name: pulse;
|
264
|
+
-moz-animation-name: pulse;
|
265
|
+
-webkit-animation-duration: 1.5s;
|
266
|
+
-moz-animation-duration: 1.5s;
|
267
|
+
-webkit-animation-iteration-count: infinite;
|
268
|
+
-moz-animation-iteration-count: infinite;
|
269
|
+
-webkit-animation-timing-function: linear;
|
270
|
+
-moz-animation-timing-function: linear;
|
271
|
+
}
|
272
|
+
|
273
|
+
@-webkit-keyframes pulse {
|
274
|
+
0% {
|
275
|
+
-webkit-transform: scale(1);
|
276
|
+
transform: scale(1);
|
277
|
+
}
|
278
|
+
|
279
|
+
50% {
|
280
|
+
-webkit-transform: scale(1.2);
|
281
|
+
transform: scale(1.2);
|
282
|
+
}
|
283
|
+
|
284
|
+
100% {
|
285
|
+
-webkit-transform: scale(1);
|
286
|
+
transform: scale(1);
|
287
|
+
}
|
288
|
+
}
|
289
|
+
|
290
|
+
@-moz-keyframes pulse {
|
291
|
+
0% {
|
292
|
+
-moz-transform: scale(1);
|
293
|
+
transform: scale(1);
|
294
|
+
}
|
295
|
+
|
296
|
+
50% {
|
297
|
+
-moz-transform: scale(1.2);
|
298
|
+
transform: scale(1.2);
|
299
|
+
}
|
300
|
+
|
301
|
+
100% {
|
302
|
+
-moz-transform: scale(1);
|
303
|
+
transform: scale(1);
|
304
|
+
}
|
305
|
+
}
|
306
|
+
|
307
|
+
.content-section {
|
308
|
+
padding-top: 50px;
|
309
|
+
padding-bottom: 50px;
|
310
|
+
}
|
311
|
+
|
312
|
+
.content-section h2 small {
|
313
|
+
white-space: nowrap;
|
314
|
+
}
|
315
|
+
|
316
|
+
.download-section {
|
317
|
+
width: 100%;
|
318
|
+
padding: 50px 0;
|
319
|
+
color: #fff;
|
320
|
+
background: url(../img/downloads-bg.jpg) no-repeat center center;
|
321
|
+
background-color: #000000;
|
322
|
+
-webkit-background-size: cover;
|
323
|
+
-moz-background-size: cover;
|
324
|
+
background-size: cover;
|
325
|
+
-o-background-size: cover;
|
326
|
+
}
|
327
|
+
|
328
|
+
.map {
|
329
|
+
width: 100%;
|
330
|
+
height: 400px;
|
331
|
+
margin-bottom: 50px;
|
332
|
+
}
|
333
|
+
|
334
|
+
@media (min-width: 767px) {
|
335
|
+
.map {
|
336
|
+
height: 600px;
|
337
|
+
}
|
338
|
+
}
|
339
|
+
|
340
|
+
.btn {
|
341
|
+
text-transform: uppercase;
|
342
|
+
font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
343
|
+
font-weight: 400;
|
344
|
+
-webkit-transition: all 0.3s ease-in-out;
|
345
|
+
-moz-transition: all 0.3s ease-in-out;
|
346
|
+
transition: all 0.3s ease-in-out;
|
347
|
+
}
|
348
|
+
|
349
|
+
.btn-default {
|
350
|
+
border: 1px solid #219ab3;
|
351
|
+
color: #219ab3;
|
352
|
+
background-color: transparent;
|
353
|
+
}
|
354
|
+
|
355
|
+
.btn-default:hover,
|
356
|
+
.btn-default:focus {
|
357
|
+
border: 1px solid #219ab3;
|
358
|
+
outline: 0;
|
359
|
+
color: #000000;
|
360
|
+
background-color: #219ab3;
|
361
|
+
}
|
362
|
+
|
363
|
+
footer {
|
364
|
+
padding: 50px 0;
|
365
|
+
}
|
366
|
+
|
367
|
+
footer p {
|
368
|
+
margin: 0;
|
369
|
+
}
|
370
|
+
|
371
|
+
body {
|
372
|
+
webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
|
373
|
+
}
|
374
|
+
|
375
|
+
/* Author: cbaclig */
|
376
|
+
|
377
|
+
dd {
|
378
|
+
white-space: pre-line;
|
379
|
+
}
|
380
|
+
|
381
|
+
.thumbnail.thumbnail-hotel {
|
382
|
+
padding: 0;
|
383
|
+
border-radius: 0;
|
384
|
+
}
|
385
|
+
|
386
|
+
.thumbnail.thumbnail-hotel .caption {
|
387
|
+
padding-top: 35px;
|
388
|
+
}
|
389
|
+
|
390
|
+
.thumbnail.thumbnail-hotel .caption h4 {
|
391
|
+
margin-bottom: 0;
|
392
|
+
}
|
393
|
+
|
394
|
+
.thumbnail.thumbnail-portrait .caption h4 {
|
395
|
+
margin-top: 10px;
|
396
|
+
margin-bottom: 10px;
|
397
|
+
}
|
398
|
+
|
399
|
+
.thumbnail.thumbnail-portrait {
|
400
|
+
padding: 0;
|
401
|
+
border: none;
|
402
|
+
margin-bottom: 0;
|
403
|
+
img {
|
404
|
+
height: 500px;
|
405
|
+
object-fit: cover;
|
406
|
+
}
|
407
|
+
}
|
408
|
+
|
409
|
+
.billboard {
|
410
|
+
display: table;
|
411
|
+
width: 100%;
|
412
|
+
height: 300px;
|
413
|
+
text-align: center;
|
414
|
+
color: #fff;
|
415
|
+
text-shadow: black 2px 2px 10px;
|
416
|
+
background-color: #000000;
|
417
|
+
background-repeat: no-repeat;
|
418
|
+
background-position: top center;
|
419
|
+
-webkit-background-size: cover;
|
420
|
+
-moz-background-size: cover;
|
421
|
+
background-size: cover;
|
422
|
+
-o-background-size: cover;
|
423
|
+
position: relative;
|
424
|
+
}
|
425
|
+
|
426
|
+
.billboard-header {
|
427
|
+
/* Height of nav + 2px bottom border*/
|
428
|
+
margin-top: 52px;
|
429
|
+
height: 175px;
|
430
|
+
}
|
431
|
+
|
432
|
+
.billboard-text {
|
433
|
+
position: absolute;
|
434
|
+
top: 50%;
|
435
|
+
margin-top: -0.5em;
|
436
|
+
height: 1em;
|
437
|
+
text-align: center;
|
438
|
+
width: 100%;
|
439
|
+
letter-spacing: 0.1em;
|
440
|
+
font-size: 40px;
|
441
|
+
}
|
442
|
+
|
443
|
+
@media (min-width: 767px) {
|
444
|
+
.billboard {
|
445
|
+
height: 400px;
|
446
|
+
}
|
447
|
+
|
448
|
+
.billboard-header {
|
449
|
+
height: 300px;
|
450
|
+
}
|
451
|
+
|
452
|
+
.billboard-text {
|
453
|
+
font-size: 80px;
|
454
|
+
}
|
455
|
+
}
|
456
|
+
|
457
|
+
@media (min-width: 992px) {
|
458
|
+
/*
|
459
|
+
Only allow background-attachment: fixed for desktop-ish sizes
|
460
|
+
https://twitter.com/paul_irish/status/306818591196602368
|
461
|
+
*/
|
462
|
+
.billboard {
|
463
|
+
background-attachment: fixed;
|
464
|
+
}
|
465
|
+
.billboard-header {
|
466
|
+
background-attachment: scroll;
|
467
|
+
}
|
468
|
+
}
|
469
|
+
|
470
|
+
.billboard-wall {
|
471
|
+
background-position: center center;
|
472
|
+
background-image: url(../img/wall.jpg);
|
473
|
+
}
|
474
|
+
|
475
|
+
.billboard-stairs {
|
476
|
+
background-position: center center;
|
477
|
+
background-image: url(../img/stairs.jpg);
|
478
|
+
}
|
479
|
+
|
480
|
+
.billboard-skyline {
|
481
|
+
background-position: center -17em;
|
482
|
+
background-image: url(../img/skyline.jpg);
|
483
|
+
}
|
484
|
+
|
485
|
+
.billboard-bridge-walk {
|
486
|
+
background-position: center top;
|
487
|
+
background-image: url(../img/bridge-walk.jpg);
|
488
|
+
}
|
489
|
+
|
490
|
+
.billboard-ramp-walk {
|
491
|
+
background-position: center center;
|
492
|
+
background-image: url(../img/ramp-walk.jpg);
|
493
|
+
}
|
494
|
+
|
495
|
+
.billboard-river-smile {
|
496
|
+
background-position: center center;
|
497
|
+
background-image: url(../img/river-smile.jpg);
|
498
|
+
}
|
499
|
+
|
500
|
+
@media (min-width: 767px) {
|
501
|
+
.billboard-wall {
|
502
|
+
background-position: center -170px;
|
503
|
+
}
|
504
|
+
|
505
|
+
.billboard-bridge-walk {
|
506
|
+
background-position: center -160px;
|
507
|
+
}
|
508
|
+
|
509
|
+
.billboard-stairs {
|
510
|
+
background-position: center -185px;
|
511
|
+
}
|
512
|
+
|
513
|
+
.billboard-ramp-walk {
|
514
|
+
background-position: center -190px;
|
515
|
+
}
|
516
|
+
|
517
|
+
.floating-info {
|
518
|
+
position: fixed;
|
519
|
+
bottom: 40px;
|
520
|
+
right: 40px;
|
521
|
+
}
|
522
|
+
|
523
|
+
.floating-button {
|
524
|
+
display: block;
|
525
|
+
background: white;
|
526
|
+
width: 40px;
|
527
|
+
height: 40px;
|
528
|
+
line-height: 40px;
|
529
|
+
border-radius: 50%;
|
530
|
+
text-align: center;
|
531
|
+
color: #aaa;
|
532
|
+
font-family: Raleway;
|
533
|
+
box-shadow: #777 1px 1px 4px;
|
534
|
+
opacity: 0.3;
|
535
|
+
}
|
536
|
+
|
537
|
+
.floating-button:hover {
|
538
|
+
opacity: 1;
|
539
|
+
}
|
540
|
+
|
541
|
+
.navbar-custom.top-nav-collapse .modal-link.notify a {
|
542
|
+
color: #8d5f9e;
|
543
|
+
}
|
544
|
+
|
545
|
+
.modal-link .modal-link--icon {
|
546
|
+
display: none;
|
547
|
+
}
|
548
|
+
|
549
|
+
.modal-link.notify .modal-link--icon {
|
550
|
+
display: block;
|
551
|
+
position: absolute;
|
552
|
+
top: 10px;
|
553
|
+
right: 2px;
|
554
|
+
}
|
555
|
+
}
|
556
|
+
|
557
|
+
.rsvp-form {
|
558
|
+
.input-group {
|
559
|
+
padding: 10px;
|
560
|
+
}
|
561
|
+
|
562
|
+
.help-text {
|
563
|
+
opacity: .8;
|
564
|
+
}
|
565
|
+
}
|
566
|
+
|
567
|
+
.portraits-container {
|
568
|
+
display: flex;
|
569
|
+
justify-content: space-around;
|
570
|
+
flex-wrap: wrap;
|
571
|
+
.portrait {
|
572
|
+
padding: 20px;
|
573
|
+
}
|
574
|
+
}
|
575
|
+
|
576
|
+
.faq-answer {
|
577
|
+
margin-left: 3rem;
|
578
|
+
}
|
579
|
+
|
580
|
+
footer.site-footer {
|
581
|
+
padding: 5px 10px;
|
582
|
+
background-color: #e0e2e4;
|
583
|
+
color: #7b7b7b;
|
584
|
+
left: 0;
|
585
|
+
bottom: 0;
|
586
|
+
width: 100%;
|
587
|
+
text-align: right;
|
588
|
+
p {
|
589
|
+
font-size: 11pt;
|
590
|
+
}
|
591
|
+
a {
|
592
|
+
color: #118da7;
|
593
|
+
}
|
594
|
+
}
|
595
|
+
|
596
|
+
.add-to-calendar-checkbox {
|
597
|
+
border: 1px solid #bfb9b9;
|
598
|
+
border-radius: 3px;
|
599
|
+
padding: 5px;
|
600
|
+
box-shadow: #e4e4e4 2px 2px 2px;
|
601
|
+
cursor: pointer;
|
602
|
+
}
|