tessellate 0.1.1

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.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +120 -0
  4. data/_config.yml +24 -0
  5. data/_includes/contact_form.html +42 -0
  6. data/_includes/footer.html +31 -0
  7. data/_includes/header.html +40 -0
  8. data/_layouts/page.html +35 -0
  9. data/_layouts/section_one.html +39 -0
  10. data/_layouts/section_three.html +36 -0
  11. data/_layouts/section_two.html +44 -0
  12. data/assets/css/fontawesome-all.min.css +9 -0
  13. data/assets/css/images/arrow.svg +4 -0
  14. data/assets/css/images/bgbl.svg +21 -0
  15. data/assets/css/images/bgtr.svg +21 -0
  16. data/assets/css/images/dark-arrow.svg +4 -0
  17. data/assets/css/images/ie/content-style1.svg +10 -0
  18. data/assets/css/images/ie/content-style2.svg +10 -0
  19. data/assets/css/images/ie/content-style3.svg +10 -0
  20. data/assets/css/images/overlay.png +0 -0
  21. data/assets/css/main.css +1524 -0
  22. data/assets/js/breakpoints.min.js +2 -0
  23. data/assets/js/browser.min.js +2 -0
  24. data/assets/js/jquery.min.js +2 -0
  25. data/assets/js/jquery.scrolly.min.js +2 -0
  26. data/assets/js/main.js +30 -0
  27. data/assets/js/util.js +587 -0
  28. data/assets/sass/libs/_breakpoints.scss +223 -0
  29. data/assets/sass/libs/_functions.scss +90 -0
  30. data/assets/sass/libs/_html-grid.scss +149 -0
  31. data/assets/sass/libs/_mixins.scss +78 -0
  32. data/assets/sass/libs/_vars.scss +22 -0
  33. data/assets/sass/libs/_vendor.scss +376 -0
  34. data/assets/sass/main.scss +1274 -0
  35. data/assets/webfonts/fa-brands-400.eot +0 -0
  36. data/assets/webfonts/fa-brands-400.svg +3717 -0
  37. data/assets/webfonts/fa-brands-400.ttf +0 -0
  38. data/assets/webfonts/fa-brands-400.woff +0 -0
  39. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  40. data/assets/webfonts/fa-regular-400.eot +0 -0
  41. data/assets/webfonts/fa-regular-400.svg +801 -0
  42. data/assets/webfonts/fa-regular-400.ttf +0 -0
  43. data/assets/webfonts/fa-regular-400.woff +0 -0
  44. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  45. data/assets/webfonts/fa-solid-900.eot +0 -0
  46. data/assets/webfonts/fa-solid-900.svg +5034 -0
  47. data/assets/webfonts/fa-solid-900.ttf +0 -0
  48. data/assets/webfonts/fa-solid-900.woff +0 -0
  49. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  50. data/assets/webfonts/fa-v4compatibility.ttf +0 -0
  51. data/assets/webfonts/fa-v4compatibility.woff2 +0 -0
  52. metadata +107 -0
@@ -0,0 +1,1274 @@
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("fontawesome-all.min.css");
8
+ @import url("https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic");
9
+
10
+ /*
11
+ Tessellate 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: ( 1281px, 1680px ),
20
+ normal: ( 1001px, 1280px ),
21
+ narrow: ( 737px, 1000px ),
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
+ @-ms-viewport {
99
+ width: device-width;
100
+ }
101
+
102
+ // Set box model to border-box.
103
+ // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
104
+ html {
105
+ box-sizing: border-box;
106
+ }
107
+
108
+ *, *:before, *:after {
109
+ box-sizing: inherit;
110
+ }
111
+
112
+ body {
113
+ background: #F8F8F8;
114
+ font-family: 'Roboto', sans-serif;
115
+ font-weight: 300;
116
+ font-size: 17pt;
117
+ line-height: 1.75em;
118
+ color: #888;
119
+ -webkit-text-stroke: 0.1px;
120
+
121
+ // Stops initial animations until page loads.
122
+ &.is-preload {
123
+ *, *:before, *:after {
124
+ @include vendor('animation', 'none !important');
125
+ @include vendor('transition', 'none !important');
126
+ }
127
+ }
128
+
129
+ }
130
+
131
+ .dark {
132
+ color: #aaa;
133
+ color: rgba(255, 255, 255, 0.65);
134
+ }
135
+
136
+ input, textarea, select {
137
+ font-family: 'Roboto', sans-serif;
138
+ font-weight: 300;
139
+ font-size: 17pt;
140
+ line-height: 1.75em;
141
+ color: #888;
142
+ -webkit-text-stroke: 0.1px;
143
+ }
144
+
145
+ h1, h2, h3, h4, h5, h6 {
146
+ color: #666;
147
+ margin: 0 0 1em 0;
148
+ font-weight: 100;
149
+ line-height: 1.5em;
150
+ }
151
+
152
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
153
+ color: inherit;
154
+ text-decoration: none;
155
+ }
156
+
157
+ .dark {
158
+ h1, h2, h3, h4, h5, h6 {
159
+ color: #fff;
160
+ }
161
+ }
162
+
163
+ strong, b {
164
+ font-weight: 400;
165
+ color: inherit;
166
+ }
167
+
168
+ .dark {
169
+ strong, b {
170
+ color: #fff;
171
+ color: rgba(255, 255, 255, 0.85);
172
+ }
173
+ }
174
+
175
+ em, i {
176
+ font-style: italic;
177
+ }
178
+
179
+ a {
180
+ @include vendor('transition', 'border-bottom-color 0.25s ease-in-out');
181
+ color: inherit;
182
+ text-decoration: none;
183
+ border-bottom: dotted 1px rgba(0, 0, 0, 0.25);
184
+
185
+ &:hover {
186
+ border-bottom-color: rgba(0, 0, 0, 0);
187
+ }
188
+ }
189
+
190
+ .dark a {
191
+ color: #fff;
192
+ border-bottom-color: rgba(255, 255, 255, 0.5);
193
+
194
+ &:hover {
195
+ border-bottom-color: rgba(255, 255, 255, 0);
196
+ }
197
+ }
198
+
199
+ sub {
200
+ position: relative;
201
+ top: 0.5em;
202
+ font-size: 0.8em;
203
+ }
204
+
205
+ sup {
206
+ position: relative;
207
+ top: -0.5em;
208
+ font-size: 0.8em;
209
+ }
210
+
211
+ hr {
212
+ border: 0;
213
+ border-top: solid 1px #e6e6e6;
214
+ margin: 2em 0 2em 0;
215
+ }
216
+
217
+ .dark hr {
218
+ border-top-color: rgba(255, 255, 255, 0.5);
219
+ }
220
+
221
+ blockquote {
222
+ border-left: solid 0.25em #e6e6e6;
223
+ padding: 1em 0 1em 2em;
224
+ font-style: italic;
225
+ }
226
+
227
+ .dark blockquote {
228
+ border-left-color: rgba(255, 255, 255, 0.5);
229
+ }
230
+
231
+ p, ul, ol, dl, table {
232
+ margin-bottom: 1em;
233
+ }
234
+
235
+ p {
236
+ text-align: justify;
237
+ }
238
+
239
+ header {
240
+ margin-bottom: 1em;
241
+
242
+ h1, h2, h3, h4, h5, h6 {
243
+ margin: 0;
244
+ }
245
+
246
+ p {
247
+ display: block;
248
+ margin: 0;
249
+ padding: 0.25em 0 0.5em 0;
250
+ }
251
+ }
252
+
253
+ footer {
254
+ padding-top: 1.5em;
255
+ }
256
+
257
+ br.clear {
258
+ clear: both;
259
+ }
260
+
261
+ .featured {
262
+ text-align: center;
263
+
264
+ p {
265
+ text-align: center;
266
+ }
267
+ }
268
+
269
+ /* Container */
270
+
271
+ .container {
272
+ margin: 0 auto;
273
+ max-width: 100%;
274
+ width: 1360px;
275
+
276
+ &.medium {
277
+ width: (1360px * 0.75);
278
+ }
279
+
280
+ @include breakpoint('<=wide') {
281
+ width: 1200px;
282
+
283
+ &.medium {
284
+ width: (1200px * 0.75);
285
+ }
286
+ }
287
+
288
+ @include breakpoint('<=normal') {
289
+ width: 960px;
290
+
291
+ &.medium {
292
+ width: (960px * 0.75);
293
+ }
294
+ }
295
+
296
+ @include breakpoint('<=narrow') {
297
+ width: 100% !important;
298
+ }
299
+ }
300
+
301
+ /* Row */
302
+
303
+ .row {
304
+ @include html-grid((50px, 50px));
305
+
306
+ @include breakpoint('<=wide') {
307
+ @include html-grid((40px, 40px), 'wide');
308
+ }
309
+
310
+ @include breakpoint('<=normal') {
311
+ @include html-grid((30px, 30px), 'normal');
312
+ }
313
+
314
+ @include breakpoint('<=narrow') {
315
+ @include html-grid((25px, 25px), 'narrow');
316
+ }
317
+
318
+ @include breakpoint('<=mobile') {
319
+ @include html-grid((20px, 20px), 'mobile');
320
+ }
321
+ }
322
+
323
+ /* Sections/Article */
324
+
325
+ section,
326
+ article {
327
+ margin-bottom: 3em;
328
+
329
+ ul, ol, dl {
330
+ text-align: start;
331
+ display: inline-block;
332
+ }
333
+ }
334
+
335
+ section > :last-child,
336
+ article > :last-child,
337
+ section:last-child,
338
+ article:last-child {
339
+ margin-bottom: 0;
340
+ }
341
+
342
+ .row > {
343
+ section,
344
+ article {
345
+ margin-bottom: 0;
346
+ }
347
+ }
348
+
349
+ /* Image */
350
+
351
+ .image {
352
+ position: relative;
353
+ display: inline-block;
354
+ border: 0;
355
+
356
+ &:after {
357
+ content: '';
358
+ position: absolute;
359
+ left: 0;
360
+ top: 0;
361
+ width: 100%;
362
+ height: 100%;
363
+ background: url('images/overlay.png');
364
+ }
365
+
366
+ img {
367
+ display: block;
368
+ width: 100%;
369
+ border-radius: 0.5em;
370
+ }
371
+
372
+ &.featured {
373
+ display: block;
374
+ width: 100%;
375
+ margin: 0 0 2em 0;
376
+ }
377
+
378
+ &.fit {
379
+ display: block;
380
+ width: 100%;
381
+ }
382
+
383
+ &.left {
384
+ float: left;
385
+ margin: 0 2em 2em 0;
386
+ }
387
+
388
+ &.centered {
389
+ display: block;
390
+ margin: 0 0 2em 0;
391
+
392
+ img {
393
+ margin: 0 auto;
394
+ width: auto;
395
+ }
396
+ }
397
+ }
398
+
399
+ /* List */
400
+
401
+ ul {
402
+ list-style: disc;
403
+ padding-left: 1em;
404
+
405
+ li {
406
+ padding-left: 0.5em;
407
+ }
408
+ }
409
+
410
+ ol {
411
+ list-style: decimal;
412
+ padding-left: 1.25em;
413
+
414
+ li {
415
+ padding-left: 0.25em;
416
+ }
417
+ }
418
+
419
+ /* Icons */
420
+
421
+ ul.icons {
422
+ cursor: default;
423
+ list-style: none;
424
+ padding-left: 0;
425
+
426
+ li {
427
+ display: inline-block;
428
+ padding-left: 0.75em;
429
+ }
430
+
431
+ a {
432
+ @include vendor('transition', 'background-color 0.25s ease-in-out');
433
+ display: inline-block;
434
+ width: 2.75em;
435
+ height: 2.75em;
436
+ line-height: 2.8em;
437
+ text-align: center;
438
+ border: 0;
439
+ box-shadow: inset 0 0 0 1px #e6e6e6;
440
+ border-radius: 100%;
441
+ color: #aaa;
442
+
443
+ &:hover {
444
+ background: rgba(0, 0, 0, 0.025);
445
+ }
446
+ }
447
+ }
448
+
449
+ /* Menu */
450
+
451
+ ul.menu {
452
+ cursor: default;
453
+ list-style: none;
454
+ padding-left: 0;
455
+
456
+ li {
457
+ display: inline-block;
458
+ line-height: 1em;
459
+ border-left: solid 1px #e6e6e6;
460
+ padding: 0 0 0 0.5em;
461
+ margin: 0 0 0 0.5em;
462
+
463
+ &:first-child {
464
+ border-left: 0;
465
+ padding-left: 0;
466
+ margin-left: 0;
467
+ }
468
+ }
469
+ }
470
+
471
+ /* Actions */
472
+
473
+ ul.actions {
474
+ @include vendor('display', 'flex');
475
+ cursor: default;
476
+ list-style: none;
477
+ margin-left: -1em;
478
+ padding-left: 0;
479
+
480
+ li {
481
+ padding: 0 0 0 1em;
482
+ vertical-align: middle;
483
+ }
484
+
485
+ &.special {
486
+ @include vendor('justify-content', 'center');
487
+ width: 100%;
488
+ margin-left: 0;
489
+
490
+ li {
491
+ &:first-child {
492
+ padding-left: 0;
493
+ }
494
+ }
495
+ }
496
+
497
+ &.stacked {
498
+ @include vendor('flex-direction', 'column');
499
+ margin-left: 0;
500
+
501
+ li {
502
+ padding: 1.25em 0 0 0;
503
+
504
+ &:first-child {
505
+ padding-top: 0;
506
+ }
507
+ }
508
+ }
509
+
510
+ &.fit {
511
+ width: calc(100% + 1em);
512
+
513
+ li {
514
+ @include vendor('flex-grow', '1');
515
+ @include vendor('flex-shrink', '1');
516
+ width: 100%;
517
+
518
+ > * {
519
+ width: 100%;
520
+ }
521
+ }
522
+
523
+ &.stacked {
524
+ width: 100%;
525
+ }
526
+ }
527
+
528
+ @include breakpoint('<=narrow') {
529
+ @include vendor('justify-content', 'center');
530
+ width: 100%;
531
+ margin-left: 0;
532
+
533
+ li {
534
+ &:first-child {
535
+ padding-left: 0;
536
+ }
537
+ }
538
+ }
539
+
540
+ @include breakpoint('<=mobile') {
541
+ &:not(.fixed) {
542
+ @include vendor('flex-direction', 'column');
543
+ margin-left: 0;
544
+ width: 100% !important;
545
+
546
+ li {
547
+ @include vendor('flex-grow', '1');
548
+ @include vendor('flex-shrink', '1');
549
+ padding: 1em 0 0 0;
550
+ text-align: center;
551
+ width: 100%;
552
+
553
+ > * {
554
+ width: 100%;
555
+ }
556
+
557
+ &:first-child {
558
+ padding-top: 0;
559
+ }
560
+
561
+ input[type="submit"],
562
+ input[type="reset"],
563
+ input[type="button"],
564
+ button,
565
+ .button {
566
+ width: 100%;
567
+
568
+ &.icon {
569
+ &:before {
570
+ margin-left: -0.5em;
571
+ }
572
+ }
573
+ }
574
+ }
575
+ }
576
+ }
577
+ }
578
+
579
+ /* Form */
580
+
581
+ form {
582
+ .actions {
583
+ margin-bottom: 0;
584
+ }
585
+
586
+ label {
587
+ display: block;
588
+ }
589
+
590
+ input[type="text"],
591
+ input[type="email"],
592
+ input[type="password"],
593
+ select,
594
+ .select,
595
+ textarea {
596
+ @include vendor('transition', 'all 0.25s ease-in-out');
597
+ @include vendor('appearance', 'none');
598
+ display: block;
599
+ box-shadow: inset 0 0 0 1px #e6e6e6;
600
+ background: #f8f8f8;
601
+ width: 100%;
602
+ padding: 0.85em 1em 0.85em 1em;
603
+ border-radius: 0.25em;
604
+ border: 0;
605
+
606
+ &:focus {
607
+ outline: 0;
608
+ box-shadow: inset 0 0 0 1px #afd9e0;
609
+ background: #fcfcfc;
610
+ }
611
+ }
612
+
613
+ input[type="text"],
614
+ input[type="email"],
615
+ input[type="password"],
616
+ select {
617
+ line-height: 1.25em;
618
+ }
619
+
620
+ textarea {
621
+ min-height: 13em;
622
+ }
623
+
624
+ select {
625
+ position: relative;
626
+
627
+ option:not(:checked) {
628
+ color: #000;
629
+ }
630
+ }
631
+
632
+ .select {
633
+ position: relative;
634
+ padding: 0;
635
+ overflow-x: hidden;
636
+ outline: 0;
637
+
638
+ select {
639
+ width: calc(100% + 2em);
640
+ background: none !important;
641
+ box-shadow: none !important;
642
+ border: 0 !important;
643
+ cursor: pointer;
644
+
645
+ &::-moz-focus-inner {
646
+ border: 0;
647
+ outline: 0;
648
+ }
649
+ }
650
+
651
+ &:before {
652
+ content: '';
653
+ position: absolute;
654
+ top: 15%;
655
+ right: 1em;
656
+ width: 1.25em;
657
+ height: 75%;
658
+ background: url('images/arrow.svg') center center no-repeat;
659
+ background-size: contain;
660
+ z-index: 0;
661
+ }
662
+
663
+ select::-ms-expand {
664
+ display: none;
665
+ }
666
+ }
667
+
668
+ ::-moz-focus-inner {
669
+ border: 0;
670
+ }
671
+
672
+ ::-webkit-input-placeholder {
673
+ color: #aaa !important;
674
+ }
675
+
676
+ :-moz-placeholder {
677
+ color: #555 !important;
678
+ }
679
+
680
+ ::-moz-placeholder {
681
+ color: #555 !important;
682
+ }
683
+
684
+ :-ms-input-placeholder {
685
+ color: #555 !important;
686
+ }
687
+ }
688
+
689
+ .dark {
690
+ form {
691
+ input[type="text"],
692
+ input[type="email"],
693
+ input[type="password"],
694
+ select,
695
+ .select,
696
+ textarea {
697
+ background: none;
698
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
699
+ color: #fff;
700
+
701
+ &:focus {
702
+ background: rgba(255, 255, 255, 0.1);
703
+ box-shadow: inset 0 0 0 1px #fff;
704
+ }
705
+ }
706
+
707
+ .select {
708
+ &:before {
709
+ background: url('images/dark-arrow.svg') center center no-repeat;
710
+ background-size: contain;
711
+ }
712
+ }
713
+
714
+ .formerize-placeholder {
715
+ color: #aaa !important;
716
+ color: rgba(255, 255, 255, 0.85) !important;
717
+ }
718
+
719
+ ::-webkit-input-placeholder {
720
+ color: rgba(255, 255, 255, 0.85) !important;
721
+ }
722
+
723
+ :-moz-placeholder {
724
+ color: rgba(255, 255, 255, 0.85) !important;
725
+ }
726
+
727
+ ::-moz-placeholder {
728
+ color: rgba(255, 255, 255, 0.85) !important;
729
+ }
730
+
731
+ :-ms-input-placeholder {
732
+ color: rgba(255, 255, 255, 0.85) !important;
733
+ }
734
+ }
735
+ }
736
+
737
+ /* Table */
738
+
739
+ table {
740
+ width: 100%;
741
+
742
+ &.default {
743
+ width: 100%;
744
+ border-collapse: collapse;
745
+
746
+ tbody {
747
+ tr {
748
+ border: solid 1px #e6e6e6;
749
+
750
+ &:nth-child(2n+2) {
751
+ background: #f8f8f8;
752
+ }
753
+ }
754
+ }
755
+
756
+ td {
757
+ padding: 0.5em 1em 0.5em 1em;
758
+ }
759
+
760
+ th {
761
+ text-align: left;
762
+ padding: 0.5em 1em 1em 1em;
763
+ }
764
+
765
+ tfoot {
766
+ td {
767
+ padding-top: 1em;
768
+ }
769
+ }
770
+ }
771
+ }
772
+
773
+ .dark {
774
+ table {
775
+ &.default {
776
+ tbody {
777
+ tr {
778
+ border-color: rgba(255, 255, 255, 0.5);
779
+
780
+ &:nth-child(2n+2) {
781
+ background: rgba(255, 255, 255, 0.1);
782
+ }
783
+ }
784
+ }
785
+ }
786
+ }
787
+ }
788
+
789
+ /* Button */
790
+
791
+ input[type="button"],
792
+ input[type="submit"],
793
+ input[type="reset"],
794
+ button,
795
+ .button {
796
+ @include vendor('transition', 'all 0.25s ease-in-out');
797
+ -webkit-appearance: none;
798
+ position: relative;
799
+ display: inline-block;
800
+ background: #3d3d3d;
801
+ padding: 0.85em 3em 0.85em 3em;
802
+ border-radius: 0.25em;
803
+ cursor: pointer;
804
+ border: 0;
805
+ color: #fff;
806
+ text-align: center;
807
+ text-decoration: none;
808
+
809
+ &:hover {
810
+ background: #4f4f4f;
811
+ }
812
+
813
+ &.alt {
814
+ color: inherit;
815
+ box-shadow: inset 0 0 0 1px #e6e6e6;
816
+ background: none;
817
+
818
+ &:hover {
819
+ background: rgba(0, 0, 0, 0.025);
820
+ }
821
+ }
822
+ }
823
+
824
+ .dark {
825
+ input[type="button"],
826
+ input[type="submit"],
827
+ input[type="reset"],
828
+ button,
829
+ .button {
830
+ background: rgba(255, 255, 255, 0.15);
831
+ box-shadow: inset 0 0 0 1px #fff;
832
+ color: #fff;
833
+
834
+ &:hover {
835
+ background: rgba(255, 255, 255, 0.25);
836
+ }
837
+
838
+ &.alt {
839
+ background: none;
840
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
841
+
842
+ &:hover {
843
+ background: rgba(255, 255, 255, 0.15);
844
+ box-shadow: inset 0 0 0 1px #fff;
845
+ }
846
+ }
847
+ }
848
+ }
849
+
850
+ /* Feature Icon */
851
+
852
+ .feature-icon {
853
+ display: inline-block;
854
+ position: relative;
855
+ padding-bottom: 5em;
856
+ margin-bottom: 2.75em;
857
+ cursor: default;
858
+
859
+ .icon {
860
+ display: inline-block;
861
+ width: 2em;
862
+ height: 2em;
863
+ font-size: 4.5em;
864
+ border-radius: 100%;
865
+ box-shadow: inset 0 0 0 1px #666;
866
+ color: #666;
867
+ line-height: 2em;
868
+ }
869
+
870
+ &:before {
871
+ content: '';
872
+ background: #666;
873
+ position: absolute;
874
+ bottom: 0;
875
+ left: 50%;
876
+ margin-left: -0.325em;
877
+ width: 0.65em;
878
+ height: 0.65em;
879
+ display: block;
880
+ border-radius: 100%;
881
+ }
882
+
883
+ &:after {
884
+ content: '';
885
+ position: absolute;
886
+ left: 50%;
887
+ bottom: 0.65em;
888
+ width: 1px;
889
+ height: 4.35em;
890
+ background: #666;
891
+ margin-left: -0.5px;
892
+ }
893
+ }
894
+
895
+ .dark {
896
+ .feature-icon {
897
+ .icon {
898
+ background: rgba(255, 255, 255, 0.15);
899
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
900
+ color: #fff;
901
+ }
902
+
903
+ &:before,
904
+ &:after {
905
+ background: rgba(255, 255, 255, 0.5);
906
+ }
907
+ }
908
+ }
909
+
910
+ /* Icons */
911
+
912
+ .icon {
913
+ @include icon;
914
+ text-decoration: none;
915
+
916
+ &:before {
917
+ line-height: inhreit;
918
+ }
919
+
920
+ > .label {
921
+ display: none;
922
+ }
923
+
924
+ &.solid {
925
+ &:before {
926
+ font-weight: 900;
927
+ }
928
+ }
929
+
930
+ &.brands {
931
+ &:before {
932
+ font-family: 'Font Awesome 6 Brands';
933
+ }
934
+ }
935
+ }
936
+
937
+ /* Header */
938
+
939
+ #header {
940
+ position: relative;
941
+ margin: 0;
942
+ background-image: url('images/overlay.png'), url('../../images/header.jpg');
943
+ background-size: auto, cover;
944
+ background-position: top left, center center;
945
+ background-repeat: repeat, no-repeat;
946
+ padding: 14em 0 14em 0;
947
+ text-align: center;
948
+ color: #fff;
949
+
950
+ header {
951
+ h1 {
952
+ font-size: 2.25em;
953
+ line-height: 1.25em;
954
+ margin-bottom: 0;
955
+ }
956
+
957
+ p {
958
+ margin-top: 1.25em;
959
+ font-weight: 100;
960
+ padding: 0;
961
+ font-size: 1.25em;
962
+ line-height: 1.5em;
963
+ text-align: center;
964
+ }
965
+ }
966
+
967
+ footer {
968
+ padding-top: 1.5em;
969
+ }
970
+ }
971
+
972
+ /* Main Sections */
973
+
974
+ .main {
975
+ position: relative;
976
+ margin: 0;
977
+
978
+ > header {
979
+ background: #fff;
980
+ text-align: center;
981
+ padding: 5em 0 5em 0;
982
+ margin: 0;
983
+
984
+ h2 {
985
+ font-size: 2.25em;
986
+ font-weight: 100;
987
+ margin-bottom: 0;
988
+ }
989
+
990
+ p {
991
+ margin: 2em 0 0 0;
992
+ padding: 0;
993
+ text-align: center;
994
+ }
995
+ }
996
+
997
+ > .content {
998
+ padding: 6em 0 6em 0;
999
+
1000
+ h3 {
1001
+ font-size: 1.5em;
1002
+ }
1003
+
1004
+ &.dark {
1005
+ background: #433;
1006
+ }
1007
+
1008
+ &.style1 {
1009
+ background: url('images/bgtr.svg') top right no-repeat, url('images/bgbl.svg') bottom left no-repeat, url('images/bgbl.svg') bottom left no-repeat, url('images/overlay.png'), linear-gradient(45deg, #b39c68, #a56365, #412e4c);
1010
+ }
1011
+
1012
+ &.style2 {
1013
+ background: url('images/bgtr.svg') top right no-repeat, url('images/bgbl.svg') bottom left no-repeat, url('images/overlay.png'), linear-gradient(45deg, #384955, #655361, #85505f);
1014
+ }
1015
+
1016
+ &.style3 {
1017
+ background: url('images/bgtr.svg') top right no-repeat, url('images/bgbl.svg') bottom left no-repeat, url('images/overlay.png'), linear-gradient(45deg, #5f796b, #3a4e59, #2f394e);
1018
+ }
1019
+
1020
+ &.style4 {
1021
+ padding-top: 0;
1022
+ background: #fff;
1023
+ }
1024
+ }
1025
+ }
1026
+
1027
+ /* Footer */
1028
+
1029
+ #footer {
1030
+ position: relative;
1031
+ margin: 0;
1032
+ text-align: center;
1033
+ padding: 4em 0 8em 0;
1034
+ box-shadow: inset 0 1px 0 0 #e6e6e6;
1035
+
1036
+ .copyright {
1037
+ margin-top: 3em;
1038
+ font-size: 0.8em;
1039
+ color: #aaa;
1040
+
1041
+ a {
1042
+ color: inherit;
1043
+ }
1044
+ }
1045
+
1046
+ ul {
1047
+ &.icons {
1048
+ a {
1049
+ box-shadow: inset 0 0 0 1px #d6d6d6;
1050
+ }
1051
+ }
1052
+ }
1053
+ }
1054
+
1055
+ /* Wide */
1056
+
1057
+ @include breakpoint('<=wide') {
1058
+
1059
+ /* Basic */
1060
+
1061
+ body, input, textarea, select {
1062
+ font-size: 15pt;
1063
+ line-height: 1.75em;
1064
+ }
1065
+
1066
+ }
1067
+
1068
+ /* Normal */
1069
+
1070
+ @include breakpoint('<=normal') {
1071
+
1072
+ /* Basic */
1073
+
1074
+ body, input, textarea, select {
1075
+ font-size: 13pt;
1076
+ line-height: 1.65em;
1077
+ }
1078
+
1079
+ /* Feature Icon */
1080
+
1081
+ .feature-icon {
1082
+ margin-bottom: 2em;
1083
+ }
1084
+
1085
+ /* Header */
1086
+
1087
+ #header {
1088
+ padding: 12em 0 12em 0;
1089
+ }
1090
+
1091
+ /* Main Sections */
1092
+
1093
+ .main {
1094
+ > header {
1095
+ padding: 4em 0 4em 0;
1096
+ }
1097
+
1098
+ > .content {
1099
+ padding: 4em 0 4em 0;
1100
+ }
1101
+ }
1102
+
1103
+ }
1104
+
1105
+ /* Narrow */
1106
+
1107
+ @include breakpoint('<=narrow') {
1108
+
1109
+ /* Basic */
1110
+
1111
+ header, footer, h2, h3, h4, h5, h6, header > p {
1112
+ text-align: center;
1113
+ }
1114
+
1115
+ /* Sections/Article */
1116
+
1117
+ section, article {
1118
+ margin: 0 0 2.5em 0 !important;
1119
+ }
1120
+
1121
+ .row > {
1122
+ section, article {
1123
+ margin: 0 0 2.5em 0 !important;
1124
+ }
1125
+ }
1126
+
1127
+ /* Table */
1128
+
1129
+ .table-wrapper {
1130
+ width: 100%;
1131
+ overflow-x: scroll;
1132
+ padding-left: 1px;
1133
+ -webkit-overflow-scrolling: touch;
1134
+ }
1135
+
1136
+ /* Header */
1137
+
1138
+ #header {
1139
+ margin: 0 !important;
1140
+ padding: 8em 2em 8em 2em;
1141
+
1142
+ header p {
1143
+ margin-top: 1em;
1144
+ }
1145
+
1146
+ footer {
1147
+ padding-top: 1.25em;
1148
+ }
1149
+ }
1150
+
1151
+ /* Main Sections */
1152
+
1153
+ .main {
1154
+ margin: 0 !important;
1155
+
1156
+ > header {
1157
+ padding: 3.5em 2em 3.5em 2em;
1158
+
1159
+ h2 {
1160
+ font-size: 1.85em;
1161
+ }
1162
+
1163
+ br {
1164
+ display: none;
1165
+ }
1166
+
1167
+ p {
1168
+ margin: 1.5em 0 0 0;
1169
+ }
1170
+ }
1171
+
1172
+ > .content {
1173
+ padding: 3.5em 20px 3.5em 20px;
1174
+
1175
+ > .container > :last-child {
1176
+ margin-bottom: 0 !important;
1177
+ }
1178
+ }
1179
+ }
1180
+
1181
+ /* Footer */
1182
+
1183
+ #footer {
1184
+ margin: 0 !important;
1185
+ padding: 3em 0 3em 0;
1186
+
1187
+ .copyright {
1188
+ margin-top: 2em;
1189
+ }
1190
+ }
1191
+
1192
+ }
1193
+
1194
+ /* Mobile */
1195
+
1196
+ @include breakpoint('<=mobile') {
1197
+
1198
+ /* Basic */
1199
+
1200
+ body, input, textarea, select {
1201
+ font-size: 11pt;
1202
+ }
1203
+
1204
+ /* Sections/Article */
1205
+
1206
+ section, article {
1207
+ margin: 0 0 1.5em 0 !important;
1208
+ }
1209
+
1210
+ .row > {
1211
+ section, article {
1212
+ margin: 0 0 1.5em 0 !important;
1213
+ }
1214
+ }
1215
+
1216
+ /* Button */
1217
+
1218
+ .button {
1219
+ padding-left: 0;
1220
+ padding-right: 0;
1221
+ width: 100%;
1222
+ max-width: 24em;
1223
+ }
1224
+
1225
+ /* Icons */
1226
+
1227
+ ul.icons {
1228
+ li {
1229
+ padding-left: 0.35em;
1230
+ }
1231
+ }
1232
+
1233
+ /* Menu */
1234
+
1235
+ ul.menu {
1236
+ li {
1237
+ border: 0;
1238
+ padding: 0;
1239
+ display: block;
1240
+ margin: 1em 0 1em 0;
1241
+ }
1242
+ }
1243
+
1244
+ /* Header */
1245
+
1246
+ #header {
1247
+ padding: 6em 20px 6em 20px;
1248
+
1249
+ > header {
1250
+ padding: 0 1em 0 1em;
1251
+ }
1252
+ }
1253
+
1254
+ /* Main Sections */
1255
+
1256
+ .main {
1257
+ > header {
1258
+ padding: 3em 20px 3em 20px;
1259
+
1260
+ h2 {
1261
+ font-size: 1.5em;
1262
+ }
1263
+ }
1264
+
1265
+ > .content {
1266
+ padding: 3em 20px 3em 20px;
1267
+
1268
+ h3 {
1269
+ font-size: 1.25em;
1270
+ }
1271
+ }
1272
+ }
1273
+
1274
+ }