jekyll-theme-overflow 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +63 -0
  3. data/README.md +149 -0
  4. data/_articles/1_article.md +14 -0
  5. data/_articles/2_article.md +14 -0
  6. data/_articles/3_portfolio.md +25 -0
  7. data/_articles/4_contact.md +24 -0
  8. data/_includes/banner.html +12 -0
  9. data/_includes/footer.html +42 -0
  10. data/_includes/head.html +7 -0
  11. data/_includes/header.html +10 -0
  12. data/_includes/scripts.html +8 -0
  13. data/_layouts/default.html +24 -0
  14. data/_layouts/page.html +22 -0
  15. data/_layouts/post.html +5 -0
  16. data/_sass/libs/_breakpoints.scss +223 -0
  17. data/_sass/libs/_functions.scss +90 -0
  18. data/_sass/libs/_html-grid.scss +149 -0
  19. data/_sass/libs/_mixins.scss +63 -0
  20. data/_sass/libs/_vars.scss +22 -0
  21. data/_sass/libs/_vendor.scss +376 -0
  22. data/_sass/main.scss +1426 -0
  23. data/_sass/noscript.scss +25 -0
  24. data/assets/css/font-awesome.min.css +4 -0
  25. data/assets/css/images/arrow.svg +11 -0
  26. data/assets/css/images/banner.svg +54 -0
  27. data/assets/css/images/loader.gif +0 -0
  28. data/assets/css/images/overlay.png +0 -0
  29. data/assets/css/images/poptrox-closer.svg +6 -0
  30. data/assets/css/images/poptrox-nav.svg +6 -0
  31. data/assets/css/main.css +2631 -0
  32. data/assets/css/noscript.css +19 -0
  33. data/assets/fonts/FontAwesome.otf +0 -0
  34. data/assets/fonts/fontawesome-webfont.eot +0 -0
  35. data/assets/fonts/fontawesome-webfont.svg +2671 -0
  36. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  37. data/assets/fonts/fontawesome-webfont.woff +0 -0
  38. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  39. data/assets/images/bg-alt.jpg +0 -0
  40. data/assets/images/bg.jpg +0 -0
  41. data/assets/images/fulls/01.jpg +0 -0
  42. data/assets/images/fulls/02.jpg +0 -0
  43. data/assets/images/fulls/03.jpg +0 -0
  44. data/assets/images/fulls/04.jpg +0 -0
  45. data/assets/images/fulls/05.jpg +0 -0
  46. data/assets/images/fulls/06.jpg +0 -0
  47. data/assets/images/fulls/07.jpg +0 -0
  48. data/assets/images/fulls/08.jpg +0 -0
  49. data/assets/images/pic01.jpg +0 -0
  50. data/assets/images/pic02.jpg +0 -0
  51. data/assets/images/screenshot.jpg +0 -0
  52. data/assets/images/thumbs/01.jpg +0 -0
  53. data/assets/images/thumbs/02.jpg +0 -0
  54. data/assets/images/thumbs/03.jpg +0 -0
  55. data/assets/images/thumbs/04.jpg +0 -0
  56. data/assets/images/thumbs/05.jpg +0 -0
  57. data/assets/images/thumbs/06.jpg +0 -0
  58. data/assets/images/thumbs/07.jpg +0 -0
  59. data/assets/images/thumbs/08.jpg +0 -0
  60. data/assets/js/breakpoints.min.js +2 -0
  61. data/assets/js/browser.min.js +2 -0
  62. data/assets/js/jquery.min.js +2 -0
  63. data/assets/js/jquery.poptrox.min.js +2 -0
  64. data/assets/js/jquery.scrolly.min.js +2 -0
  65. data/assets/js/main.js +105 -0
  66. data/assets/js/util.js +587 -0
  67. metadata +151 -0
data/_sass/main.scss ADDED
@@ -0,0 +1,1426 @@
1
+ @import 'libs/vars';
2
+ @import 'libs/functions';
3
+ @import 'libs/mixins';
4
+ @import 'libs/vendor';
5
+ @import 'libs/breakpoints';
6
+ @import 'libs/html-grid';
7
+ @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,600');
8
+ @import url('font-awesome.min.css');
9
+
10
+ /*
11
+ Overflow by HTML5 UP
12
+ html5up.net | @ajlkn
13
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
14
+ */
15
+
16
+ // Breakpoints.
17
+
18
+ @include breakpoints((
19
+ wide: ( 1081px, 1680px ),
20
+ normal: ( 841px, 1080px ),
21
+ narrow: ( 737px, 840px ),
22
+ mobile: ( null, 736px )
23
+ ));
24
+
25
+ // Reset.
26
+ // Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
27
+
28
+ html, body, div, span, applet, object,
29
+ iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
30
+ pre, a, abbr, acronym, address, big, cite,
31
+ code, del, dfn, em, img, ins, kbd, q, s, samp,
32
+ small, strike, strong, sub, sup, tt, var, b,
33
+ u, i, center, dl, dt, dd, ol, ul, li, fieldset,
34
+ form, label, legend, table, caption, tbody,
35
+ tfoot, thead, tr, th, td, article, aside,
36
+ canvas, details, embed, figure, figcaption,
37
+ footer, header, hgroup, menu, nav, output, ruby,
38
+ section, summary, time, mark, audio, video {
39
+ margin: 0;
40
+ padding: 0;
41
+ border: 0;
42
+ font-size: 100%;
43
+ font: inherit;
44
+ vertical-align: baseline;
45
+ }
46
+
47
+ article, aside, details, figcaption, figure,
48
+ footer, header, hgroup, menu, nav, section {
49
+ display: block;
50
+ }
51
+
52
+ body {
53
+ line-height: 1;
54
+ }
55
+
56
+ ol, ul {
57
+ list-style:none;
58
+ }
59
+
60
+ blockquote, q {
61
+ quotes: none;
62
+
63
+ &:before,
64
+ &:after {
65
+ content: '';
66
+ content: none;
67
+ }
68
+ }
69
+
70
+ table {
71
+ border-collapse: collapse;
72
+ border-spacing: 0;
73
+ }
74
+
75
+ body {
76
+ -webkit-text-size-adjust: none;
77
+ }
78
+
79
+ mark {
80
+ background-color: transparent;
81
+ color: inherit;
82
+ }
83
+
84
+ input::-moz-focus-inner {
85
+ border: 0;
86
+ padding: 0;
87
+ }
88
+
89
+ input, select, textarea {
90
+ -moz-appearance: none;
91
+ -webkit-appearance: none;
92
+ -ms-appearance: none;
93
+ appearance: none;
94
+ }
95
+
96
+ /* Basic */
97
+
98
+ // Set box model to border-box.
99
+ // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
100
+ html {
101
+ box-sizing: border-box;
102
+ }
103
+
104
+ *, *:before, *:after {
105
+ box-sizing: inherit;
106
+ }
107
+
108
+ body {
109
+ background-color: #183026;
110
+ background-image: url('images/overlay.png'), url('../images/bg.jpg');
111
+ background-repeat: repeat, no-repeat;
112
+ background-size: auto, cover;
113
+ background-position: top left, center 0;
114
+ background-attachment: fixed, fixed;
115
+ font-family: 'Source Sans Pro', sans-serif;
116
+ font-size: 18pt;
117
+ line-height: 1.75em;
118
+ font-weight: 300;
119
+ letter-spacing: 1px;
120
+ color: #3a3939;
121
+ text-shadow: 0 0 0.5px rgba(58, 57, 57, 0.25);
122
+ -webkit-text-stroke: 0.25px;
123
+
124
+ &.is-scroll {
125
+ background-attachment: scroll, scroll;
126
+ background-size: auto, 100% auto;
127
+ }
128
+
129
+ // Stops initial animations until page loads.
130
+ &.is-preload {
131
+ *, *:before, *:after {
132
+ @include vendor('animation', 'none !important');
133
+ @include vendor('transition', 'none !important');
134
+ }
135
+ }
136
+
137
+ }
138
+
139
+ input, textarea, select {
140
+ font-family: 'Source Sans Pro', sans-serif;
141
+ font-size: 18pt;
142
+ line-height: 1.75em;
143
+ font-weight: 300;
144
+ letter-spacing: 1px;
145
+ color: #3a3939;
146
+ text-shadow: 0 0 0.5px rgba(58, 57, 57, 0.25);
147
+ -webkit-text-stroke: 0.25px;
148
+ }
149
+
150
+ h1, h2, h3, h4, h5, h6 {
151
+ font-weight: 400;
152
+ text-transform: uppercase;
153
+ line-height: 1.75em;
154
+ }
155
+
156
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
157
+ color: inherit;
158
+ text-decoration: none;
159
+ }
160
+
161
+ h2 {
162
+ font-size: 1.25em;
163
+ letter-spacing: 8px;
164
+ }
165
+
166
+ h3 {
167
+ font-size: 1em;
168
+ letter-spacing: 5px;
169
+ }
170
+
171
+ strong, b {
172
+ font-weight: 400;
173
+ }
174
+
175
+ em, i {
176
+ font-style: italic;
177
+ }
178
+
179
+ a {
180
+ @include vendor('transition', ('border-color 0.35s ease-in-out', 'color 0.35s ease-in-out'));
181
+ color: #35b88f;
182
+ text-shadow: 0 0 0.5px rgba(53, 184, 143, 0.25);
183
+ text-decoration: none;
184
+ border-bottom: dotted 1px rgba(53, 184, 143, 0.5);
185
+
186
+ &:hover {
187
+ border-bottom-color: rgba(53, 184, 143, 0);
188
+ }
189
+ }
190
+
191
+ sub {
192
+ position: relative;
193
+ top: 0.5em;
194
+ font-size: 0.8em;
195
+ }
196
+
197
+ sup {
198
+ position: relative;
199
+ top: -0.5em;
200
+ font-size: 0.8em;
201
+ }
202
+
203
+ hr {
204
+ border: 0;
205
+ border-top: solid 1px #dad9d9;
206
+ margin: 2em 0 2em 0;
207
+ }
208
+
209
+ blockquote {
210
+ border-left: solid 0.5em #eae9e9;
211
+ padding: 1em 0 1em 2em;
212
+ font-style: italic;
213
+ }
214
+
215
+ p, ul, ol, dl, table {
216
+ margin-bottom: 1em;
217
+ }
218
+
219
+ header {
220
+ margin-bottom: 1em;
221
+
222
+ p {
223
+ display: block;
224
+ margin: 0.5em 0 0 0;
225
+ padding: 0 0 1.5em 0;
226
+ }
227
+ }
228
+
229
+ footer {
230
+ margin-top: 1em;
231
+ }
232
+
233
+ br.clear {
234
+ clear: both;
235
+ }
236
+
237
+ /* Container */
238
+
239
+ .container {
240
+ margin: 0 auto;
241
+ max-width: 100%;
242
+ width: 1140px;
243
+
244
+ @include breakpoint('<=wide') {
245
+ width: 960px;
246
+ }
247
+
248
+ @include breakpoint('<=normal') {
249
+ width: 95%;
250
+ }
251
+ }
252
+
253
+ /* Row */
254
+
255
+ .row {
256
+ @include html-grid((40px, 40px));
257
+
258
+ @include breakpoint('<=wide') {
259
+ @include html-grid((40px, 40px), 'wide');
260
+ }
261
+
262
+ @include breakpoint('<=normal') {
263
+ @include html-grid((40px, 40px), 'normal');
264
+ }
265
+
266
+ @include breakpoint('<=narrow') {
267
+ @include html-grid((30px, 30px), 'narrow');
268
+ }
269
+
270
+ @include breakpoint('<=mobile') {
271
+ @include html-grid((20px, 20px), 'mobile');
272
+ }
273
+ }
274
+
275
+ /* Sections/Article */
276
+
277
+ section, article {
278
+ margin-bottom: 3em;
279
+ }
280
+
281
+ section > :last-child,
282
+ article > :last-child,
283
+ section:last-child,
284
+ article:last-child {
285
+ margin-bottom: 0;
286
+ }
287
+
288
+ .row > {
289
+ section, article {
290
+ margin-bottom: 0;
291
+ }
292
+ }
293
+
294
+ /* Image */
295
+
296
+ .image {
297
+ display: inline-block;
298
+ border: 0;
299
+
300
+ img {
301
+ display: block;
302
+ width: 100%;
303
+ }
304
+
305
+ &.featured {
306
+ display: block;
307
+ width: 100%;
308
+ margin: 0 0 2em 0;
309
+ }
310
+
311
+ &.fit {
312
+ display: block;
313
+ width: 100%;
314
+ }
315
+
316
+ &.left {
317
+ float: left;
318
+ margin: 0 2em 2em 0;
319
+ }
320
+
321
+ &.centered {
322
+ display: block;
323
+ margin: 0 0 2em 0;
324
+
325
+ img {
326
+ margin: 0 auto;
327
+ width: auto;
328
+ }
329
+ }
330
+ }
331
+
332
+ /* List */
333
+
334
+ ul {
335
+ list-style: disc;
336
+ padding-left: 1em;
337
+
338
+ li {
339
+ padding-left: 1.5em;
340
+ margin-top: 1.5em;
341
+
342
+ &:first-child {
343
+ margin-top: 0;
344
+ }
345
+ }
346
+ }
347
+
348
+ ol {
349
+ list-style: decimal;
350
+ padding-left: 1.25em;
351
+
352
+ li {
353
+ padding-left: 1.25em;
354
+ margin-top: 1.5em;
355
+ }
356
+ }
357
+
358
+ /* Icons */
359
+
360
+ ul.icons {
361
+ cursor: default;
362
+ list-style: none;
363
+ padding-left: 0;
364
+
365
+ li {
366
+ display: inline-block;
367
+ padding-left: 0;
368
+ margin-top: 0;
369
+ }
370
+
371
+ a {
372
+ display: inline-block;
373
+ width: 2.5em;
374
+ height: 2.5em;
375
+ line-height: 2.5em;
376
+ text-align: center;
377
+ border: 0;
378
+ }
379
+ }
380
+
381
+ /* Menu */
382
+
383
+ ul.menu {
384
+ cursor: default;
385
+ list-style: none;
386
+ padding-left: 0;
387
+
388
+ li {
389
+ display: inline-block;
390
+ line-height: 1em;
391
+ border-left: solid 1px #dad9d9;
392
+ padding: 0 0 0 0.5em;
393
+ margin: 0 0 0 0.5em;
394
+
395
+ &:first-child {
396
+ border-left: 0;
397
+ padding-left: 0;
398
+ margin-left: 0;
399
+ }
400
+ }
401
+ }
402
+
403
+ /* Actions */
404
+
405
+ ul.actions {
406
+ cursor: default;
407
+ list-style: none;
408
+ padding-left: 0;
409
+
410
+ li {
411
+ display: inline-block;
412
+ margin: 0 0 0 0.5em;
413
+ padding-left: 0;
414
+ margin-top: 0;
415
+
416
+ &:first-child {
417
+ margin-left: 0;
418
+ }
419
+ }
420
+ }
421
+
422
+ /* Form */
423
+
424
+ form {
425
+ label {
426
+ display: block;
427
+ margin: 0 0 0.5em 0;
428
+ }
429
+
430
+ input[type="text"],
431
+ input[type="email"],
432
+ input[type="password"],
433
+ select,
434
+ textarea {
435
+ @include vendor('transition', 'background-color 0.35s ease-in-out');
436
+ -webkit-appearance: none;
437
+ display: block;
438
+ border: 0;
439
+ background: #f1f1f1;
440
+ width: 100%;
441
+ padding: 0.75em;
442
+
443
+ &:focus {
444
+ background-color: #f8f8f8;
445
+ }
446
+ }
447
+
448
+ input[type="text"],
449
+ input[type="email"],
450
+ input[type="password"],
451
+ select {
452
+ line-height: 1em;
453
+ }
454
+
455
+ select {
456
+ background-size: 1.25em;
457
+ background-repeat: no-repeat;
458
+ background-position: calc(100% - 1em) center;
459
+ padding-right: 1.25em;
460
+ text-overflow: ellipsis;
461
+ background-image: svg-url("<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'><path d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='#5a5959' /></svg>");
462
+
463
+ option {
464
+ color: #3a3939;
465
+ background: #ffffff;
466
+ }
467
+
468
+ &:focus {
469
+ &::-ms-value {
470
+ background-color: transparent;
471
+ }
472
+ }
473
+
474
+ &::-ms-expand {
475
+ display: none;
476
+ }
477
+ }
478
+
479
+ textarea {
480
+ min-height: 12em;
481
+ }
482
+
483
+ ::-webkit-input-placeholder {
484
+ color: #5a5959 !important;
485
+ }
486
+
487
+ :-moz-placeholder {
488
+ color: #5a5959 !important;
489
+ }
490
+
491
+ ::-moz-placeholder {
492
+ color: #5a5959 !important;
493
+ }
494
+
495
+ :-ms-input-placeholder {
496
+ color: #5a5959 !important;
497
+ }
498
+
499
+ ::-moz-focus-inner {
500
+ border: 0;
501
+ }
502
+
503
+ ul {
504
+ &.actions {
505
+ margin-bottom: 0;
506
+ text-align: center;
507
+ }
508
+ }
509
+ }
510
+
511
+ /* Table */
512
+
513
+ .table-wrapper {
514
+ width: 100%;
515
+ overflow-x: auto;
516
+ -webkit-overflow-scrolling: touch;
517
+ }
518
+
519
+ table {
520
+ width: 100%;
521
+
522
+ tbody {
523
+ tr {
524
+ border-top: solid 1px #eae9e9;
525
+
526
+ &:first-child {
527
+ border-top: 0;
528
+ }
529
+ }
530
+ }
531
+
532
+ td {
533
+ padding: 0.75em 1.25em 0.75em 1.25em;
534
+ }
535
+
536
+ th {
537
+ text-align: left;
538
+ font-weight: 400;
539
+ padding: 0.75em 1.25em 0.75em 1.25em;
540
+ }
541
+
542
+ thead {
543
+ background: #f5f5f5;
544
+ }
545
+ }
546
+
547
+ /* Button */
548
+
549
+ input[type="button"],
550
+ input[type="submit"],
551
+ input[type="reset"],
552
+ button,
553
+ .button {
554
+ @include vendor('transition', ('background-color 0.35s ease-in-out', 'color 0.35s ease-in-out'));
555
+ -webkit-appearance: none;
556
+ position: relative;
557
+ display: inline-block;
558
+ border: 0;
559
+ background: #35b88f;
560
+ color: #fff;
561
+ text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
562
+ cursor: pointer;
563
+ text-decoration: none;
564
+ outline: 0;
565
+ padding: 1em 3em 1em 3em;
566
+ text-align: center;
567
+ border-radius: 3em;
568
+ font-weight: 400;
569
+
570
+ &:hover {
571
+ background: #45c89f;
572
+ }
573
+
574
+ &.style2 {
575
+ color: #3a3939;
576
+ background: #fff;
577
+ box-shadow: inset 0 0 0 1px #fff;
578
+
579
+ &:hover {
580
+ background: rgba(255, 255, 255, 0.1);
581
+ color: #fff !important;
582
+ text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25) !important;
583
+ }
584
+ }
585
+
586
+ &.style3 {
587
+ background: none;
588
+ color: #3a3939;
589
+ box-shadow: inset 0 0 0 1px #dad9d9;
590
+
591
+ &:hover {
592
+ background: rgba(58, 57, 57, 0.025);
593
+ }
594
+ }
595
+ }
596
+
597
+ /* Box */
598
+
599
+ .box {
600
+ position: relative;
601
+ margin-top: 9em;
602
+ margin-bottom: 0;
603
+
604
+ &:after {
605
+ content: '';
606
+ display: block;
607
+ position: absolute;
608
+ top: -9em;
609
+ left: 50%;
610
+ height: 9em;
611
+ border-left: solid 1px #fff;
612
+ }
613
+
614
+ &:before {
615
+ content: '';
616
+ display: block;
617
+ width: 90px;
618
+ height: 66px;
619
+ position: absolute;
620
+ left: 50%;
621
+ top: -4.5em;
622
+ margin-left: -45px;
623
+ margin-top: -33px;
624
+ background: url('images/arrow.svg') no-repeat;
625
+ }
626
+
627
+ :last-child {
628
+ margin-bottom: 0;
629
+ }
630
+
631
+ &.style1 {
632
+ background: #fff;
633
+ padding: 3em;
634
+
635
+ .image {
636
+ display: block;
637
+ position: absolute;
638
+ top: 0;
639
+ width: 50%;
640
+ height: 100%;
641
+ background: #152E33;
642
+ overflow: hidden;
643
+
644
+ img {
645
+ position: absolute;
646
+ top: 0;
647
+ height: 100%;
648
+ width: auto;
649
+ }
650
+ }
651
+
652
+ .inner {
653
+ > :last-child {
654
+ margin: 0;
655
+ }
656
+ }
657
+
658
+ &.right {
659
+ .image {
660
+ left: 0;
661
+
662
+ img {
663
+ right: 0;
664
+ }
665
+ }
666
+
667
+ .inner {
668
+ margin-left: 50%;
669
+ padding-left: 3em;
670
+ }
671
+ }
672
+
673
+ &.left {
674
+ .image {
675
+ right: 0;
676
+
677
+ img {
678
+ left: 0;
679
+ }
680
+ }
681
+
682
+ .inner {
683
+ margin-right: 50%;
684
+ padding-right: 3em;
685
+ }
686
+ }
687
+ }
688
+
689
+ &.style2 {
690
+ text-align: center;
691
+
692
+ header {
693
+ display: inline-block;
694
+ background: #fff;
695
+ padding: 2em 3em 2em 3em;
696
+ margin: 0;
697
+
698
+ p {
699
+ padding: 0;
700
+ }
701
+ }
702
+
703
+ .inner {
704
+ position: relative;
705
+ padding: 40px 0 0px 0;
706
+
707
+ &:after {
708
+ content: '';
709
+ display: block;
710
+ position: absolute;
711
+ top: 0;
712
+ left: 50%;
713
+ height: 100%;
714
+ border-left: solid 1px #fff;
715
+ }
716
+
717
+ .row {
718
+ position: relative;
719
+
720
+ &:before {
721
+ content: '';
722
+ display: block;
723
+ position: absolute;
724
+ top: 50%;
725
+ left: 20px;
726
+ width: calc(100% - 40px);
727
+ border-bottom: solid 1px #fff;
728
+ }
729
+ }
730
+
731
+ .image {
732
+ position: relative;
733
+ z-index: 1;
734
+ padding: 20px;
735
+ }
736
+ }
737
+ }
738
+
739
+ &.style3 {
740
+ background: #fff;
741
+ padding: 3em;
742
+
743
+ header {
744
+ text-align: center;
745
+ }
746
+ }
747
+ }
748
+
749
+ /* Icons */
750
+
751
+ .icon {
752
+ text-decoration: none;
753
+
754
+ &:before {
755
+ display: inline-block;
756
+ font-family: FontAwesome;
757
+ font-size: 1.25em;
758
+ text-decoration: none;
759
+ font-style: normal;
760
+ font-weight: normal;
761
+ line-height: 1;
762
+ -webkit-font-smoothing: antialiased;
763
+ -moz-osx-font-smoothing: grayscale;
764
+ }
765
+
766
+ > .label {
767
+ display: none;
768
+ }
769
+ }
770
+
771
+ /* Header */
772
+
773
+ #header {
774
+ @include vendor('transition', 'opacity 2s ease-in-out');
775
+ position: relative;
776
+ color: #fff;
777
+ text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
778
+ text-align: center;
779
+ margin: 0;
780
+ padding: 14em 0 14em 0;
781
+ cursor: default;
782
+
783
+ header {
784
+ display: inline-block;
785
+ padding: 0 0 4.5em 0;
786
+
787
+ h1 {
788
+ font-weight: 600;
789
+ font-size: 2em;
790
+ letter-spacing: 10px;
791
+ }
792
+
793
+ p {
794
+ border-top: solid 1px rgba(255, 255, 255, 0.5);
795
+ color: rgba(255, 255, 255, 0.75);
796
+ text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.1875);
797
+ font-size: 1em;
798
+ text-transform: uppercase;
799
+ letter-spacing: 3px;
800
+ padding: 0;
801
+ margin-top: 0.35em;
802
+
803
+ &:before {
804
+ content: '';
805
+ display: block;
806
+ border-top: solid 1px rgba(255, 255, 255, 0.5);
807
+ margin: 4px 0 0.8em 0;
808
+ }
809
+ }
810
+ }
811
+
812
+ footer {
813
+ @include vendor('transition', (
814
+ 'opacity 2s ease-in-out',
815
+ 'transform 1s ease-in-out'
816
+ ));
817
+ @include vendor('transition-delay', '1.25s');
818
+ position: absolute;
819
+ bottom: 9em;
820
+ margin: 0;
821
+ width: 100%;
822
+
823
+ &:after {
824
+ content: '';
825
+ display: block;
826
+ position: absolute;
827
+ bottom: -9em;
828
+ left: 50%;
829
+ height: 9em;
830
+ border-left: solid 1px #fff;
831
+ }
832
+
833
+ &:before {
834
+ content: '';
835
+ display: block;
836
+ width: 90px;
837
+ height: 66px;
838
+ position: absolute;
839
+ left: 50%;
840
+ bottom: -4.5em;
841
+ margin-left: -45px;
842
+ margin-bottom: -33px;
843
+ background: url('images/arrow.svg') no-repeat;
844
+ }
845
+ }
846
+
847
+ body.is-preload & {
848
+ opacity: 0;
849
+
850
+ footer {
851
+ @include vendor('transform', 'translateY(1em)');
852
+ opacity: 0;
853
+ }
854
+ }
855
+ }
856
+
857
+ /* Banner */
858
+
859
+ #banner {
860
+ position: relative;
861
+ color: #fff;
862
+ text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
863
+ text-align: center;
864
+ background: #35b88f url('images/banner.svg') bottom center no-repeat;
865
+ padding: 5em 0 5em 0;
866
+ margin: 0;
867
+ background-size: 125% auto;
868
+
869
+ .button {
870
+ color: #35b882;
871
+ text-shadow: 0 0 0.5px rgba(53, 184, 130, 0.25);
872
+ }
873
+
874
+ header {
875
+ margin: 0 0 2em 0;
876
+
877
+ h2 {
878
+ font-weight: 400;
879
+ font-size: 1.75em;
880
+ letter-spacing: 8px;
881
+ }
882
+ }
883
+
884
+ p {
885
+ margin: 0;
886
+ }
887
+
888
+ footer {
889
+ margin: 2em 0 0 0;
890
+ }
891
+
892
+ a {
893
+ color: inherit;
894
+ border-bottom-color: rgba(255, 255, 255, 0.5);
895
+
896
+ &:hover {
897
+ border-bottom-color: rgba(255, 255, 255, 0);
898
+ }
899
+ }
900
+ }
901
+
902
+ /* Footer */
903
+
904
+ #footer {
905
+ position: relative;
906
+ color: #fff;
907
+ text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
908
+ text-align: center;
909
+ margin: 4.5em 0 0 0;
910
+
911
+ &:after {
912
+ content: '';
913
+ display: block;
914
+ position: absolute;
915
+ top: -4.5em;
916
+ left: 50%;
917
+ height: 4.5em;
918
+ border-left: solid 1px #fff;
919
+ }
920
+
921
+ a {
922
+ color: #fff;
923
+ text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
924
+ border-bottom-color: rgba(255, 255, 255, 0.5);
925
+
926
+ &:hover {
927
+ color: #35b88f;
928
+ text-shadow: 0 0 0.5px rgba(69, 200, 159, 0.25);
929
+ border-bottom-color: rgba(53, 184, 143, 0.5);
930
+ }
931
+ }
932
+
933
+ .icons {
934
+ padding: 0.75em 2em 0.75em 2em;
935
+ border-radius: 3em;
936
+ border: solid 1px #fff;
937
+ display: inline-block;
938
+ margin: 0 0 3em 0;
939
+ }
940
+
941
+ .copyright {
942
+ margin: 0 0 9em 0;
943
+ font-size: 0.8em;
944
+ }
945
+ }
946
+
947
+ /* Poptrox */
948
+
949
+ .poptrox-popup {
950
+ @include vendor('box-sizing', 'content-box');
951
+ background: #fff;
952
+ padding-bottom: 3em;
953
+
954
+ .loader {
955
+ width: 48px;
956
+ height: 48px;
957
+ background: url('images/loader.gif');
958
+ position: absolute;
959
+ top: 50%;
960
+ left: 50%;
961
+ margin: -24px 0 0 -24px;
962
+ }
963
+
964
+ .caption {
965
+ position: absolute;
966
+ bottom: 0;
967
+ left: 0;
968
+ background: #fff;
969
+ width: 100%;
970
+ height: 3em;
971
+ line-height: 3em;
972
+ text-align: center;
973
+ cursor: default;
974
+ z-index: 1;
975
+ }
976
+
977
+ .nav-next,
978
+ .nav-previous {
979
+ @include vendor('transition', 'opacity 0.5s ease-in-out');
980
+ position: absolute;
981
+ top: 0;
982
+ width: 50%;
983
+ height: 100%;
984
+ opacity: 0;
985
+ cursor: pointer;
986
+ background: rgba(0, 0, 0, 0.01);
987
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
988
+
989
+ &:before {
990
+ content: '';
991
+ position: absolute;
992
+ width: 96px;
993
+ height: 64px;
994
+ background: url('images/poptrox-nav.svg');
995
+ top: calc(50% - 1.5em);
996
+ margin: -32px 0 0 0;
997
+ }
998
+ }
999
+
1000
+ &:hover {
1001
+ .nav-next,
1002
+ .nav-previous {
1003
+ opacity: 0.5;
1004
+
1005
+ &:hover {
1006
+ opacity: 1.0;
1007
+ }
1008
+ }
1009
+ }
1010
+
1011
+ .nav-next {
1012
+ right: 0;
1013
+
1014
+ &:before {
1015
+ right: 0;
1016
+ }
1017
+ }
1018
+
1019
+ .nav-previous {
1020
+ left: 0;
1021
+
1022
+ &:before {
1023
+ @include vendor('transform', 'scaleX(-1)');
1024
+ left: 0;
1025
+ -ms-filter: "FlipH";
1026
+ filter: FlipH;
1027
+ }
1028
+ }
1029
+
1030
+ .closer {
1031
+ @include vendor('transition', 'opacity 0.5s ease-in-out');
1032
+ position: absolute;
1033
+ top: 0;
1034
+ right: 0;
1035
+ width: 64px;
1036
+ height: 64px;
1037
+ text-indent: -9999px;
1038
+ z-index: 2;
1039
+ opacity: 0;
1040
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
1041
+
1042
+ &:before {
1043
+ @include vendor('transition', 'background-color 0.5s ease-in-out');
1044
+ content: '';
1045
+ display: block;
1046
+ position: absolute;
1047
+ right: 16px;
1048
+ top: 16px;
1049
+ width: 40px;
1050
+ height: 40px;
1051
+ border-radius: 100%;
1052
+ box-shadow: inset 0 0 0 1px #fff;
1053
+ background: rgba(255, 255, 255, 0.1) url('images/poptrox-closer.svg') center center;
1054
+ color: #fff !important;
1055
+ }
1056
+ }
1057
+
1058
+ &:hover {
1059
+ .closer {
1060
+ opacity: 0.5;
1061
+
1062
+ &:hover {
1063
+ opacity: 1.0;
1064
+ }
1065
+ }
1066
+ }
1067
+ }
1068
+
1069
+ /* Wide */
1070
+
1071
+ @include breakpoint('<=wide') {
1072
+
1073
+ /* Basic */
1074
+
1075
+ body, input, textarea, select {
1076
+ font-size: 16pt;
1077
+ }
1078
+
1079
+ /* Header */
1080
+
1081
+ #header {
1082
+ padding: 10em 0 12em 0;
1083
+ }
1084
+
1085
+ }
1086
+
1087
+ /* Normal */
1088
+
1089
+ @include breakpoint('<=normal') {
1090
+
1091
+ /* Banner */
1092
+
1093
+ #banner {
1094
+ padding: 4em 0 4em 0;
1095
+ background-size: auto, 175% auto;
1096
+ }
1097
+
1098
+ /* Header */
1099
+
1100
+ #header {
1101
+ padding: 8em 0 10em 0;
1102
+ }
1103
+
1104
+ }
1105
+
1106
+ /* Narrow */
1107
+
1108
+ @include breakpoint('<=narrow') {
1109
+
1110
+ /* Basic */
1111
+
1112
+ body {
1113
+ background-color: #203936;
1114
+ background-image: url('images/overlay.png'), url('../images/bg-alt.jpg');
1115
+ background-repeat: repeat, no-repeat;
1116
+ background-size: auto, 100% auto;
1117
+ background-position: top left, top center;
1118
+ background-attachment: scroll, scroll;
1119
+ font-size: 14pt;
1120
+ }
1121
+
1122
+ input, textarea, select {
1123
+ font-size: 14pt;
1124
+ }
1125
+
1126
+ h1, h2, h3, h4, h5, h6 {
1127
+ line-height: 1.5em;
1128
+ }
1129
+
1130
+ header {
1131
+ p {
1132
+ margin: 0.25em 0 0 0;
1133
+ padding: 0 0 0.5em 0;
1134
+ }
1135
+ }
1136
+
1137
+ /* Box */
1138
+ .box {
1139
+ position: relative;
1140
+
1141
+ section {
1142
+ margin: 0 0 2em 0;
1143
+ }
1144
+
1145
+ &.style1 {
1146
+ padding: 2.5em 2em 2.5em 2em;
1147
+
1148
+ &.right {
1149
+ .inner {
1150
+ padding-left: 2em;
1151
+ }
1152
+ }
1153
+
1154
+ &.left {
1155
+ .inner {
1156
+ padding-right: 2em;
1157
+ }
1158
+ }
1159
+ }
1160
+
1161
+ &.style2 {
1162
+
1163
+ header {
1164
+ padding: 2em;
1165
+ }
1166
+
1167
+ .inner {
1168
+ position: relative;
1169
+ padding: 30px 0 0 0;
1170
+ }
1171
+ }
1172
+
1173
+ &.style3 {
1174
+ padding: 2.5em 2em 2.5em 2em;
1175
+ }
1176
+ }
1177
+
1178
+ /* Header */
1179
+
1180
+ #header {
1181
+ padding: 10em 0 12em 0;
1182
+ }
1183
+
1184
+ /* Banner */
1185
+
1186
+ #banner {
1187
+ padding: 3.5em;
1188
+ background-size: 200% auto;
1189
+
1190
+ br {
1191
+ display: none;
1192
+ }
1193
+ }
1194
+
1195
+ }
1196
+
1197
+ /* Mobile */
1198
+
1199
+ @include breakpoint('<=mobile') {
1200
+
1201
+ /* Basic */
1202
+
1203
+ * {
1204
+ text-shadow: none !important;
1205
+ }
1206
+
1207
+ body, input, textarea, select {
1208
+ line-height: 1.5em;
1209
+ font-size: 12pt;
1210
+ letter-spacing: 0;
1211
+ }
1212
+
1213
+ h2, h3, h4, h5, h6 {
1214
+ font-size: 1em;
1215
+ }
1216
+
1217
+ h2 {
1218
+ font-size: 1.25em;
1219
+ letter-spacing: 4px;
1220
+ }
1221
+
1222
+ /* List */
1223
+
1224
+ ul {
1225
+ li {
1226
+ padding-left: 0.5em;
1227
+ }
1228
+ }
1229
+
1230
+ ol {
1231
+ li {
1232
+ padding-left: 0.25em;
1233
+ }
1234
+ }
1235
+
1236
+ /* Icons */
1237
+
1238
+ ul.icons {
1239
+ a {
1240
+ width: 2em;
1241
+ height: 2em;
1242
+ line-height: 2em;
1243
+ }
1244
+ }
1245
+
1246
+ /* Menu */
1247
+
1248
+ ul.menu {
1249
+ li {
1250
+ display: block;
1251
+ padding: 0;
1252
+ border: 0;
1253
+ margin: 1em 0 0 0;
1254
+
1255
+ &:first-child {
1256
+ margin-top: 0;
1257
+ }
1258
+ }
1259
+ }
1260
+
1261
+ /* Actions */
1262
+
1263
+ ul.actions {
1264
+ li {
1265
+ display: block;
1266
+ margin: 1em 0 0 0;
1267
+
1268
+ &:first-child {
1269
+ margin-top: 0;
1270
+ }
1271
+ }
1272
+ }
1273
+
1274
+ /* Button */
1275
+
1276
+ input[type="button"],
1277
+ input[type="submit"],
1278
+ input[type="reset"],
1279
+ button,
1280
+ .button {
1281
+ padding: 0.75em 0 0.75em 0;
1282
+ width: 100%;
1283
+ max-width: 320px;
1284
+ }
1285
+
1286
+ /* Box */
1287
+
1288
+ .box {
1289
+ margin-top: 4.5em;
1290
+
1291
+ &:after {
1292
+ top: -4.5em;
1293
+ height: 4.5em;
1294
+ }
1295
+
1296
+ &:before {
1297
+ width: 45px;
1298
+ height: 33px;
1299
+ top: -2.25em;
1300
+ margin-left: -22.5px;
1301
+ margin-top: -16.5px;
1302
+ background-size: 45px 33px;
1303
+ }
1304
+
1305
+ &.style1 {
1306
+ padding: 0;
1307
+ text-align: center;
1308
+
1309
+ .image {
1310
+ position: relative !important;
1311
+ left: 0 !important;
1312
+ width: 100% !important;
1313
+ height: auto !important;
1314
+
1315
+ img {
1316
+ position: relative;
1317
+ height: auto;
1318
+ width: 100%;
1319
+ }
1320
+ }
1321
+
1322
+ .inner {
1323
+ margin: 0 !important;
1324
+ padding: 2em 1.25em 2em 1.25em !important;
1325
+ }
1326
+ }
1327
+
1328
+ &.style2 {
1329
+ .inner {
1330
+ .row:before {
1331
+ display: none;
1332
+ }
1333
+
1334
+ .image {
1335
+ padding: 0;
1336
+ max-width: 250px;
1337
+ margin: 0 auto 20px auto;
1338
+ }
1339
+ }
1340
+ }
1341
+
1342
+ &.style3 {
1343
+ padding: 2em 1.25em 2em 1.25em;
1344
+ }
1345
+ }
1346
+
1347
+ /* Header */
1348
+ #header {
1349
+ padding: 6em 0 6em 0;
1350
+
1351
+ header {
1352
+ padding-left: 2em;
1353
+ padding-right: 2em;
1354
+
1355
+ h1 {
1356
+ font-size: 1.75em;
1357
+ letter-spacing: 6px;
1358
+ }
1359
+ }
1360
+
1361
+ footer {
1362
+ bottom: 4.5em;
1363
+ padding: 0 2em 0 2em;
1364
+
1365
+ &:after {
1366
+ bottom: -4.5em;
1367
+ left: 50%;
1368
+ height: 4.5em;
1369
+ }
1370
+
1371
+ &:before {
1372
+ width: 45px;
1373
+ height: 33px;
1374
+ bottom: -2.25em;
1375
+ margin-left: -22.5px;
1376
+ margin-bottom: -16.5px;
1377
+ background-size: 45px 33px;
1378
+ }
1379
+ }
1380
+ }
1381
+
1382
+ /* Banner */
1383
+ #banner {
1384
+ padding: 3em 2em 3em 2em;
1385
+ background-size: auto 150%;
1386
+
1387
+ header {
1388
+ margin: 0 0 1em 0;
1389
+
1390
+ h2 {
1391
+ font-size: 1.5em;
1392
+ letter-spacing: 6px;
1393
+ }
1394
+ }
1395
+ }
1396
+
1397
+ /* Footer */
1398
+
1399
+ #footer {
1400
+ .icons {
1401
+ padding: 0.5em 1.25em 0.5em 1.25em;
1402
+ }
1403
+
1404
+ .copyright {
1405
+ font-size: 1em;
1406
+ margin: 0 0 4em 0;
1407
+ }
1408
+ }
1409
+
1410
+ /* Poptrox */
1411
+ .poptrox-popup {
1412
+ .nav-next,
1413
+ .nav-previous {
1414
+ opacity: 1.0;
1415
+
1416
+ &:before {
1417
+ display: none;
1418
+ }
1419
+ }
1420
+
1421
+ .closer {
1422
+ opacity: 0.5;
1423
+ }
1424
+ }
1425
+
1426
+ }