')
373 | .append(i.clone())
374 | .remove()
375 | .html()
376 | .replace(/type="password"/i, 'type="text"')
377 | .replace(/type=password/i, 'type=text')
378 | );
379 |
380 | if (i.attr('id') != '')
381 | x.attr('id', i.attr('id') + '-polyfill-field');
382 |
383 | if (i.attr('name') != '')
384 | x.attr('name', i.attr('name') + '-polyfill-field');
385 |
386 | x.addClass('polyfill-placeholder')
387 | .val(x.attr('placeholder')).insertAfter(i);
388 |
389 | if (i.val() == '')
390 | i.hide();
391 | else
392 | x.hide();
393 |
394 | i
395 | .on('blur', function(event) {
396 |
397 | event.preventDefault();
398 |
399 | var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
400 |
401 | if (i.val() == '') {
402 |
403 | i.hide();
404 | x.show();
405 |
406 | }
407 |
408 | });
409 |
410 | x
411 | .on('focus', function(event) {
412 |
413 | event.preventDefault();
414 |
415 | var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']');
416 |
417 | x.hide();
418 |
419 | i
420 | .show()
421 | .focus();
422 |
423 | })
424 | .on('keypress', function(event) {
425 |
426 | event.preventDefault();
427 | x.val('');
428 |
429 | });
430 |
431 | });
432 |
433 | // Events.
434 | $this
435 | .on('submit', function() {
436 |
437 | $this.find('input[type=text],input[type=password],textarea')
438 | .each(function(event) {
439 |
440 | var i = $(this);
441 |
442 | if (i.attr('name').match(/-polyfill-field$/))
443 | i.attr('name', '');
444 |
445 | if (i.val() == i.attr('placeholder')) {
446 |
447 | i.removeClass('polyfill-placeholder');
448 | i.val('');
449 |
450 | }
451 |
452 | });
453 |
454 | })
455 | .on('reset', function(event) {
456 |
457 | event.preventDefault();
458 |
459 | $this.find('select')
460 | .val($('option:first').val());
461 |
462 | $this.find('input,textarea')
463 | .each(function() {
464 |
465 | var i = $(this),
466 | x;
467 |
468 | i.removeClass('polyfill-placeholder');
469 |
470 | switch (this.type) {
471 |
472 | case 'submit':
473 | case 'reset':
474 | break;
475 |
476 | case 'password':
477 | i.val(i.attr('defaultValue'));
478 |
479 | x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
480 |
481 | if (i.val() == '') {
482 | i.hide();
483 | x.show();
484 | }
485 | else {
486 | i.show();
487 | x.hide();
488 | }
489 |
490 | break;
491 |
492 | case 'checkbox':
493 | case 'radio':
494 | i.attr('checked', i.attr('defaultValue'));
495 | break;
496 |
497 | case 'text':
498 | case 'textarea':
499 | i.val(i.attr('defaultValue'));
500 |
501 | if (i.val() == '') {
502 | i.addClass('polyfill-placeholder');
503 | i.val(i.attr('placeholder'));
504 | }
505 |
506 | break;
507 |
508 | default:
509 | i.val(i.attr('defaultValue'));
510 | break;
511 |
512 | }
513 | });
514 |
515 | });
516 |
517 | return $this;
518 |
519 | };
520 |
521 | /**
522 | * Moves elements to/from the first positions of their respective parents.
523 | * @param {jQuery} $elements Elements (or selector) to move.
524 | * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations.
525 | */
526 | $.prioritize = function($elements, condition) {
527 |
528 | var key = '__prioritize';
529 |
530 | // Expand $elements if it's not already a jQuery object.
531 | if (typeof $elements != 'jQuery')
532 | $elements = $($elements);
533 |
534 | // Step through elements.
535 | $elements.each(function() {
536 |
537 | var $e = $(this), $p,
538 | $parent = $e.parent();
539 |
540 | // No parent? Bail.
541 | if ($parent.length == 0)
542 | return;
543 |
544 | // Not moved? Move it.
545 | if (!$e.data(key)) {
546 |
547 | // Condition is false? Bail.
548 | if (!condition)
549 | return;
550 |
551 | // Get placeholder (which will serve as our point of reference for when this element needs to move back).
552 | $p = $e.prev();
553 |
554 | // Couldn't find anything? Means this element's already at the top, so bail.
555 | if ($p.length == 0)
556 | return;
557 |
558 | // Move element to top of parent.
559 | $e.prependTo($parent);
560 |
561 | // Mark element as moved.
562 | $e.data(key, $p);
563 |
564 | }
565 |
566 | // Moved already?
567 | else {
568 |
569 | // Condition is true? Bail.
570 | if (condition)
571 | return;
572 |
573 | $p = $e.data(key);
574 |
575 | // Move element back to its original location (using our placeholder).
576 | $e.insertAfter($p);
577 |
578 | // Unmark element as moved.
579 | $e.removeData(key);
580 |
581 | }
582 |
583 | });
584 |
585 | };
586 |
587 | })(jQuery);
--------------------------------------------------------------------------------
/assets/sass/base/_page.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Basic */
8 |
9 | // MSIE: Required for IEMobile.
10 | @-ms-viewport {
11 | width: device-width;
12 | }
13 |
14 | // MSIE: Prevents scrollbar from overlapping content.
15 | body {
16 | -ms-overflow-style: scrollbar;
17 | }
18 |
19 | // Ensures page width is always >=320px.
20 | @include breakpoint('<=xsmall') {
21 | html, body {
22 | min-width: 320px;
23 | }
24 | }
25 |
26 | // Set box model to border-box.
27 | // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
28 | html {
29 | box-sizing: border-box;
30 | }
31 |
32 | *, *:before, *:after {
33 | box-sizing: inherit;
34 | }
35 |
36 | body {
37 | background: _palette(bg);
38 |
39 | // Stops initial animations until page loads.
40 | &.is-preload {
41 | *, *:before, *:after {
42 | @include vendor('animation', 'none !important');
43 | @include vendor('transition', 'none !important');
44 | }
45 | }
46 |
47 | }
--------------------------------------------------------------------------------
/assets/sass/base/_reset.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | // Reset.
8 | // Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
9 |
10 | html, body, div, span, applet, object,
11 | iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
12 | pre, a, abbr, acronym, address, big, cite,
13 | code, del, dfn, em, img, ins, kbd, q, s, samp,
14 | small, strike, strong, sub, sup, tt, var, b,
15 | u, i, center, dl, dt, dd, ol, ul, li, fieldset,
16 | form, label, legend, table, caption, tbody,
17 | tfoot, thead, tr, th, td, article, aside,
18 | canvas, details, embed, figure, figcaption,
19 | footer, header, hgroup, menu, nav, output, ruby,
20 | section, summary, time, mark, audio, video {
21 | margin: 0;
22 | padding: 0;
23 | border: 0;
24 | font-size: 100%;
25 | font: inherit;
26 | vertical-align: baseline;
27 | }
28 |
29 | article, aside, details, figcaption, figure,
30 | footer, header, hgroup, menu, nav, section {
31 | display: block;
32 | }
33 |
34 | body {
35 | line-height: 1;
36 | }
37 |
38 | ol, ul {
39 | list-style:none;
40 | }
41 |
42 | blockquote, q {
43 | quotes: none;
44 |
45 | &:before,
46 | &:after {
47 | content: '';
48 | content: none;
49 | }
50 | }
51 |
52 | table {
53 | border-collapse: collapse;
54 | border-spacing: 0;
55 | }
56 |
57 | body {
58 | -webkit-text-size-adjust: none;
59 | }
60 |
61 | mark {
62 | background-color: transparent;
63 | color: inherit;
64 | }
65 |
66 | input::-moz-focus-inner {
67 | border: 0;
68 | padding: 0;
69 | }
70 |
71 | input, select, textarea {
72 | -moz-appearance: none;
73 | -webkit-appearance: none;
74 | -ms-appearance: none;
75 | appearance: none;
76 | }
--------------------------------------------------------------------------------
/assets/sass/base/_typography.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Type */
8 |
9 | body, input, select, textarea {
10 | color: _palette(fg);
11 | font-family: _font(family);
12 | font-size: 16.5pt;
13 | font-weight: _font(weight);
14 | line-height: 1.75;
15 |
16 | @include breakpoint('<=xlarge') {
17 | font-size: 13pt;
18 | }
19 |
20 | @include breakpoint('<=large') {
21 | font-size: 12pt;
22 | }
23 |
24 | @include breakpoint('<=xxsmall') {
25 | font-size: 11pt;
26 | }
27 | }
28 |
29 | a {
30 | @include vendor('transition', (
31 | 'color #{_duration(transition)} ease',
32 | 'border-bottom-color #{_duration(transition)} ease'
33 | ));
34 | border-bottom: dotted 1px _palette(fg-light);
35 | color: inherit;
36 | text-decoration: none;
37 |
38 | &:hover {
39 | border-bottom-color: transparent;
40 | color: _palette(fg-bold);
41 | }
42 | }
43 |
44 | strong, b {
45 | color: _palette(fg-bold);
46 | font-weight: _font(weight-bold);
47 | }
48 |
49 | em, i {
50 | font-style: italic;
51 | }
52 |
53 | p {
54 | margin: 0 0 _size(element-margin) 0;
55 | }
56 |
57 | h1, h2, h3, h4, h5, h6 {
58 | color: _palette(fg-bold);
59 | font-weight: _font(weight-bold);
60 | line-height: 1.5;
61 | margin: 0 0 (_size(element-margin) * 0.25) 0;
62 |
63 | a {
64 | color: inherit;
65 | text-decoration: none;
66 | }
67 | }
68 |
69 | h1 {
70 | font-size: 2.75em;
71 |
72 | &.major {
73 | margin: 0 0 (_size(element-margin) * 0.65) 0;
74 | position: relative;
75 | padding-bottom: 0.35em;
76 |
77 | &:after {
78 | @include vendor('background-image', 'linear-gradient(to right, #{_palette(accent1)}, #{_palette(accent3)})');
79 | @include vendor('transition', 'max-width #{_duration(transition)} ease');
80 | border-radius: 0.2em;
81 | bottom: 0;
82 | content: '';
83 | height: 0.05em;
84 | position: absolute;
85 | right: 0;
86 | width: 100%;
87 | }
88 | }
89 | }
90 |
91 | h2 {
92 | font-size: 1.75em;
93 | }
94 |
95 | h3 {
96 | font-size: 1.1em;
97 | }
98 |
99 | h4 {
100 | font-size: 1em;
101 | }
102 |
103 | h5 {
104 | font-size: 0.8em;
105 | }
106 |
107 | h6 {
108 | font-size: 0.6em;
109 | }
110 |
111 | @include breakpoint('<=small') {
112 | h1 {
113 | font-size: 2em;
114 | }
115 |
116 | h2 {
117 | font-size: 1.25em;
118 | }
119 |
120 | h3 {
121 | font-size: 1em;
122 | }
123 |
124 | h4 {
125 | font-size: 0.8em;
126 | }
127 |
128 | h5 {
129 | font-size: 0.6em;
130 | }
131 |
132 | h6 {
133 | font-size: 0.6em;
134 | }
135 | }
136 |
137 | sub {
138 | font-size: 0.8em;
139 | position: relative;
140 | top: 0.5em;
141 | }
142 |
143 | sup {
144 | font-size: 0.8em;
145 | position: relative;
146 | top: -0.5em;
147 | }
148 |
149 | blockquote {
150 | border-left: solid (_size(border-width) * 4) _palette(border);
151 | font-style: italic;
152 | margin: 0 0 _size(element-margin) 0;
153 | padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
154 | }
155 |
156 | code {
157 | background: _palette(border-bg);
158 | border-radius: _size(border-radius);
159 | border: solid _size(border-width) _palette(border);
160 | font-family: _font(family-fixed);
161 | font-size: 0.9em;
162 | margin: 0 0.25em;
163 | padding: 0.25em 0.65em;
164 | }
165 |
166 | pre {
167 | -webkit-overflow-scrolling: touch;
168 | font-family: _font(family-fixed);
169 | font-size: 0.9em;
170 | margin: 0 0 _size(element-margin) 0;
171 |
172 | code {
173 | display: block;
174 | line-height: 1.75em;
175 | padding: 1em 1.5em;
176 | overflow-x: auto;
177 | }
178 | }
179 |
180 | hr {
181 | border: 0;
182 | border-bottom: solid _size(border-width) _palette(border);
183 | margin: _size(element-margin) 0;
184 |
185 | &.major {
186 | margin: (_size(element-margin) * 1.5) 0;
187 | }
188 | }
189 |
190 | .align-left {
191 | text-align: left;
192 | }
193 |
194 | .align-center {
195 | text-align: center;
196 | }
197 |
198 | .align-right {
199 | text-align: right;
200 | }
--------------------------------------------------------------------------------
/assets/sass/components/_actions.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Actions */
8 |
9 | ul.actions {
10 | @include vendor('display', 'flex');
11 | cursor: default;
12 | list-style: none;
13 | margin-left: (_size(element-margin) * -0.5);
14 | padding-left: 0;
15 |
16 | li {
17 | padding: 0 0 0 (_size(element-margin) * 0.5);
18 | vertical-align: middle;
19 | }
20 |
21 | &.special {
22 | @include vendor('justify-content', 'center');
23 | width: 100%;
24 | margin-left: 0;
25 |
26 | li {
27 | &:first-child {
28 | padding-left: 0;
29 | }
30 | }
31 | }
32 |
33 | &.stacked {
34 | @include vendor('flex-direction', 'column');
35 | margin-left: 0;
36 |
37 | li {
38 | padding: (_size(element-margin) * 0.65) 0 0 0;
39 |
40 | &:first-child {
41 | padding-top: 0;
42 | }
43 | }
44 | }
45 |
46 | &.fit {
47 | width: calc(100% + #{_size(element-margin) * 0.5});
48 |
49 | li {
50 | @include vendor('flex-grow', '1');
51 | @include vendor('flex-shrink', '1');
52 | width: 100%;
53 |
54 | > * {
55 | width: 100%;
56 | }
57 | }
58 |
59 | &.stacked {
60 | width: 100%;
61 | }
62 | }
63 |
64 | @include breakpoint('<=xsmall') {
65 | &:not(.fixed) {
66 | @include vendor('flex-direction', 'column');
67 | margin-left: 0;
68 | width: 100% !important;
69 |
70 | li {
71 | @include vendor('flex-grow', '1');
72 | @include vendor('flex-shrink', '1');
73 | padding: (_size(element-margin) * 0.5) 0 0 0;
74 | text-align: center;
75 | width: 100%;
76 |
77 | > * {
78 | width: 100%;
79 | }
80 |
81 | &:first-child {
82 | padding-top: 0;
83 | }
84 |
85 | input[type="submit"],
86 | input[type="reset"],
87 | input[type="button"],
88 | button,
89 | .button {
90 | width: 100%;
91 |
92 | &.icon {
93 | &:before {
94 | margin-left: -0.5rem;
95 | }
96 | }
97 | }
98 | }
99 | }
100 | }
101 | }
--------------------------------------------------------------------------------
/assets/sass/components/_box.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Box */
8 |
9 | .box {
10 | border-radius: _size(border-radius);
11 | border: solid _size(border-width) _palette(border);
12 | margin-bottom: _size(element-margin);
13 | padding: 1.5em;
14 |
15 | > :last-child,
16 | > :last-child > :last-child,
17 | > :last-child > :last-child > :last-child {
18 | margin-bottom: 0;
19 | }
20 |
21 | &.alt {
22 | border: 0;
23 | border-radius: 0;
24 | padding: 0;
25 | }
26 | }
--------------------------------------------------------------------------------
/assets/sass/components/_button.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Button */
8 |
9 | input[type="submit"],
10 | input[type="reset"],
11 | input[type="button"],
12 | button,
13 | .button {
14 | @include vendor('appearance', 'none');
15 | @include vendor('transition', (
16 | 'border-color #{_duration(transition)} ease'
17 | ));
18 | background-color: transparent;
19 | border: solid 1px !important;
20 | border-color: _palette(border) !important;
21 | border-radius: 3em;
22 | color: _palette(fg-bold) !important;
23 | cursor: pointer;
24 | display: inline-block;
25 | font-size: 0.6em;
26 | font-weight: _font(weight-bold);
27 | height: calc(4.75em + 2px);
28 | letter-spacing: _font(kerning-alt);
29 | line-height: 4.75em;
30 | outline: 0;
31 | padding: 0 3.75em;
32 | position: relative;
33 | text-align: center;
34 | text-decoration: none;
35 | text-transform: uppercase;
36 | white-space: nowrap;
37 |
38 | &:after {
39 | @include vendor('transform', 'scale(0.25)');
40 | @include vendor('pointer-events', 'none');
41 | @include vendor('transition', (
42 | 'opacity #{_duration(transition)} ease',
43 | 'transform #{_duration(transition)} ease'
44 | ));
45 | background: _palette(fg-bold);
46 | border-radius: 3em;
47 | content: '';
48 | height: 100%;
49 | left: 0;
50 | opacity: 0;
51 | position: absolute;
52 | top: 0;
53 | width: 100%;
54 | }
55 |
56 | &.icon {
57 | &:before {
58 | margin-right: 0.75em;
59 | }
60 | }
61 |
62 | &.fit {
63 | width: 100%;
64 | }
65 |
66 | &.small {
67 | font-size: 0.4em;
68 | }
69 |
70 | &.large {
71 | font-size: 0.8em;
72 | }
73 |
74 | &.primary {
75 | background-color: _palette(fg-bold);
76 | color: _palette(bg) !important;
77 |
78 | &:after {
79 | display: none;
80 | }
81 | }
82 |
83 | &.disabled,
84 | &:disabled {
85 | cursor: default;
86 | opacity: 0.5;
87 | @include vendor('pointer-events', 'none');
88 | }
89 |
90 | &:hover {
91 | border-color: _palette(fg) !important;
92 |
93 | &:after {
94 | opacity: 0.05;
95 | @include vendor('transform', 'scale(1)');
96 | }
97 |
98 | &:active {
99 | border-color: _palette(fg-bold) !important;
100 |
101 | &:after {
102 | opacity: 0.1;
103 | }
104 | }
105 | }
106 | }
--------------------------------------------------------------------------------
/assets/sass/components/_contact.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Contact */
8 |
9 | ul.contact {
10 | list-style: none;
11 | padding: 0;
12 |
13 | > li {
14 | padding: 0;
15 | margin: 1.5em 0 0 0;
16 |
17 | &:first-child {
18 | margin-top: 0;
19 | }
20 | }
21 | }
--------------------------------------------------------------------------------
/assets/sass/components/_features.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Features */
8 |
9 | .features {
10 | @include vendor('display', 'flex');
11 | @include vendor('flex-wrap', 'wrap');
12 | border-radius: _size(border-radius);
13 | border: solid 1px _palette(border);
14 | background: _palette(border-bg);
15 | margin: 0 0 _size(element-margin) 0;
16 |
17 | section {
18 | @include padding(3em, 3em, (0.5em, 0, 0, 4em));
19 | width: 50%;
20 | border-top: solid 1px _palette(border);
21 | position: relative;
22 |
23 | &:nth-child(-n + 2) {
24 | border-top-width: 0;
25 | }
26 |
27 | &:nth-child(2n) {
28 | border-left: solid 1px _palette(border);
29 | }
30 |
31 | .icon {
32 | @include vendor('transition', (
33 | 'opacity #{_duration(activation) * 0.5} ease',
34 | 'transform #{_duration(activation) * 0.5} ease'
35 | ));
36 | @include vendor('transition-delay', '1s');
37 | @include vendor('transform', 'scale(1)');
38 | position: absolute;
39 | left: 3em;
40 | top: 3em;
41 | opacity: 1;
42 | }
43 |
44 | @for $i from 1 through _misc(max-features) {
45 | &:nth-child(#{$i}) {
46 | .icon {
47 | @include vendor('transition-delay', '#{(_duration(transition) * 0.75 * $i)}');
48 | }
49 | }
50 | }
51 | }
52 |
53 | &.inactive {
54 | section {
55 | .icon {
56 | @include vendor('transform', 'scale(0.5)');
57 | opacity: 0;
58 | }
59 | }
60 | }
61 |
62 | @include breakpoint('<=medium') {
63 | display: block;
64 |
65 | section {
66 | border-top-width: 1px !important;
67 | border-left-width: 0 !important;
68 | width: 100%;
69 |
70 | &:first-child {
71 | border-top-width: 0 !important;
72 | }
73 | }
74 | }
75 |
76 | @include breakpoint('<=small') {
77 | section {
78 | @include padding(2em, 1.5em, (0.5em, 0, 0, 4em));
79 |
80 | .icon {
81 | left: 1.5em;
82 | top: 2em;
83 | }
84 | }
85 | }
86 |
87 | @include breakpoint('<=xsmall') {
88 | section {
89 | @include padding(2em, 1.5em, (0, 0, 0, 0));
90 |
91 | .icon {
92 | left: 0;
93 | position: relative;
94 | top: 0;
95 | }
96 | }
97 | }
98 | }
--------------------------------------------------------------------------------
/assets/sass/components/_form.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Form */
8 |
9 | form {
10 | margin: 0 0 _size(element-margin) 0;
11 |
12 | > :last-child {
13 | margin-bottom: 0;
14 | }
15 |
16 | > .fields {
17 | $gutter: (_size(element-margin) * 0.75);
18 |
19 | @include vendor('display', 'flex');
20 | @include vendor('flex-wrap', 'wrap');
21 | width: calc(100% + #{$gutter * 2});
22 | margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
23 |
24 | > .field {
25 | @include vendor('flex-grow', '0');
26 | @include vendor('flex-shrink', '0');
27 | padding: $gutter 0 0 $gutter;
28 | width: calc(100% - #{$gutter * 1});
29 |
30 | &.half {
31 | width: calc(50% - #{$gutter * 0.5});
32 | }
33 |
34 | &.third {
35 | width: calc(#{100% / 3} - #{$gutter * (1 / 3)});
36 | }
37 |
38 | &.quarter {
39 | width: calc(25% - #{$gutter * 0.25});
40 | }
41 | }
42 | }
43 |
44 | @include breakpoint('<=xsmall') {
45 | > .fields {
46 | $gutter: (_size(element-margin) * 0.75);
47 |
48 | width: calc(100% + #{$gutter * 2});
49 | margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
50 |
51 | > .field {
52 | padding: $gutter 0 0 $gutter;
53 | width: calc(100% - #{$gutter * 1});
54 |
55 | &.half {
56 | width: calc(100% - #{$gutter * 1});
57 | }
58 |
59 | &.third {
60 | width: calc(100% - #{$gutter * 1});
61 | }
62 |
63 | &.quarter {
64 | width: calc(100% - #{$gutter * 1});
65 | }
66 | }
67 | }
68 | }
69 | }
70 |
71 | label {
72 | color: _palette(fg-bold);
73 | font-weight: _font(weight-bold);
74 | line-height: 1.5;
75 | margin: 0 0 (_size(element-margin) * 0.35) 0;
76 | display: block;
77 | font-size: 1.1em;
78 | }
79 |
80 | input[type="text"],
81 | input[type="password"],
82 | input[type="email"],
83 | input[type="tel"],
84 | select,
85 | textarea {
86 | @include vendor('appearance', 'none');
87 | background: _palette(border-bg);
88 | border-radius: _size(border-radius);
89 | border: none;
90 | border: solid _size(border-width) _palette(border);
91 | color: inherit;
92 | display: block;
93 | outline: 0;
94 | padding: 0 1em;
95 | text-decoration: none;
96 | width: 100%;
97 |
98 | &:invalid {
99 | box-shadow: none;
100 | }
101 |
102 | &:focus {
103 | border-color: _palette(fg-bold);
104 | box-shadow: 0 0 0 _size(border-width) _palette(fg-bold);
105 | }
106 | }
107 |
108 | select {
109 | background-image: svg-url("
");
110 | background-size: 1.25rem;
111 | background-repeat: no-repeat;
112 | background-position: calc(100% - 1rem) center;
113 | height: _size(element-height);
114 | padding-right: _size(element-height);
115 | text-overflow: ellipsis;
116 |
117 | option {
118 | color: _palette(fg-bold);
119 | background: _palette(bg);
120 | }
121 |
122 | &:focus {
123 | &::-ms-value {
124 | background-color: transparent;
125 | }
126 | }
127 |
128 | &::-ms-expand {
129 | display: none;
130 | }
131 | }
132 |
133 | input[type="text"],
134 | input[type="password"],
135 | input[type="email"],
136 | select {
137 | height: _size(element-height);
138 | }
139 |
140 | textarea {
141 | padding: 0.75em 1em;
142 |
143 | body.is-ie & {
144 | min-height: 10em;
145 | }
146 | }
147 |
148 | input[type="checkbox"],
149 | input[type="radio"], {
150 | @include vendor('appearance', 'none');
151 | display: block;
152 | float: left;
153 | margin-right: -2em;
154 | opacity: 0;
155 | width: 1em;
156 | z-index: -1;
157 |
158 | & + label {
159 | @include icon(false, solid);
160 | color: _palette(fg);
161 | cursor: pointer;
162 | display: inline-block;
163 | font-size: 1em;
164 | font-weight: _font(weight);
165 | padding-left: (_size(element-height) * 0.6) + 0.75em;
166 | padding-right: 0.75em;
167 | position: relative;
168 |
169 | &:before {
170 | background: _palette(border-bg);
171 | border-radius: _size(border-radius);
172 | border: solid _size(border-width) _palette(border);
173 | content: '';
174 | display: inline-block;
175 | font-size: 0.8em;
176 | height: (_size(element-height) * 0.75);
177 | left: 0;
178 | line-height: (_size(element-height) * 0.75);
179 | position: absolute;
180 | text-align: center;
181 | top: 0;
182 | width: (_size(element-height) * 0.75);
183 | }
184 | }
185 |
186 | &:checked + label {
187 | &:before {
188 | background: _palette(fg-bold);
189 | border-color: _palette(fg-bold);
190 | color: _palette(accent3);
191 | content: '\f00c';
192 | }
193 | }
194 |
195 | &:focus + label {
196 | &:before {
197 | border-color: _palette(fg-bold);
198 | box-shadow: 0 0 0 _size(border-width) _palette(fg-bold);
199 | }
200 | }
201 | }
202 |
203 | input[type="checkbox"] {
204 | & + label {
205 | &:before {
206 | border-radius: _size(border-radius);
207 | }
208 | }
209 | }
210 |
211 | input[type="radio"] {
212 | & + label {
213 | &:before {
214 | border-radius: 100%;
215 | }
216 | }
217 | }
218 |
219 | ::-webkit-input-placeholder {
220 | color: _palette(fg-light) !important;
221 | opacity: 1.0;
222 | }
223 |
224 | :-moz-placeholder {
225 | color: _palette(fg-light) !important;
226 | opacity: 1.0;
227 | }
228 |
229 | ::-moz-placeholder {
230 | color: _palette(fg-light) !important;
231 | opacity: 1.0;
232 | }
233 |
234 | :-ms-input-placeholder {
235 | color: _palette(fg-light) !important;
236 | opacity: 1.0;
237 | }
--------------------------------------------------------------------------------
/assets/sass/components/_icon.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Icon */
8 |
9 | .icon {
10 | @include icon;
11 | border-bottom: none;
12 | position: relative;
13 |
14 | > .label {
15 | display: none;
16 | }
17 |
18 | &:before {
19 | line-height: inherit;
20 | }
21 |
22 | &.solid {
23 | &:before {
24 | font-weight: 900;
25 | }
26 | }
27 |
28 | &.brands {
29 | &:before {
30 | font-family: 'Font Awesome 5 Brands';
31 | }
32 | }
33 |
34 | &.major {
35 | width: 2.5em;
36 | height: 2.5em;
37 | display: block;
38 | background: _palette(fg-bold);
39 | border-radius: 100%;
40 | color: _palette(bg);
41 | text-align: center;
42 | line-height: 2.5em;
43 | margin: 0 0 (_size(element-margin) * 0.65) 0;
44 |
45 | &:before {
46 | font-size: 1.25em;
47 |
48 | .wrapper.style1 & {
49 | color: _palette(accent1);
50 | }
51 |
52 | .wrapper.style1-alt & {
53 | color: _palette(accent1-alt);
54 | }
55 |
56 | .wrapper.style2 & {
57 | color: _palette(accent2);
58 | }
59 |
60 | .wrapper.style2-alt & {
61 | color: _palette(accent2-alt);
62 | }
63 |
64 | .wrapper.style3 & {
65 | color: _palette(accent3);
66 | }
67 |
68 | .wrapper.style3-alt & {
69 | color: _palette(accent3-alt);
70 | }
71 | }
72 | }
73 | }
--------------------------------------------------------------------------------
/assets/sass/components/_icons.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Icons */
8 |
9 | ul.icons {
10 | cursor: default;
11 | list-style: none;
12 | padding-left: 0;
13 |
14 | li {
15 | display: inline-block;
16 | padding: 0 0.75em 0 0;
17 |
18 | &:last-child {
19 | padding-right: 0;
20 | }
21 |
22 | > a, > span {
23 | border: 0;
24 |
25 | .label {
26 | display: none;
27 | }
28 | }
29 | }
30 | }
--------------------------------------------------------------------------------
/assets/sass/components/_image.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Image */
8 |
9 | .image {
10 | border-radius: _size(border-radius);
11 | border: 0;
12 | display: inline-block;
13 | position: relative;
14 |
15 | img {
16 | border-radius: _size(border-radius);
17 | display: block;
18 | }
19 |
20 | &.left,
21 | &.right {
22 | max-width: 40%;
23 |
24 | img {
25 | width: 100%;
26 | }
27 | }
28 |
29 | &.left {
30 | float: left;
31 | margin: 0 1.5em 1em 0;
32 | top: 0.25em;
33 | }
34 |
35 | &.right {
36 | float: right;
37 | margin: 0 0 1em 1.5em;
38 | top: 0.25em;
39 | }
40 |
41 | &.fit {
42 | display: block;
43 | margin: 0 0 _size(element-margin) 0;
44 | width: 100%;
45 |
46 | img {
47 | width: 100%;
48 | }
49 | }
50 |
51 | &.main {
52 | display: block;
53 | margin: 0 0 (_size(element-margin) * 1.5) 0;
54 | width: 100%;
55 |
56 | img {
57 | width: 100%;
58 | }
59 | }
60 | }
--------------------------------------------------------------------------------
/assets/sass/components/_list.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* List */
8 |
9 | ol {
10 | list-style: decimal;
11 | margin: 0 0 _size(element-margin) 0;
12 | padding-left: 1.25em;
13 |
14 | li {
15 | padding-left: 0.25em;
16 | }
17 | }
18 |
19 | ul {
20 | list-style: disc;
21 | margin: 0 0 _size(element-margin) 0;
22 | padding-left: 1em;
23 |
24 | li {
25 | padding-left: 0.5em;
26 | }
27 |
28 | &.alt {
29 | list-style: none;
30 | padding-left: 0;
31 |
32 | li {
33 | border-top: solid _size(border-width) _palette(border);
34 | padding: 0.5em 0;
35 |
36 | &:first-child {
37 | border-top: 0;
38 | padding-top: 0;
39 | }
40 | }
41 | }
42 | }
43 |
44 | dl {
45 | margin: 0 0 _size(element-margin) 0;
46 |
47 | dt {
48 | display: block;
49 | font-weight: _font(weight-bold);
50 | margin: 0 0 (_size(element-margin) * 0.5) 0;
51 | }
52 |
53 | dd {
54 | margin-left: _size(element-margin);
55 | }
56 | }
--------------------------------------------------------------------------------
/assets/sass/components/_menu.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Menu */
8 |
9 | ul.menu {
10 | list-style: none;
11 | padding: 0;
12 |
13 | > li {
14 | border-left: solid 1px _palette(border);
15 | display: inline-block;
16 | line-height: 1;
17 | margin-left: 1.5em;
18 | padding: 0 0 0 1.5em;
19 |
20 | &:first-child {
21 | border-left: 0;
22 | margin: 0;
23 | padding-left: 0;
24 | }
25 | }
26 |
27 | @include breakpoint('<=xsmall') {
28 | > li {
29 | border-left: 0;
30 | display: block;
31 | line-height: inherit;
32 | margin: 0.5em 0 0 0;
33 | padding-left: 0;
34 | }
35 | }
36 | }
--------------------------------------------------------------------------------
/assets/sass/components/_row.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Row */
8 |
9 | .row {
10 | @include html-grid(1.5em);
11 |
12 | @include breakpoint('<=xlarge') {
13 | @include html-grid(1.5em, 'xlarge');
14 | }
15 |
16 | @include breakpoint('<=large') {
17 | @include html-grid(1.5em, 'large');
18 | }
19 |
20 | @include breakpoint('<=medium') {
21 | @include html-grid(1.5em, 'medium');
22 | }
23 |
24 | @include breakpoint('<=small') {
25 | @include html-grid(1.5em, 'small');
26 | }
27 |
28 | @include breakpoint('<=xsmall') {
29 | @include html-grid(1.5em, 'xsmall');
30 | }
31 | }
--------------------------------------------------------------------------------
/assets/sass/components/_section.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Section/Article */
8 |
9 | section, article {
10 | &.special {
11 | text-align: center;
12 | }
13 | }
14 |
15 | header {
16 | p {
17 | color: _palette(fg-light);
18 | position: relative;
19 | margin: 0 0 (_size(element-margin) * 0.75) 0;
20 | }
21 |
22 | h2 + p {
23 | font-size: 1.25em;
24 | margin-top: (_size(element-margin) * -0.5);
25 | line-height: 1.5em;
26 | }
27 |
28 | h3 + p {
29 | font-size: 1.1em;
30 | margin-top: (_size(element-margin) * -0.4);
31 | line-height: 1.5em;
32 | }
33 |
34 | h4 + p,
35 | h5 + p,
36 | h6 + p {
37 | font-size: 0.9em;
38 | margin-top: (_size(element-margin) * -0.3);
39 | line-height: 1.5em;
40 | }
41 | }
--------------------------------------------------------------------------------
/assets/sass/components/_split.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Split */
8 |
9 | .split {
10 | @include vendor('display', 'flex');
11 |
12 | > * {
13 | width: calc(50% - 2.5em);
14 | }
15 |
16 | > :nth-child(2n - 1) {
17 | padding-right: 2.5em;
18 | border-right: solid 1px _palette(border);
19 | }
20 |
21 | > :nth-child(2n) {
22 | padding-left: 2.5em;
23 | }
24 |
25 | &.style1 {
26 | > :nth-child(2n - 1) {
27 | width: calc(66.66666% - 2.5em);
28 | }
29 |
30 | > :nth-child(2n) {
31 | width: calc(33.33333% - 2.5em);
32 | }
33 | }
34 |
35 | @include breakpoint('<=xlarge') {
36 | > * {
37 | width: calc(50% - 2em);
38 | }
39 |
40 | > :nth-child(2n - 1) {
41 | padding-right: 2em;
42 | }
43 |
44 | > :nth-child(2n) {
45 | padding-left: 2em;
46 | }
47 |
48 | &.style1 {
49 | > :nth-child(2n - 1) {
50 | width: calc(66.66666% - 2em);
51 | }
52 |
53 | > :nth-child(2n) {
54 | width: calc(33.33333% - 2em);
55 | }
56 | }
57 | }
58 |
59 | @include breakpoint('<=medium') {
60 | display: block;
61 |
62 | > * {
63 | border-top: solid 1px _palette(border);
64 | margin: 4em 0 0 0;
65 | padding: 4em 0 0 0;
66 | width: 100% !important;
67 | }
68 |
69 | > :nth-child(2n - 1) {
70 | border-right: 0;
71 | padding-right: 0;
72 | }
73 |
74 | > :nth-child(2n) {
75 | padding-left: 0;
76 | }
77 |
78 | > :first-child {
79 | border-top: 0;
80 | margin-top: 0;
81 | padding-top: 0;
82 | }
83 | }
84 |
85 | @include breakpoint('<=small') {
86 | > * {
87 | margin: 3em 0 0 0;
88 | padding: 3em 0 0 0;
89 | }
90 | }
91 | }
--------------------------------------------------------------------------------
/assets/sass/components/_spotlights.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Spotlights */
8 |
9 | .spotlights {
10 | > section {
11 | @include vendor('display', 'flex');
12 | @include vendor('flex-direction', 'row');
13 | min-height: 22.5em;
14 |
15 | body.is-ie & {
16 | min-height: 0;
17 | }
18 |
19 | > .image {
20 | background-position: center center;
21 | background-size: cover;
22 | border-radius: 0;
23 | display: block;
24 | position: relative;
25 | width: 25em;
26 |
27 | img {
28 | border-radius: 0;
29 | display: block;
30 | }
31 |
32 | &:before {
33 | @include vendor('transition', 'opacity #{_duration(activation)} ease');
34 | background: transparentize(_palette(bg), 0.1);
35 | content: '';
36 | display: block;
37 | height: 100%;
38 | left: 0;
39 | opacity: 0;
40 | position: absolute;
41 | top: 0;
42 | width: 100%;
43 | }
44 | }
45 |
46 | > .content {
47 | @include padding(4em, 5em);
48 | @include vendor('display', 'flex');
49 | @include vendor('flex-direction', 'column');
50 | @include vendor('justify-content', 'center');
51 | width: #{_size(inner-width) - 25em};
52 | -ms-flex: 1;
53 |
54 | > .inner {
55 | @include vendor('transform', 'translateX(0) translateY(0)');
56 | @include vendor('transition', (
57 | 'opacity #{_duration(activation)} ease',
58 | 'transform #{_duration(activation)} ease'
59 | ));
60 | opacity: 1;
61 | }
62 | }
63 |
64 | &:nth-child(1) {
65 | }
66 |
67 | &:nth-child(2) {
68 | background-color: rgba(0,0,0,0.05);
69 | }
70 |
71 | &:nth-child(3) {
72 | background-color: rgba(0,0,0,0.1);
73 | }
74 |
75 | &.inactive,
76 | body.is-preload & {
77 | > .image {
78 | &:before {
79 | opacity: 1;
80 | }
81 | }
82 |
83 | > .content {
84 | > .inner {
85 | @include vendor('transform', 'translateX(-1em)');
86 | opacity: 0;
87 | }
88 | }
89 | }
90 |
91 | @include breakpoint('<=xlarge') {
92 | > .content {
93 | @include padding(4em, 4em);
94 | }
95 | }
96 |
97 | @include breakpoint('<=medium') {
98 | display: block;
99 |
100 | > .image {
101 | width: 100%;
102 | height: 50vh;
103 | }
104 |
105 | > .content {
106 | width: 100%;
107 | }
108 |
109 | &.inactive,
110 | body.is-preload & {
111 | > .content {
112 | > .inner {
113 | @include vendor('transform', 'translateY(1em)');
114 | }
115 | }
116 | }
117 | }
118 |
119 | @include breakpoint('<=small') {
120 | > .image {
121 | height: 50vh;
122 | min-height: 15em;
123 | }
124 |
125 | > .content {
126 | @include padding(3em, 2em);
127 | }
128 | }
129 | }
130 | }
131 |
132 |
--------------------------------------------------------------------------------
/assets/sass/components/_table.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Table */
8 |
9 | .table-wrapper {
10 | -webkit-overflow-scrolling: touch;
11 | overflow-x: auto;
12 | }
13 |
14 | table {
15 | margin: 0 0 _size(element-margin) 0;
16 | width: 100%;
17 |
18 | tbody {
19 | tr {
20 | border: solid _size(border-width) _palette(border);
21 | border-left: 0;
22 | border-right: 0;
23 |
24 | &:nth-child(2n + 1) {
25 | background-color: _palette(border-bg);
26 | }
27 | }
28 | }
29 |
30 | td {
31 | padding: 0.75em 0.75em;
32 | }
33 |
34 | th {
35 | color: _palette(fg-bold);
36 | font-size: 1em;
37 | font-weight: _font(weight-bold);
38 | padding: 0 0.75em 0.75em 0.75em;
39 | text-align: left;
40 | }
41 |
42 | thead {
43 | border-bottom: solid (_size(border-width) * 2) _palette(border);
44 | }
45 |
46 | tfoot {
47 | border-top: solid (_size(border-width) * 2) _palette(border);
48 | }
49 |
50 | &.alt {
51 | border-collapse: separate;
52 |
53 | tbody {
54 | tr {
55 | td {
56 | border: solid _size(border-width) _palette(border);
57 | border-left-width: 0;
58 | border-top-width: 0;
59 |
60 | &:first-child {
61 | border-left-width: _size(border-width);
62 | }
63 | }
64 |
65 | &:first-child {
66 | td {
67 | border-top-width: _size(border-width);
68 | }
69 | }
70 | }
71 | }
72 |
73 | thead {
74 | border-bottom: 0;
75 | }
76 |
77 | tfoot {
78 | border-top: 0;
79 | }
80 | }
81 | }
--------------------------------------------------------------------------------
/assets/sass/components/_wrapper.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Wrapper */
8 |
9 | .wrapper {
10 | position: relative;
11 |
12 | > .inner {
13 | @include padding(5em, 5em);
14 | max-width: 100%;
15 | width: _size(inner-width);
16 |
17 | @include breakpoint('<=xlarge') {
18 | @include padding(4em, 4em);
19 | }
20 |
21 | @include breakpoint('<=large') {
22 | width: 100%;
23 | }
24 |
25 | @include breakpoint('<=small') {
26 | @include padding(3em, 2em);
27 | }
28 | }
29 |
30 | &.alt {
31 | background-color: _palette(bg-alt);
32 | }
33 |
34 | &.style1 {
35 | background-color: _palette(accent1);
36 | }
37 |
38 | &.style1-alt {
39 | background-color: _palette(accent1-alt);
40 | }
41 |
42 | &.style2 {
43 | background-color: _palette(accent2);
44 | }
45 |
46 | &.style2-alt {
47 | background-color: _palette(accent2-alt);
48 | }
49 |
50 | &.style3 {
51 | background-color: _palette(accent3);
52 | }
53 |
54 | &.style3-alt {
55 | background-color: _palette(accent3-alt);
56 | }
57 |
58 | &.fullscreen {
59 | @include vendor('display', 'flex');
60 | @include vendor('flex-direction', 'column');
61 | @include vendor('justify-content', 'center');
62 | min-height: 100vh;
63 |
64 | body.is-ie & {
65 | height: 100vh;
66 | }
67 |
68 | @include breakpoint('<=large') {
69 | min-height: calc(100vh - 2.5em);
70 |
71 | body.is-ie & {
72 | height: calc(100vh - 2.5em);
73 | }
74 | }
75 |
76 | @include breakpoint('<=small') {
77 | padding: 2em 0;
78 | min-height: 0;
79 |
80 | body.is-ie & {
81 | height: auto;
82 | }
83 | }
84 | }
85 |
86 | &.fade-up {
87 | > .inner {
88 | @include vendor('transform', 'translateY(0)');
89 | @include vendor('transition', (
90 | 'opacity #{_duration(activation)} ease',
91 | 'transform #{_duration(activation)} ease'
92 | ));
93 | opacity: 1.0;
94 | }
95 |
96 | &.inactive,
97 | body.is-preload & {
98 | > .inner {
99 | opacity: 0;
100 | @include vendor('transform', 'translateY(1em)');
101 | }
102 | }
103 | }
104 |
105 | &.fade-down {
106 | > .inner {
107 | @include vendor('transform', 'translateY(0)');
108 | @include vendor('transition', (
109 | 'opacity #{_duration(activation)} ease',
110 | 'transform #{_duration(activation)} ease'
111 | ));
112 | opacity: 1.0;
113 | }
114 |
115 | &.inactive,
116 | body.is-preload & {
117 | > .inner {
118 | opacity: 0;
119 | @include vendor('transform', 'translateY(-1em)');
120 | }
121 | }
122 | }
123 |
124 | &.fade {
125 | > .inner {
126 | @include vendor('transition', (
127 | 'opacity #{_duration(activation)} ease'
128 | ));
129 | opacity: 1.0;
130 | }
131 |
132 | &.inactive,
133 | body.is-preload & {
134 | > .inner {
135 | opacity: 0;
136 | }
137 | }
138 | }
139 | }
--------------------------------------------------------------------------------
/assets/sass/layout/_footer.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Footer */
8 |
9 | #footer {
10 | #sidebar + #wrapper + & {
11 | margin-left: _size(sidebar-width);
12 |
13 | @include breakpoint('<=large') {
14 | margin-left: 0;
15 | }
16 | }
17 |
18 | > .inner {
19 | a {
20 | border-bottom-color: _palette(border);
21 |
22 | &:hover {
23 | border-bottom-color: transparent;
24 | }
25 | }
26 |
27 | .menu {
28 | font-size: 0.8em;
29 | color: _palette(border);
30 | }
31 | }
32 |
33 | #header + #wrapper + & {
34 | > .inner {
35 | margin: 0 auto;
36 | }
37 | }
38 | }
--------------------------------------------------------------------------------
/assets/sass/layout/_header.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Header */
8 |
9 | #header {
10 | @include vendor('display', 'flex');
11 | background-color: _palette(accent1);
12 | cursor: default;
13 | padding: 1.75em 2em;
14 |
15 | > .title {
16 | border: 0;
17 | color: _palette(fg-bold);
18 | display: block;
19 | font-size: 1.25em;
20 | font-weight: _font(weight-bold);
21 | }
22 |
23 | > nav {
24 | @include vendor('flex', '1');
25 | text-align: right;
26 |
27 | > ul {
28 | margin: 0;
29 | padding: 0;
30 |
31 | > li {
32 | display: inline-block;
33 | margin-left: 1.75em;
34 | padding: 0;
35 | vertical-align: middle;
36 |
37 | &:first-child {
38 | margin-left: 0;
39 | }
40 |
41 | a {
42 | border: 0;
43 | color: _palette(fg-light);
44 | display: inline-block;
45 | font-size: 0.6em;
46 | font-weight: _font(weight-bold);
47 | letter-spacing: _font(kerning-alt);
48 | text-transform: uppercase;
49 |
50 | &:hover {
51 | color: _palette(fg);
52 | }
53 |
54 | &.active {
55 | color: _palette(fg-bold);
56 | }
57 | }
58 | }
59 | }
60 | }
61 |
62 | @include breakpoint('<=small') {
63 | padding: 1em 2em;
64 | }
65 |
66 | @include breakpoint('<=xsmall') {
67 | display: block;
68 | padding: 0 2em;
69 | text-align: left;
70 |
71 | .title {
72 | font-size: 1.25em;
73 | padding: 1em 0;
74 | }
75 |
76 | > nav {
77 | border-top: solid 1px _palette(border);
78 | text-align: inherit;
79 |
80 | > ul {
81 | > li {
82 | margin-left: 1.5em;
83 |
84 | a {
85 | height: 6em;
86 | line-height: 6em;
87 | }
88 | }
89 | }
90 | }
91 | }
92 | }
--------------------------------------------------------------------------------
/assets/sass/layout/_intro.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Intro */
8 |
9 | #intro {
10 | background-attachment: fixed;
11 | background-image: url('images/intro.svg');
12 | background-position: top right;
13 | background-repeat: no-repeat;
14 | background-size: 100% 100%;
15 |
16 | p {
17 | font-size: 1.25em;
18 |
19 | @include breakpoint('<=medium') {
20 | br {
21 | display: none;
22 | }
23 | }
24 |
25 | @include breakpoint('<=small') {
26 | font-size: 1em;
27 | }
28 | }
29 |
30 | @include breakpoint('<=large') {
31 | background-attachment: scroll;
32 | }
33 | }
--------------------------------------------------------------------------------
/assets/sass/layout/_sidebar.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Sidebar */
8 |
9 | #sidebar {
10 | @include padding(2.5em, 2.5em);
11 | background: _palette(bg);
12 | cursor: default;
13 | height: 100vh;
14 | left: 0;
15 | overflow-x: hidden;
16 | overflow-y: auto;
17 | position: fixed;
18 | text-align: right;
19 | top: 0;
20 | width: _size(sidebar-width);
21 | z-index: _misc(z-index-base);
22 |
23 | > .inner {
24 | @include vendor('display', 'flex');
25 | @include vendor('flex-direction', 'column');
26 | @include vendor('justify-content', 'center');
27 | @include vendor('transform', 'translateY(0)');
28 | @include vendor('transition', (
29 | 'opacity #{_duration(activation)} ease',
30 | ));
31 | min-height: 100%;
32 | opacity: 1;
33 | width: 100%;
34 |
35 | body.is-ie & {
36 | height: 100%;
37 | }
38 | }
39 |
40 | nav {
41 | > ul {
42 | list-style: none;
43 | padding: 0;
44 |
45 | > li {
46 | @include vendor('transform', 'translateY(0)');
47 | @include vendor('transition', (
48 | 'opacity #{_duration(activation) * 0.15} ease',
49 | 'transform #{_duration(activation) * 0.75} ease'
50 | ));
51 | margin: 1.5em 0 0 0;
52 | opacity: 1;
53 | padding: 0;
54 | position: relative;
55 |
56 | &:first-child {
57 | margin: 0;
58 | }
59 |
60 | @for $i from 1 through _misc(max-sidebar-links) {
61 | &:nth-child(#{$i}) {
62 | @include vendor('transition-delay', '#{(_duration(activation) * 0.2 * $i) + (_duration(activation) * 0.25)}');
63 | }
64 | }
65 | }
66 | }
67 |
68 | a {
69 | @include vendor('transition', 'color #{_duration(transition)} ease');
70 | border: 0;
71 | color: _palette(fg-light);
72 | display: block;
73 | font-size: 0.6em;
74 | font-weight: _font(weight-bold);
75 | letter-spacing: _font(kerning-alt);
76 | line-height: 1.75;
77 | outline: 0;
78 | padding: 1.35em 0;
79 | position: relative;
80 | text-decoration: none;
81 | text-transform: uppercase;
82 |
83 | &:before,
84 | &:after {
85 | border-radius: 0.2em;
86 | bottom: 0;
87 | content: '';
88 | height: 0.2em;
89 | position: absolute;
90 | right: 0;
91 | width: 100%;
92 | }
93 |
94 | &:before {
95 | background: lighten(_palette(bg), 5);
96 | }
97 |
98 | &:after {
99 | @include vendor('background-image', 'linear-gradient(to right, #{_palette(accent1)}, #{_palette(accent3)})');
100 | @include vendor('transition', 'max-width #{_duration(transition)} ease');
101 | max-width: 0;
102 | }
103 |
104 | &:hover {
105 | color: _palette(fg);
106 | }
107 |
108 | &.active {
109 | color: _palette(fg-bold);
110 |
111 | &:after {
112 | max-width: 100%;
113 | }
114 | }
115 | }
116 | }
117 |
118 | body.is-preload & {
119 | > .inner {
120 | opacity: 0;
121 | }
122 |
123 | nav {
124 | ul {
125 | li {
126 | @include vendor('transform', 'translateY(2em)');
127 | opacity: 0;
128 | }
129 | }
130 | }
131 | }
132 |
133 | @include breakpoint('<=large') {
134 | height: _size(sidebar-height);
135 | left: 0;
136 | line-height: _size(sidebar-height);
137 | overflow: hidden;
138 | padding: 0;
139 | text-align: center;
140 | top: 0;
141 | width: 100%;
142 |
143 | > .inner {
144 | @include vendor('flex-direction', 'row');
145 | @include vendor('align-items', 'stretch');
146 | height: inherit;
147 | line-height: inherit;
148 | }
149 |
150 | nav {
151 | height: inherit;
152 | line-height: inherit;
153 |
154 | ul {
155 | @include vendor('display', 'flex');
156 | height: inherit;
157 | line-height: inherit;
158 | margin: 0;
159 |
160 | li {
161 | display: block;
162 | height: inherit;
163 | line-height: inherit;
164 | margin: 0 0 0 2em;
165 | padding: 0;
166 | }
167 | }
168 |
169 | a {
170 | height: inherit;
171 | line-height: inherit;
172 | padding: 0;
173 |
174 | &:after {
175 | background-image: none;
176 | background-color: _palette(accent3);
177 | }
178 | }
179 | }
180 | }
181 |
182 | @include breakpoint('<=small') {
183 | display: none;
184 | }
185 | }
--------------------------------------------------------------------------------
/assets/sass/layout/_wrapper.scss:
--------------------------------------------------------------------------------
1 | ///
2 | /// Hyperspace by HTML5 UP
3 | /// html5up.net | @ajlkn
4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | ///
6 |
7 | /* Wrapper (main) */
8 |
9 | #wrapper {
10 | #sidebar + & {
11 | margin-left: _size(sidebar-width);
12 |
13 | @include breakpoint('<=large') {
14 | margin-left: 0;
15 | padding-top: _size(sidebar-height);
16 | }
17 |
18 | @include breakpoint('<=small') {
19 | padding-top: 0;
20 | }
21 | }
22 |
23 | #header + & {
24 | > .wrapper {
25 | > .inner {
26 | margin: 0 auto;
27 | }
28 | }
29 | }
30 | }
--------------------------------------------------------------------------------
/assets/sass/libs/_breakpoints.scss:
--------------------------------------------------------------------------------
1 | // breakpoints.scss v1.0 | @ajlkn | MIT licensed */
2 |
3 | // Vars.
4 |
5 | /// Breakpoints.
6 | /// @var {list}
7 | $breakpoints: () !global;
8 |
9 | // Mixins.
10 |
11 | /// Sets breakpoints.
12 | /// @param {map} $x Breakpoints.
13 | @mixin breakpoints($x: ()) {
14 | $breakpoints: $x !global;
15 | }
16 |
17 | /// Wraps @content in a @media block targeting a specific orientation.
18 | /// @param {string} $orientation Orientation.
19 | @mixin orientation($orientation) {
20 | @media screen and (orientation: #{$orientation}) {
21 | @content;
22 | }
23 | }
24 |
25 | /// Wraps @content in a @media block using a given query.
26 | /// @param {string} $query Query.
27 | @mixin breakpoint($query: null) {
28 |
29 | $breakpoint: null;
30 | $op: null;
31 | $media: null;
32 |
33 | // Determine operator, breakpoint.
34 |
35 | // Greater than or equal.
36 | @if (str-slice($query, 0, 2) == '>=') {
37 |
38 | $op: 'gte';
39 | $breakpoint: str-slice($query, 3);
40 |
41 | }
42 |
43 | // Less than or equal.
44 | @elseif (str-slice($query, 0, 2) == '<=') {
45 |
46 | $op: 'lte';
47 | $breakpoint: str-slice($query, 3);
48 |
49 | }
50 |
51 | // Greater than.
52 | @elseif (str-slice($query, 0, 1) == '>') {
53 |
54 | $op: 'gt';
55 | $breakpoint: str-slice($query, 2);
56 |
57 | }
58 |
59 | // Less than.
60 | @elseif (str-slice($query, 0, 1) == '<') {
61 |
62 | $op: 'lt';
63 | $breakpoint: str-slice($query, 2);
64 |
65 | }
66 |
67 | // Not.
68 | @elseif (str-slice($query, 0, 1) == '!') {
69 |
70 | $op: 'not';
71 | $breakpoint: str-slice($query, 2);
72 |
73 | }
74 |
75 | // Equal.
76 | @else {
77 |
78 | $op: 'eq';
79 | $breakpoint: $query;
80 |
81 | }
82 |
83 | // Build media.
84 | @if ($breakpoint and map-has-key($breakpoints, $breakpoint)) {
85 |
86 | $a: map-get($breakpoints, $breakpoint);
87 |
88 | // Range.
89 | @if (type-of($a) == 'list') {
90 |
91 | $x: nth($a, 1);
92 | $y: nth($a, 2);
93 |
94 | // Max only.
95 | @if ($x == null) {
96 |
97 | // Greater than or equal (>= 0 / anything)
98 | @if ($op == 'gte') {
99 | $media: 'screen';
100 | }
101 |
102 | // Less than or equal (<= y)
103 | @elseif ($op == 'lte') {
104 | $media: 'screen and (max-width: ' + $y + ')';
105 | }
106 |
107 | // Greater than (> y)
108 | @elseif ($op == 'gt') {
109 | $media: 'screen and (min-width: ' + ($y + 1) + ')';
110 | }
111 |
112 | // Less than (< 0 / invalid)
113 | @elseif ($op == 'lt') {
114 | $media: 'screen and (max-width: -1px)';
115 | }
116 |
117 | // Not (> y)
118 | @elseif ($op == 'not') {
119 | $media: 'screen and (min-width: ' + ($y + 1) + ')';
120 | }
121 |
122 | // Equal (<= y)
123 | @else {
124 | $media: 'screen and (max-width: ' + $y + ')';
125 | }
126 |
127 | }
128 |
129 | // Min only.
130 | @else if ($y == null) {
131 |
132 | // Greater than or equal (>= x)
133 | @if ($op == 'gte') {
134 | $media: 'screen and (min-width: ' + $x + ')';
135 | }
136 |
137 | // Less than or equal (<= inf / anything)
138 | @elseif ($op == 'lte') {
139 | $media: 'screen';
140 | }
141 |
142 | // Greater than (> inf / invalid)
143 | @elseif ($op == 'gt') {
144 | $media: 'screen and (max-width: -1px)';
145 | }
146 |
147 | // Less than (< x)
148 | @elseif ($op == 'lt') {
149 | $media: 'screen and (max-width: ' + ($x - 1) + ')';
150 | }
151 |
152 | // Not (< x)
153 | @elseif ($op == 'not') {
154 | $media: 'screen and (max-width: ' + ($x - 1) + ')';
155 | }
156 |
157 | // Equal (>= x)
158 | @else {
159 | $media: 'screen and (min-width: ' + $x + ')';
160 | }
161 |
162 | }
163 |
164 | // Min and max.
165 | @else {
166 |
167 | // Greater than or equal (>= x)
168 | @if ($op == 'gte') {
169 | $media: 'screen and (min-width: ' + $x + ')';
170 | }
171 |
172 | // Less than or equal (<= y)
173 | @elseif ($op == 'lte') {
174 | $media: 'screen and (max-width: ' + $y + ')';
175 | }
176 |
177 | // Greater than (> y)
178 | @elseif ($op == 'gt') {
179 | $media: 'screen and (min-width: ' + ($y + 1) + ')';
180 | }
181 |
182 | // Less than (< x)
183 | @elseif ($op == 'lt') {
184 | $media: 'screen and (max-width: ' + ($x - 1) + ')';
185 | }
186 |
187 | // Not (< x and > y)
188 | @elseif ($op == 'not') {
189 | $media: 'screen and (max-width: ' + ($x - 1) + '), screen and (min-width: ' + ($y + 1) + ')';
190 | }
191 |
192 | // Equal (>= x and <= y)
193 | @else {
194 | $media: 'screen and (min-width: ' + $x + ') and (max-width: ' + $y + ')';
195 | }
196 |
197 | }
198 |
199 | }
200 |
201 | // String.
202 | @else {
203 |
204 | // Missing a media type? Prefix with "screen".
205 | @if (str-slice($a, 0, 1) == '(') {
206 | $media: 'screen and ' + $a;
207 | }
208 |
209 | // Otherwise, use as-is.
210 | @else {
211 | $media: $a;
212 | }
213 |
214 | }
215 |
216 | }
217 |
218 | // Output.
219 | @media #{$media} {
220 | @content;
221 | }
222 |
223 | }
--------------------------------------------------------------------------------
/assets/sass/libs/_functions.scss:
--------------------------------------------------------------------------------
1 | /// Removes a specific item from a list.
2 | /// @author Hugo Giraudel
3 | /// @param {list} $list List.
4 | /// @param {integer} $index Index.
5 | /// @return {list} Updated list.
6 | @function remove-nth($list, $index) {
7 |
8 | $result: null;
9 |
10 | @if type-of($index) != number {
11 | @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
12 | }
13 | @else if $index == 0 {
14 | @warn "List index 0 must be a non-zero integer for `remove-nth`.";
15 | }
16 | @else if abs($index) > length($list) {
17 | @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
18 | }
19 | @else {
20 |
21 | $result: ();
22 | $index: if($index < 0, length($list) + $index + 1, $index);
23 |
24 | @for $i from 1 through length($list) {
25 |
26 | @if $i != $index {
27 | $result: append($result, nth($list, $i));
28 | }
29 |
30 | }
31 |
32 | }
33 |
34 | @return $result;
35 |
36 | }
37 |
38 | /// Gets a value from a map.
39 | /// @author Hugo Giraudel
40 | /// @param {map} $map Map.
41 | /// @param {string} $keys Key(s).
42 | /// @return {string} Value.
43 | @function val($map, $keys...) {
44 |
45 | @if nth($keys, 1) == null {
46 | $keys: remove-nth($keys, 1);
47 | }
48 |
49 | @each $key in $keys {
50 | $map: map-get($map, $key);
51 | }
52 |
53 | @return $map;
54 |
55 | }
56 |
57 | /// Gets a duration value.
58 | /// @param {string} $keys Key(s).
59 | /// @return {string} Value.
60 | @function _duration($keys...) {
61 | @return val($duration, $keys...);
62 | }
63 |
64 | /// Gets a font value.
65 | /// @param {string} $keys Key(s).
66 | /// @return {string} Value.
67 | @function _font($keys...) {
68 | @return val($font, $keys...);
69 | }
70 |
71 | /// Gets a misc value.
72 | /// @param {string} $keys Key(s).
73 | /// @return {string} Value.
74 | @function _misc($keys...) {
75 | @return val($misc, $keys...);
76 | }
77 |
78 | /// Gets a palette value.
79 | /// @param {string} $keys Key(s).
80 | /// @return {string} Value.
81 | @function _palette($keys...) {
82 | @return val($palette, $keys...);
83 | }
84 |
85 | /// Gets a size value.
86 | /// @param {string} $keys Key(s).
87 | /// @return {string} Value.
88 | @function _size($keys...) {
89 | @return val($size, $keys...);
90 | }
--------------------------------------------------------------------------------
/assets/sass/libs/_html-grid.scss:
--------------------------------------------------------------------------------
1 | // html-grid.scss v1.0 | @ajlkn | MIT licensed */
2 |
3 | // Mixins.
4 |
5 | /// Initializes the current element as an HTML grid.
6 | /// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually).
7 | /// @param {mixed} $suffix Column class suffix (optional; either a single suffix or a list).
8 | @mixin html-grid($gutters: 1.5em, $suffix: '') {
9 |
10 | // Initialize.
11 | $cols: 12;
12 | $multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00;
13 | $unit: 100% / $cols;
14 |
15 | // Suffixes.
16 | $suffixes: null;
17 |
18 | @if (type-of($suffix) == 'list') {
19 | $suffixes: $suffix;
20 | }
21 | @else {
22 | $suffixes: ($suffix);
23 | }
24 |
25 | // Gutters.
26 | $guttersCols: null;
27 | $guttersRows: null;
28 |
29 | @if (type-of($gutters) == 'list') {
30 |
31 | $guttersCols: nth($gutters, 1);
32 | $guttersRows: nth($gutters, 2);
33 |
34 | }
35 | @else {
36 |
37 | $guttersCols: $gutters;
38 | $guttersRows: 0;
39 |
40 | }
41 |
42 | // Row.
43 | display: flex;
44 | flex-wrap: wrap;
45 | box-sizing: border-box;
46 | align-items: stretch;
47 |
48 | // Columns.
49 | > * {
50 | box-sizing: border-box;
51 | }
52 |
53 | // Gutters.
54 | &.gtr-uniform {
55 | > * {
56 | > :last-child {
57 | margin-bottom: 0;
58 | }
59 | }
60 | }
61 |
62 | // Alignment.
63 | &.aln-left {
64 | justify-content: flex-start;
65 | }
66 |
67 | &.aln-center {
68 | justify-content: center;
69 | }
70 |
71 | &.aln-right {
72 | justify-content: flex-end;
73 | }
74 |
75 | &.aln-top {
76 | align-items: flex-start;
77 | }
78 |
79 | &.aln-middle {
80 | align-items: center;
81 | }
82 |
83 | &.aln-bottom {
84 | align-items: flex-end;
85 | }
86 |
87 | // Step through suffixes.
88 | @each $suffix in $suffixes {
89 |
90 | // Suffix.
91 | @if ($suffix != '') {
92 | $suffix: '-' + $suffix;
93 | }
94 | @else {
95 | $suffix: '';
96 | }
97 |
98 | // Row.
99 |
100 | // Important.
101 | > .imp#{$suffix} {
102 | order: -1;
103 | }
104 |
105 | // Columns, offsets.
106 | @for $i from 1 through $cols {
107 | > .col-#{$i}#{$suffix} {
108 | width: $unit * $i;
109 | }
110 |
111 | > .off-#{$i}#{$suffix} {
112 | margin-left: $unit * $i;
113 | }
114 | }
115 |
116 | // Step through multipliers.
117 | @each $multiplier in $multipliers {
118 |
119 | // Gutters.
120 | $class: null;
121 |
122 | @if ($multiplier != 1) {
123 | $class: '.gtr-' + ($multiplier * 100);
124 | }
125 |
126 | {$class} {
127 | margin-top: ($guttersRows * $multiplier * -1);
128 | margin-left: ($guttersCols * $multiplier * -1);
129 |
130 | > * {
131 | padding: ($guttersRows * $multiplier) 0 0 ($guttersCols * $multiplier);
132 | }
133 |
134 | // Uniform.
135 | &.gtr-uniform {
136 | margin-top: $guttersCols * $multiplier * -1;
137 |
138 | > * {
139 | padding-top: $guttersCols * $multiplier;
140 | }
141 | }
142 |
143 | }
144 |
145 | }
146 |
147 | }
148 |
149 | }
--------------------------------------------------------------------------------
/assets/sass/libs/_mixins.scss:
--------------------------------------------------------------------------------
1 | /// Makes an element's :before pseudoelement a FontAwesome icon.
2 | /// @param {string} $content Optional content value to use.
3 | /// @param {string} $category Optional category to use.
4 | /// @param {string} $where Optional pseudoelement to target (before or after).
5 | @mixin icon($content: false, $category: regular, $where: before) {
6 |
7 | text-decoration: none;
8 |
9 | &:#{$where} {
10 |
11 | @if $content {
12 | content: $content;
13 | }
14 |
15 | -moz-osx-font-smoothing: grayscale;
16 | -webkit-font-smoothing: antialiased;
17 | display: inline-block;
18 | font-style: normal;
19 | font-variant: normal;
20 | text-rendering: auto;
21 | line-height: 1;
22 | text-transform: none !important;
23 |
24 | @if ($category == brands) {
25 | font-family: 'Font Awesome 5 Brands';
26 | }
27 | @elseif ($category == solid) {
28 | font-family: 'Font Awesome 5 Free';
29 | font-weight: 900;
30 | }
31 | @else {
32 | font-family: 'Font Awesome 5 Free';
33 | font-weight: 400;
34 | }
35 |
36 | }
37 |
38 | }
39 |
40 | /// Applies padding to an element, taking the current element-margin value into account.
41 | /// @param {mixed} $tb Top/bottom padding.
42 | /// @param {mixed} $lr Left/right padding.
43 | /// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)
44 | /// @param {bool} $important If true, adds !important.
45 | @mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {
46 |
47 | @if $important {
48 | $important: '!important';
49 | }
50 |
51 | $x: 0.1em;
52 |
53 | @if unit(_size(element-margin)) == 'rem' {
54 | $x: 0.1rem;
55 | }
56 |
57 | padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max($x, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};
58 |
59 | }
60 |
61 | /// Encodes a SVG data URL so IE doesn't choke (via codepen.io/jakob-e/pen/YXXBrp).
62 | /// @param {string} $svg SVG data URL.
63 | /// @return {string} Encoded SVG data URL.
64 | @function svg-url($svg) {
65 |
66 | $svg: str-replace($svg, '"', '\'');
67 | $svg: str-replace($svg, '%', '%25');
68 | $svg: str-replace($svg, '<', '%3C');
69 | $svg: str-replace($svg, '>', '%3E');
70 | $svg: str-replace($svg, '&', '%26');
71 | $svg: str-replace($svg, '#', '%23');
72 | $svg: str-replace($svg, '{', '%7B');
73 | $svg: str-replace($svg, '}', '%7D');
74 | $svg: str-replace($svg, ';', '%3B');
75 |
76 | @return url("data:image/svg+xml;charset=utf8,#{$svg}");
77 |
78 | }
--------------------------------------------------------------------------------
/assets/sass/libs/_vars.scss:
--------------------------------------------------------------------------------
1 | // Misc.
2 | $misc: (
3 | z-index-base: 10000,
4 | max-features: 20,
5 | max-sidebar-links: 20
6 | );
7 |
8 | // Duration.
9 | $duration: (
10 | transition: 0.2s,
11 | activation: 1s
12 | );
13 |
14 | // Size.
15 | $size: (
16 | border-radius: 0.25em,
17 | border-width: 1px,
18 | element-height: 2.75em,
19 | element-margin: 2em,
20 | sidebar-width: 18em,
21 | sidebar-height: 3.5em, // when <=large is active
22 | inner-width: 75em
23 | );
24 |
25 | // Font.
26 | $font: (
27 | family: (Arial, Helvetica, sans-serif),
28 | family-fixed: ('Courier New', monospace),
29 | weight: normal,
30 | weight-bold: bold,
31 | kerning-alt: 0.25em
32 | );
33 |
34 | // Palette.
35 | $palette: (
36 | bg: #312450,
37 | bg-alt: darken(#312450, 5),
38 | fg: rgba(255,255,255,0.55),
39 | fg-bold: #ffffff,
40 | fg-light: rgba(255,255,255,0.35),
41 | border: rgba(255,255,255,0.15),
42 | border-bg: rgba(255,255,255,0.05),
43 | accent1: #5e42a6,
44 | accent1-alt: darken(#5e42a6, 10),
45 | accent2: #5052b5,
46 | accent2-alt: darken(#5052b5, 10),
47 | accent3: #b74e91,
48 | accent3-alt: darken(#b74e91, 10)
49 | );
--------------------------------------------------------------------------------
/assets/sass/libs/_vendor.scss:
--------------------------------------------------------------------------------
1 | // vendor.scss v1.0 | @ajlkn | MIT licensed */
2 |
3 | // Vars.
4 |
5 | /// Vendor prefixes.
6 | /// @var {list}
7 | $vendor-prefixes: (
8 | '-moz-',
9 | '-webkit-',
10 | '-ms-',
11 | ''
12 | );
13 |
14 | /// Properties that should be vendorized.
15 | /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org
16 | /// @var {list}
17 | $vendor-properties: (
18 |
19 | // Animation.
20 | 'animation',
21 | 'animation-delay',
22 | 'animation-direction',
23 | 'animation-duration',
24 | 'animation-fill-mode',
25 | 'animation-iteration-count',
26 | 'animation-name',
27 | 'animation-play-state',
28 | 'animation-timing-function',
29 |
30 | // Appearance.
31 | 'appearance',
32 |
33 | // Backdrop filter.
34 | 'backdrop-filter',
35 |
36 | // Background image options.
37 | 'background-clip',
38 | 'background-origin',
39 | 'background-size',
40 |
41 | // Box sizing.
42 | 'box-sizing',
43 |
44 | // Clip path.
45 | 'clip-path',
46 |
47 | // Filter effects.
48 | 'filter',
49 |
50 | // Flexbox.
51 | 'align-content',
52 | 'align-items',
53 | 'align-self',
54 | 'flex',
55 | 'flex-basis',
56 | 'flex-direction',
57 | 'flex-flow',
58 | 'flex-grow',
59 | 'flex-shrink',
60 | 'flex-wrap',
61 | 'justify-content',
62 | 'order',
63 |
64 | // Font feature.
65 | 'font-feature-settings',
66 | 'font-language-override',
67 | 'font-variant-ligatures',
68 |
69 | // Font kerning.
70 | 'font-kerning',
71 |
72 | // Fragmented borders and backgrounds.
73 | 'box-decoration-break',
74 |
75 | // Grid layout.
76 | 'grid-column',
77 | 'grid-column-align',
78 | 'grid-column-end',
79 | 'grid-column-start',
80 | 'grid-row',
81 | 'grid-row-align',
82 | 'grid-row-end',
83 | 'grid-row-start',
84 | 'grid-template-columns',
85 | 'grid-template-rows',
86 |
87 | // Hyphens.
88 | 'hyphens',
89 | 'word-break',
90 |
91 | // Masks.
92 | 'mask',
93 | 'mask-border',
94 | 'mask-border-outset',
95 | 'mask-border-repeat',
96 | 'mask-border-slice',
97 | 'mask-border-source',
98 | 'mask-border-width',
99 | 'mask-clip',
100 | 'mask-composite',
101 | 'mask-image',
102 | 'mask-origin',
103 | 'mask-position',
104 | 'mask-repeat',
105 | 'mask-size',
106 |
107 | // Multicolumn.
108 | 'break-after',
109 | 'break-before',
110 | 'break-inside',
111 | 'column-count',
112 | 'column-fill',
113 | 'column-gap',
114 | 'column-rule',
115 | 'column-rule-color',
116 | 'column-rule-style',
117 | 'column-rule-width',
118 | 'column-span',
119 | 'column-width',
120 | 'columns',
121 |
122 | // Object fit.
123 | 'object-fit',
124 | 'object-position',
125 |
126 | // Regions.
127 | 'flow-from',
128 | 'flow-into',
129 | 'region-fragment',
130 |
131 | // Scroll snap points.
132 | 'scroll-snap-coordinate',
133 | 'scroll-snap-destination',
134 | 'scroll-snap-points-x',
135 | 'scroll-snap-points-y',
136 | 'scroll-snap-type',
137 |
138 | // Shapes.
139 | 'shape-image-threshold',
140 | 'shape-margin',
141 | 'shape-outside',
142 |
143 | // Tab size.
144 | 'tab-size',
145 |
146 | // Text align last.
147 | 'text-align-last',
148 |
149 | // Text decoration.
150 | 'text-decoration-color',
151 | 'text-decoration-line',
152 | 'text-decoration-skip',
153 | 'text-decoration-style',
154 |
155 | // Text emphasis.
156 | 'text-emphasis',
157 | 'text-emphasis-color',
158 | 'text-emphasis-position',
159 | 'text-emphasis-style',
160 |
161 | // Text size adjust.
162 | 'text-size-adjust',
163 |
164 | // Text spacing.
165 | 'text-spacing',
166 |
167 | // Transform.
168 | 'transform',
169 | 'transform-origin',
170 |
171 | // Transform 3D.
172 | 'backface-visibility',
173 | 'perspective',
174 | 'perspective-origin',
175 | 'transform-style',
176 |
177 | // Transition.
178 | 'transition',
179 | 'transition-delay',
180 | 'transition-duration',
181 | 'transition-property',
182 | 'transition-timing-function',
183 |
184 | // Unicode bidi.
185 | 'unicode-bidi',
186 |
187 | // User select.
188 | 'user-select',
189 |
190 | // Writing mode.
191 | 'writing-mode',
192 |
193 | );
194 |
195 | /// Values that should be vendorized.
196 | /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org
197 | /// @var {list}
198 | $vendor-values: (
199 |
200 | // Cross fade.
201 | 'cross-fade',
202 |
203 | // Element function.
204 | 'element',
205 |
206 | // Filter function.
207 | 'filter',
208 |
209 | // Flexbox.
210 | 'flex',
211 | 'inline-flex',
212 |
213 | // Grab cursors.
214 | 'grab',
215 | 'grabbing',
216 |
217 | // Gradients.
218 | 'linear-gradient',
219 | 'repeating-linear-gradient',
220 | 'radial-gradient',
221 | 'repeating-radial-gradient',
222 |
223 | // Grid layout.
224 | 'grid',
225 | 'inline-grid',
226 |
227 | // Image set.
228 | 'image-set',
229 |
230 | // Intrinsic width.
231 | 'max-content',
232 | 'min-content',
233 | 'fit-content',
234 | 'fill',
235 | 'fill-available',
236 | 'stretch',
237 |
238 | // Sticky position.
239 | 'sticky',
240 |
241 | // Transform.
242 | 'transform',
243 |
244 | // Zoom cursors.
245 | 'zoom-in',
246 | 'zoom-out',
247 |
248 | );
249 |
250 | // Functions.
251 |
252 | /// Removes a specific item from a list.
253 | /// @author Hugo Giraudel
254 | /// @param {list} $list List.
255 | /// @param {integer} $index Index.
256 | /// @return {list} Updated list.
257 | @function remove-nth($list, $index) {
258 |
259 | $result: null;
260 |
261 | @if type-of($index) != number {
262 | @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
263 | }
264 | @else if $index == 0 {
265 | @warn "List index 0 must be a non-zero integer for `remove-nth`.";
266 | }
267 | @else if abs($index) > length($list) {
268 | @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
269 | }
270 | @else {
271 |
272 | $result: ();
273 | $index: if($index < 0, length($list) + $index + 1, $index);
274 |
275 | @for $i from 1 through length($list) {
276 |
277 | @if $i != $index {
278 | $result: append($result, nth($list, $i));
279 | }
280 |
281 | }
282 |
283 | }
284 |
285 | @return $result;
286 |
287 | }
288 |
289 | /// Replaces a substring within another string.
290 | /// @author Hugo Giraudel
291 | /// @param {string} $string String.
292 | /// @param {string} $search Substring.
293 | /// @param {string} $replace Replacement.
294 | /// @return {string} Updated string.
295 | @function str-replace($string, $search, $replace: '') {
296 |
297 | $index: str-index($string, $search);
298 |
299 | @if $index {
300 | @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
301 | }
302 |
303 | @return $string;
304 |
305 | }
306 |
307 | /// Replaces a substring within each string in a list.
308 | /// @param {list} $strings List of strings.
309 | /// @param {string} $search Substring.
310 | /// @param {string} $replace Replacement.
311 | /// @return {list} Updated list of strings.
312 | @function str-replace-all($strings, $search, $replace: '') {
313 |
314 | @each $string in $strings {
315 | $strings: set-nth($strings, index($strings, $string), str-replace($string, $search, $replace));
316 | }
317 |
318 | @return $strings;
319 |
320 | }
321 |
322 | // Mixins.
323 |
324 | /// Wraps @content in vendorized keyframe blocks.
325 | /// @param {string} $name Name.
326 | @mixin keyframes($name) {
327 |
328 | @-moz-keyframes #{$name} { @content; }
329 | @-webkit-keyframes #{$name} { @content; }
330 | @-ms-keyframes #{$name} { @content; }
331 | @keyframes #{$name} { @content; }
332 |
333 | }
334 |
335 | /// Vendorizes a declaration's property and/or value(s).
336 | /// @param {string} $property Property.
337 | /// @param {mixed} $value String/list of value(s).
338 | @mixin vendor($property, $value) {
339 |
340 | // Determine if property should expand.
341 | $expandProperty: index($vendor-properties, $property);
342 |
343 | // Determine if value should expand (and if so, add '-prefix-' placeholder).
344 | $expandValue: false;
345 |
346 | @each $x in $value {
347 | @each $y in $vendor-values {
348 | @if $y == str-slice($x, 1, str-length($y)) {
349 |
350 | $value: set-nth($value, index($value, $x), '-prefix-' + $x);
351 | $expandValue: true;
352 |
353 | }
354 | }
355 | }
356 |
357 | // Expand property?
358 | @if $expandProperty {
359 | @each $vendor in $vendor-prefixes {
360 | #{$vendor}#{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
361 | }
362 | }
363 |
364 | // Expand just the value?
365 | @elseif $expandValue {
366 | @each $vendor in $vendor-prefixes {
367 | #{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
368 | }
369 | }
370 |
371 | // Neither? Treat them as a normal declaration.
372 | @else {
373 | #{$property}: #{$value};
374 | }
375 |
376 | }
--------------------------------------------------------------------------------
/assets/sass/main.scss:
--------------------------------------------------------------------------------
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 'fontawesome-all.min.css';
8 |
9 | /*
10 | Hyperspace by HTML5 UP
11 | html5up.net | @ajlkn
12 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
13 | */
14 |
15 | // Breakpoints.
16 |
17 | @include breakpoints((
18 | xlarge: ( 1281px, 1680px ),
19 | large: ( 981px, 1280px ),
20 | medium: ( 737px, 980px ),
21 | small: ( 481px, 736px ),
22 | xsmall: ( 361px, 480px ),
23 | xxsmall: ( null, 360px )
24 | ));
25 |
26 | // Base.
27 |
28 | @import 'base/reset';
29 | @import 'base/page';
30 | @import 'base/typography';
31 |
32 | // Component.
33 |
34 | @import 'components/row';
35 | @import 'components/box';
36 | @import 'components/button';
37 | @import 'components/features';
38 | @import 'components/form';
39 | @import 'components/icon';
40 | @import 'components/image';
41 | @import 'components/list';
42 | @import 'components/actions';
43 | @import 'components/contact';
44 | @import 'components/icons';
45 | @import 'components/menu';
46 | @import 'components/section';
47 | @import 'components/split';
48 | @import 'components/spotlights';
49 | @import 'components/table';
50 | @import 'components/wrapper';
51 |
52 | // Layout.
53 |
54 | @import 'layout/header';
55 | @import 'layout/wrapper';
56 | @import 'layout/footer';
57 | @import 'layout/sidebar';
58 | @import 'layout/intro';
--------------------------------------------------------------------------------
/assets/sass/noscript.scss:
--------------------------------------------------------------------------------
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 |
8 | /*
9 | Hyperspace by HTML5 UP
10 | html5up.net | @ajlkn
11 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
12 | */
13 |
14 | /* Spotlights */
15 |
16 | .spotlights {
17 | > section {
18 | > .image {
19 | &:before {
20 | opacity: 0 !important;
21 | }
22 | }
23 |
24 | > .content {
25 | > .inner {
26 | @include vendor('transform', 'none !important');
27 | opacity: 1 !important;
28 | }
29 | }
30 | }
31 | }
32 |
33 | /* Wrapper */
34 |
35 | .wrapper {
36 | > .inner {
37 | opacity: 1 !important;
38 | @include vendor('transform', 'none !important');
39 | }
40 | }
41 |
42 | /* Sidebar */
43 |
44 | #sidebar {
45 | > .inner {
46 | opacity: 1 !important;
47 | }
48 |
49 | nav {
50 | > ul {
51 | > li {
52 | @include vendor('transform', 'none !important');
53 | opacity: 1 !important;
54 | }
55 | }
56 | }
57 | }
--------------------------------------------------------------------------------
/assets/webfonts/fa-brands-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-brands-400.eot
--------------------------------------------------------------------------------
/assets/webfonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/assets/webfonts/fa-brands-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-brands-400.woff
--------------------------------------------------------------------------------
/assets/webfonts/fa-brands-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-brands-400.woff2
--------------------------------------------------------------------------------
/assets/webfonts/fa-regular-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-regular-400.eot
--------------------------------------------------------------------------------
/assets/webfonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/assets/webfonts/fa-regular-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-regular-400.woff
--------------------------------------------------------------------------------
/assets/webfonts/fa-regular-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-regular-400.woff2
--------------------------------------------------------------------------------
/assets/webfonts/fa-solid-900.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-solid-900.eot
--------------------------------------------------------------------------------
/assets/webfonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/assets/webfonts/fa-solid-900.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-solid-900.woff
--------------------------------------------------------------------------------
/assets/webfonts/fa-solid-900.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/assets/webfonts/fa-solid-900.woff2
--------------------------------------------------------------------------------
/elements.html:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
Elements - Hyperspace by HTML5 UP
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
Elements
36 |
37 |
38 |
39 | Text
40 | This is bold and this is strong . This is italic and this is emphasized .
41 | This is superscript text and this is subscript text.
42 | This is underlined and this is code: for (;;) { ... }
. Finally, this is a link .
43 |
44 | Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.
45 |
46 | Heading Level 2
47 | Heading Level 3
48 | Heading Level 4
49 |
50 | Blockquote
51 | Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan faucibus. Vestibulum ante ipsum primis in faucibus lorem ipsum dolor sit amet nullam adipiscing eu felis.
52 | Preformatted
53 | i = 0;
54 |
55 | while (!deck.isInOrder()) {
56 | print 'Iteration ' + i;
57 | deck.shuffle();
58 | i++;
59 | }
60 |
61 | print 'It took ' + i + ' iterations to sort the deck.';
62 |
63 |
64 |
65 |
66 | Lists
67 |
68 |
69 |
Unordered
70 |
71 | Dolor pulvinar etiam.
72 | Sagittis adipiscing.
73 | Felis enim feugiat.
74 |
75 |
Alternate
76 |
77 | Dolor pulvinar etiam.
78 | Sagittis adipiscing.
79 | Felis enim feugiat.
80 |
81 |
82 |
83 |
Ordered
84 |
85 | Dolor pulvinar etiam.
86 | Etiam vel felis viverra.
87 | Felis enim feugiat.
88 | Dolor pulvinar etiam.
89 | Etiam vel felis lorem.
90 | Felis enim et feugiat.
91 |
92 |
Icons
93 |
99 |
100 |
101 | Actions
102 |
103 |
104 |
108 |
112 |
116 |
120 |
121 |
131 |
132 |
133 |
134 |
135 |
136 | Table
137 | Default
138 |
139 |
140 |
141 |
142 | Name
143 | Description
144 | Price
145 |
146 |
147 |
148 |
149 | Item One
150 | Ante turpis integer aliquet porttitor.
151 | 29.99
152 |
153 |
154 | Item Two
155 | Vis ac commodo adipiscing arcu aliquet.
156 | 19.99
157 |
158 |
159 | Item Three
160 | Morbi faucibus arcu accumsan lorem.
161 | 29.99
162 |
163 |
164 | Item Four
165 | Vitae integer tempus condimentum.
166 | 19.99
167 |
168 |
169 | Item Five
170 | Ante turpis integer aliquet porttitor.
171 | 29.99
172 |
173 |
174 |
175 |
176 |
177 | 100.00
178 |
179 |
180 |
181 |
182 |
183 | Alternate
184 |
185 |
186 |
187 |
188 | Name
189 | Description
190 | Price
191 |
192 |
193 |
194 |
195 | Item One
196 | Ante turpis integer aliquet porttitor.
197 | 29.99
198 |
199 |
200 | Item Two
201 | Vis ac commodo adipiscing arcu aliquet.
202 | 19.99
203 |
204 |
205 | Item Three
206 | Morbi faucibus arcu accumsan lorem.
207 | 29.99
208 |
209 |
210 | Item Four
211 | Vitae integer tempus condimentum.
212 | 19.99
213 |
214 |
215 | Item Five
216 | Ante turpis integer aliquet porttitor.
217 | 29.99
218 |
219 |
220 |
221 |
222 |
223 | 100.00
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 | Buttons
233 |
237 |
242 |
247 |
252 |
257 |
258 | Disabled
259 | Disabled
260 |
261 |
262 |
263 |
264 |
315 |
316 |
317 |
318 | Image
319 | Fit
320 |
334 | Left & Right
335 | Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.
336 | Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
--------------------------------------------------------------------------------
/generic.html:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
Generic - Hyperspace by HTML5 UP
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
A Generic Page
36 |
37 |
Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis. Praesent rutrum sem diam, vitae egestas enim auctor sit amet. Pellentesque leo mauris, consectetur id ipsum sit amet, fergiat. Pellentesque in mi eu massa lacinia malesuada et a elit. Donec urna ex, lacinia in purus ac, pretium pulvinar mauris. Curabitur sapien risus, commodo eget turpis at, elementum convallis elit. Pellentesque enim turpis, hendrerit tristique.
38 |
Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis. Praesent rutrum sem diam, vitae egestas enim auctor sit amet. Pellentesque leo mauris, consectetur id ipsum sit amet, fersapien risus, commodo eget turpis at, elementum convallis elit. Pellentesque enim turpis, hendrerit tristique lorem ipsum dolor.
39 |
40 |
41 |
42 |
43 |
44 |
45 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/images/html5up-vantajs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/images/html5up-vantajs.png
--------------------------------------------------------------------------------
/images/pic01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/images/pic01.jpg
--------------------------------------------------------------------------------
/images/pic02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/images/pic02.jpg
--------------------------------------------------------------------------------
/images/pic03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/images/pic03.jpg
--------------------------------------------------------------------------------
/images/pic04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/images/pic04.jpg
--------------------------------------------------------------------------------
/images/pic05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/images/pic05.jpg
--------------------------------------------------------------------------------
/images/pic06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulbradish/html5up-vantajs/381cf89d1d69ce51352621ba5d7db0ac522a5c62/images/pic06.jpg
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
10 |
11 |
12 |
Hyperspace by HTML5 UP
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
Hyperspace
41 |
Just another fine responsive site template designed by HTML5 UP
42 | and released for free under the Creative Commons .
43 |
46 |
47 |
48 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
Sed ipsum dolor
73 |
Phasellus convallis elit id ullamcorper pulvinar. Duis aliquam turpis mauris, eu ultricies erat malesuada quis. Aliquam dapibus.
74 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
Feugiat consequat
85 |
Phasellus convallis elit id ullamcorper pulvinar. Duis aliquam turpis mauris, eu ultricies erat malesuada quis. Aliquam dapibus.
86 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
Ultricies aliquam
97 |
Phasellus convallis elit id ullamcorper pulvinar. Duis aliquam turpis mauris, eu ultricies erat malesuada quis. Aliquam dapibus.
98 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
What we do
110 |
Phasellus convallis elit id ullamcorper pulvinar. Duis aliquam turpis mauris, eu ultricies erat malesuada quis. Aliquam dapibus, lacus eget hendrerit bibendum, urna est aliquam sem, sit amet imperdiet est velit quis lorem.
111 |
112 |
113 |
114 | Lorem ipsum amet
115 | Phasellus convallis elit id ullam corper amet et pulvinar. Duis aliquam turpis mauris, sed ultricies erat dapibus.
116 |
117 |
118 |
119 | Aliquam sed nullam
120 | Phasellus convallis elit id ullam corper amet et pulvinar. Duis aliquam turpis mauris, sed ultricies erat dapibus.
121 |
122 |
123 |
124 | Sed erat ullam corper
125 | Phasellus convallis elit id ullam corper amet et pulvinar. Duis aliquam turpis mauris, sed ultricies erat dapibus.
126 |
127 |
128 |
129 | Veroeros quis lorem
130 | Phasellus convallis elit id ullam corper amet et pulvinar. Duis aliquam turpis mauris, sed ultricies erat dapibus.
131 |
132 |
133 |
134 | Urna quis bibendum
135 | Phasellus convallis elit id ullam corper amet et pulvinar. Duis aliquam turpis mauris, sed ultricies erat dapibus.
136 |
137 |
138 |
139 | Aliquam urna dapibus
140 | Phasellus convallis elit id ullam corper amet et pulvinar. Duis aliquam turpis mauris, sed ultricies erat dapibus.
141 |
142 |
143 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
Get in touch
153 |
Phasellus convallis elit id ullamcorper pulvinar. Duis aliquam turpis mauris, eu ultricies erat malesuada quis. Aliquam dapibus, lacus eget hendrerit bibendum, urna est aliquam sem, sit amet imperdiet est velit quis lorem.
154 |
155 |
156 |
157 |
158 |
159 | Name
160 |
161 |
162 |
163 | Email
164 |
165 |
166 |
167 | Message
168 |
169 |
170 |
171 |
174 |
175 |
176 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
--------------------------------------------------------------------------------