')
- .append(i.clone())
- .remove()
- .html()
- .replace(/type="password"/i, 'type="text"')
- .replace(/type=password/i, 'type=text')
- );
-
- if (i.attr('id') != '')
- x.attr('id', i.attr('id') + '-polyfill-field');
-
- if (i.attr('name') != '')
- x.attr('name', i.attr('name') + '-polyfill-field');
-
- x.addClass('polyfill-placeholder')
- .val(x.attr('placeholder')).insertAfter(i);
-
- if (i.val() == '')
- i.hide();
- else
- x.hide();
-
- i
- .on('blur', function(event) {
-
- event.preventDefault();
-
- var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
-
- if (i.val() == '') {
-
- i.hide();
- x.show();
-
- }
-
- });
-
- x
- .on('focus', function(event) {
-
- event.preventDefault();
-
- var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']');
-
- x.hide();
-
- i
- .show()
- .focus();
-
- })
- .on('keypress', function(event) {
-
- event.preventDefault();
- x.val('');
-
- });
-
- });
-
- // Events.
- $this
- .on('submit', function() {
-
- $this.find('input[type=text],input[type=password],textarea')
- .each(function(event) {
-
- var i = $(this);
-
- if (i.attr('name').match(/-polyfill-field$/))
- i.attr('name', '');
-
- if (i.val() == i.attr('placeholder')) {
-
- i.removeClass('polyfill-placeholder');
- i.val('');
-
- }
-
- });
-
- })
- .on('reset', function(event) {
-
- event.preventDefault();
-
- $this.find('select')
- .val($('option:first').val());
-
- $this.find('input,textarea')
- .each(function() {
-
- var i = $(this),
- x;
-
- i.removeClass('polyfill-placeholder');
-
- switch (this.type) {
-
- case 'submit':
- case 'reset':
- break;
-
- case 'password':
- i.val(i.attr('defaultValue'));
-
- x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
-
- if (i.val() == '') {
- i.hide();
- x.show();
- }
- else {
- i.show();
- x.hide();
- }
-
- break;
-
- case 'checkbox':
- case 'radio':
- i.attr('checked', i.attr('defaultValue'));
- break;
-
- case 'text':
- case 'textarea':
- i.val(i.attr('defaultValue'));
-
- if (i.val() == '') {
- i.addClass('polyfill-placeholder');
- i.val(i.attr('placeholder'));
- }
-
- break;
-
- default:
- i.val(i.attr('defaultValue'));
- break;
-
- }
- });
-
- });
-
- return $this;
-
- };
-
- /**
- * Moves elements to/from the first positions of their respective parents.
- * @param {jQuery} $elements Elements (or selector) to move.
- * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations.
- */
- $.prioritize = function($elements, condition) {
-
- var key = '__prioritize';
-
- // Expand $elements if it's not already a jQuery object.
- if (typeof $elements != 'jQuery')
- $elements = $($elements);
-
- // Step through elements.
- $elements.each(function() {
-
- var $e = $(this), $p,
- $parent = $e.parent();
-
- // No parent? Bail.
- if ($parent.length == 0)
- return;
-
- // Not moved? Move it.
- if (!$e.data(key)) {
-
- // Condition is false? Bail.
- if (!condition)
- return;
-
- // Get placeholder (which will serve as our point of reference for when this element needs to move back).
- $p = $e.prev();
-
- // Couldn't find anything? Means this element's already at the top, so bail.
- if ($p.length == 0)
- return;
-
- // Move element to top of parent.
- $e.prependTo($parent);
-
- // Mark element as moved.
- $e.data(key, $p);
-
- }
-
- // Moved already?
- else {
-
- // Condition is true? Bail.
- if (condition)
- return;
-
- $p = $e.data(key);
-
- // Move element back to its original location (using our placeholder).
- $e.insertAfter($p);
-
- // Unmark element as moved.
- $e.removeData(key);
-
- }
-
- });
-
- };
-
-})(jQuery);
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/base/_page.scss b/html5up-forty/assets/sass/base/_page.scss
deleted file mode 100644
index bb2827a..0000000
--- a/html5up-forty/assets/sass/base/_page.scss
+++ /dev/null
@@ -1,47 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Basic */
-
- // MSIE: Required for IEMobile.
- @-ms-viewport {
- width: device-width;
- }
-
- // MSIE: Prevents scrollbar from overlapping content.
- body {
- -ms-overflow-style: scrollbar;
- }
-
- // Ensures page width is always >=320px.
- @include breakpoint('<=xsmall') {
- html, body {
- min-width: 320px;
- }
- }
-
- // Set box model to border-box.
- // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
- html {
- box-sizing: border-box;
- }
-
- *, *:before, *:after {
- box-sizing: inherit;
- }
-
- body {
- background: _palette(bg);
-
- // Stops initial animations until page loads.
- &.is-preload {
- *, *:before, *:after {
- @include vendor('animation', 'none !important');
- @include vendor('transition', 'none !important');
- }
- }
-
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/base/_reset.scss b/html5up-forty/assets/sass/base/_reset.scss
deleted file mode 100644
index 6b1a382..0000000
--- a/html5up-forty/assets/sass/base/_reset.scss
+++ /dev/null
@@ -1,76 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-// Reset.
-// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
-
- html, body, div, span, applet, object,
- iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
- pre, a, abbr, acronym, address, big, cite,
- code, del, dfn, em, img, ins, kbd, q, s, samp,
- small, strike, strong, sub, sup, tt, var, b,
- u, i, center, dl, dt, dd, ol, ul, li, fieldset,
- form, label, legend, table, caption, tbody,
- tfoot, thead, tr, th, td, article, aside,
- canvas, details, embed, figure, figcaption,
- footer, header, hgroup, menu, nav, output, ruby,
- section, summary, time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
- }
-
- article, aside, details, figcaption, figure,
- footer, header, hgroup, menu, nav, section {
- display: block;
- }
-
- body {
- line-height: 1;
- }
-
- ol, ul {
- list-style:none;
- }
-
- blockquote, q {
- quotes: none;
-
- &:before,
- &:after {
- content: '';
- content: none;
- }
- }
-
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
-
- body {
- -webkit-text-size-adjust: none;
- }
-
- mark {
- background-color: transparent;
- color: inherit;
- }
-
- input::-moz-focus-inner {
- border: 0;
- padding: 0;
- }
-
- input, select, textarea {
- -moz-appearance: none;
- -webkit-appearance: none;
- -ms-appearance: none;
- appearance: none;
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/base/_typography.scss b/html5up-forty/assets/sass/base/_typography.scss
deleted file mode 100644
index a1369e3..0000000
--- a/html5up-forty/assets/sass/base/_typography.scss
+++ /dev/null
@@ -1,173 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Type */
-
- body, input, select, textarea {
- color: _palette(fg);
- font-family: _font(family);
- font-size: 17pt;
- font-weight: _font(weight);
- letter-spacing: _font(letter-spacing);
- line-height: 1.65;
-
- @include breakpoint('<=xlarge') {
- font-size: 14pt;
- }
-
- @include breakpoint('<=large') {
- font-size: 12pt;
- }
-
- @include breakpoint('<=xxsmall') {
- font-size: 11pt;
- }
- }
-
- a {
- @include vendor('transition', (
- 'color #{_duration(transition)} ease-in-out',
- 'border-bottom-color #{_duration(transition)} ease-in-out'
- ));
- border-bottom: dotted 1px;
- color: inherit;
- text-decoration: none;
-
- &:hover {
- border-bottom-color: transparent;
- color: _palette(highlight) !important;
- }
-
- &:active {
- color: desaturate(darken(_palette(highlight), 15), 5) !important;
- }
- }
-
- strong, b {
- color: _palette(fg-bold);
- font-weight: _font(weight-bold);
- }
-
- em, i {
- font-style: italic;
- }
-
- p {
- margin: 0 0 _size(element-margin) 0;
- }
-
- h1, h2, h3, h4, h5, h6 {
- color: _palette(fg-bold);
- font-weight: _font(weight-bold);
- line-height: 1.65;
- margin: 0 0 (_size(element-margin) * 0.5) 0;
-
- a {
- color: inherit;
- border-bottom: 0;
- }
- }
-
- h1 {
- font-size: 2.5em;
- }
-
- h2 {
- font-size: 1.75em;
- }
-
- h3 {
- font-size: 1.35em;
- }
-
- h4 {
- font-size: 1.1em;
- }
-
- h5 {
- font-size: 0.9em;
- }
-
- h6 {
- font-size: 0.7em;
- }
-
- @include breakpoint('<=small') {
- h1 {
- font-size: 2em;
- }
-
- h2 {
- font-size: 1.5em;
- }
-
- h3 {
- font-size: 1.25em;
- }
- }
-
- sub {
- font-size: 0.8em;
- position: relative;
- top: 0.5em;
- }
-
- sup {
- font-size: 0.8em;
- position: relative;
- top: -0.5em;
- }
-
- blockquote {
- border-left: solid 4px _palette(border);
- font-style: italic;
- margin: 0 0 _size(element-margin) 0;
- padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
- }
-
- code {
- background: _palette(border-bg);
- font-family: _font(family-fixed);
- font-size: 0.9em;
- margin: 0 0.25em;
- padding: 0.25em 0.65em;
- }
-
- pre {
- -webkit-overflow-scrolling: touch;
- font-family: _font(family-fixed);
- font-size: 0.9em;
- margin: 0 0 _size(element-margin) 0;
-
- code {
- display: block;
- line-height: 1.75;
- padding: 1em 1.5em;
- overflow-x: auto;
- }
- }
-
- hr {
- border: 0;
- border-bottom: solid 1px _palette(border);
- margin: _size(element-margin) 0;
-
- &.major {
- margin: (_size(element-margin) * 1.5) 0;
- }
- }
-
- .align-left {
- text-align: left;
- }
-
- .align-center {
- text-align: center;
- }
-
- .align-right {
- text-align: right;
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_actions.scss b/html5up-forty/assets/sass/components/_actions.scss
deleted file mode 100644
index 891fb6d..0000000
--- a/html5up-forty/assets/sass/components/_actions.scss
+++ /dev/null
@@ -1,63 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Actions */
-
- ul.actions {
- @include vendor('display', 'flex');
- cursor: default;
- list-style: none;
- margin-left: (_size(element-margin) * -0.5);
- padding-left: 0;
-
- li {
- padding: 0 0 0 (_size(element-margin) * 0.5);
- vertical-align: middle;
- }
-
- &.special {
- @include vendor('justify-content', 'center');
- width: 100%;
- margin-left: 0;
-
- li {
- &:first-child {
- padding-left: 0;
- }
- }
- }
-
- &.stacked {
- @include vendor('flex-direction', 'column');
- margin-left: 0;
-
- li {
- padding: (_size(element-margin) * 0.65) 0 0 0;
-
- &:first-child {
- padding-top: 0;
- }
- }
- }
-
- &.fit {
- width: calc(100% + #{_size(element-margin) * 0.5});
-
- li {
- @include vendor('flex-grow', '1');
- @include vendor('flex-shrink', '1');
- width: 100%;
-
- > * {
- width: 100%;
- }
- }
-
- &.stacked {
- width: 100%;
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_box.scss b/html5up-forty/assets/sass/components/_box.scss
deleted file mode 100644
index 45a37a0..0000000
--- a/html5up-forty/assets/sass/components/_box.scss
+++ /dev/null
@@ -1,25 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Box */
-
- .box {
- border: solid 1px _palette(border);
- margin-bottom: _size(element-margin);
- padding: 1.5em;
-
- > :last-child,
- > :last-child > :last-child,
- > :last-child > :last-child > :last-child {
- margin-bottom: 0;
- }
-
- &.alt {
- border: 0;
- border-radius: 0;
- padding: 0;
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_button.scss b/html5up-forty/assets/sass/components/_button.scss
deleted file mode 100644
index fc903c1..0000000
--- a/html5up-forty/assets/sass/components/_button.scss
+++ /dev/null
@@ -1,130 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Button */
-
- input[type="submit"],
- input[type="reset"],
- input[type="button"],
- button,
- .button {
- @include vendor('appearance', 'none');
- @include vendor('transition', (
- 'background-color #{_duration(transition)} ease-in-out',
- 'box-shadow #{_duration(transition)} ease-in-out',
- 'color #{_duration(transition)} ease-in-out'
- ));
- background-color: transparent;
- border: 0;
- border-radius: 0;
- box-shadow: inset 0 0 0 2px _palette(fg-bold);
- color: _palette(fg-bold);
- cursor: pointer;
- display: inline-block;
- font-size: 0.8em;
- font-weight: _font(weight-bold);
- height: 3.5em;
- letter-spacing: _font(letter-spacing-alt);
- line-height: 3.5em;
- padding: 0 1.75em;
- text-align: center;
- text-decoration: none;
- text-transform: uppercase;
- white-space: nowrap;
-
- &:hover, &:active {
- box-shadow: inset 0 0 0 2px _palette(highlight);
- color: _palette(highlight);
- }
-
- &:active {
- background-color: transparentize(_palette(highlight), 0.9);
- box-shadow: inset 0 0 0 2px desaturate(darken(_palette(highlight), 15), 5);
- color: desaturate(darken(_palette(highlight), 15), 5);
- }
-
- &.icon {
- &:before {
- margin-right: 0.5em;
- }
- }
-
- &.fit {
- width: 100%;
- }
-
- &.small {
- font-size: 0.6em;
- }
-
- &.large {
- font-size: 1.25em;
- height: 3em;
- line-height: 3em;
- }
-
- &.next {
- padding-right: 4.5em;
- position: relative;
-
- &:before, &:after {
- @include vendor('transition', 'opacity #{_duration(transition)} ease-in-out');
- background-position: center right;
- background-repeat: no-repeat;
- background-size: 36px 24px;
- content: '';
- display: block;
- height: 100%;
- position: absolute;
- right: 1.5em;
- top: 0;
- vertical-align: middle;
- width: 36px;
- }
-
- &:before {
- background-image: svg-url('
');
- }
-
- &:after {
- background-image: svg-url('
');
- opacity: 0;
- z-index: 1;
- }
-
- &:hover, &:active {
- &:after {
- opacity: 1;
- }
- }
-
- @include breakpoint('<=large') {
- padding-right: 5em;
- }
- }
-
- &.primary {
- background-color: _palette(fg-bold);
- box-shadow: none;
- color: _palette(bg);
-
- &:hover, &:active {
- background-color: _palette(highlight);
- color: _palette(bg) !important;
- }
-
- &:active {
- background-color: desaturate(darken(_palette(highlight), 15), 5);
- }
- }
-
- &.disabled,
- &:disabled {
- @include vendor('pointer-events', 'none');
- cursor: default;
- opacity: 0.25;
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_contact-method.scss b/html5up-forty/assets/sass/components/_contact-method.scss
deleted file mode 100644
index 910d817..0000000
--- a/html5up-forty/assets/sass/components/_contact-method.scss
+++ /dev/null
@@ -1,23 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Contact Method */
-
- .contact-method {
- margin: 0 0 _size(element-margin) 0;
- padding-left: 3.25em;
- position: relative;
-
- .icon {
- left: 0;
- position: absolute;
- top: 0;
- }
-
- h3 {
- margin: 0 0 (_size(element-margin) * 0.25) 0;
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_form.scss b/html5up-forty/assets/sass/components/_form.scss
deleted file mode 100644
index fed297d..0000000
--- a/html5up-forty/assets/sass/components/_form.scss
+++ /dev/null
@@ -1,234 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Form */
-
- form {
- margin: 0 0 _size(element-margin) 0;
-
- > :last-child {
- margin-bottom: 0;
- }
-
- > .fields {
- $gutter: (_size(element-margin) * 0.75);
-
- @include vendor('display', 'flex');
- @include vendor('flex-wrap', 'wrap');
- width: calc(100% + #{$gutter * 2});
- margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
-
- > .field {
- @include vendor('flex-grow', '0');
- @include vendor('flex-shrink', '0');
- padding: $gutter 0 0 $gutter;
- width: calc(100% - #{$gutter * 1});
-
- &.half {
- width: calc(50% - #{$gutter * 0.5});
- }
-
- &.third {
- width: calc(#{100% / 3} - #{$gutter * (1 / 3)});
- }
-
- &.quarter {
- width: calc(25% - #{$gutter * 0.25});
- }
- }
- }
-
- @include breakpoint('<=xsmall') {
- > .fields {
- $gutter: (_size(element-margin) * 0.75);
-
- width: calc(100% + #{$gutter * 2});
- margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
-
- > .field {
- padding: $gutter 0 0 $gutter;
- width: calc(100% - #{$gutter * 1});
-
- &.half {
- width: calc(100% - #{$gutter * 1});
- }
-
- &.third {
- width: calc(100% - #{$gutter * 1});
- }
-
- &.quarter {
- width: calc(100% - #{$gutter * 1});
- }
- }
- }
- }
- }
-
- label {
- color: _palette(fg-bold);
- display: block;
- font-size: 0.8em;
- font-weight: _font(weight-bold);
- letter-spacing: _font(letter-spacing-alt);
- margin: 0 0 (_size(element-margin) * 0.5) 0;
- text-transform: uppercase;
- }
-
- input[type="text"],
- input[type="password"],
- input[type="email"],
- input[type="tel"],
- input[type="search"],
- input[type="url"],
- select,
- textarea {
- @include vendor('appearance', 'none');
- background: _palette(border-bg);
- border: none;
- border-radius: 0;
- color: inherit;
- display: block;
- outline: 0;
- padding: 0 1em;
- text-decoration: none;
- width: 100%;
-
- &:invalid {
- box-shadow: none;
- }
-
- &:focus {
- border-color: _palette(highlight);
- box-shadow: 0 0 0 2px _palette(highlight);
- }
- }
-
- select {
- background-image: svg-url("
");
- background-size: 1.25rem;
- background-repeat: no-repeat;
- background-position: calc(100% - 1rem) center;
- height: _size(element-height);
- padding-right: _size(element-height);
- text-overflow: ellipsis;
-
- option {
- color: _palette(fg-bold);
- background: _palette(bg);
- }
-
- &:focus {
- &::-ms-value {
- background-color: transparent;
- }
- }
-
- &::-ms-expand {
- display: none;
- }
- }
-
- input[type="text"],
- input[type="password"],
- input[type="email"],
- input[type="tel"],
- input[type="search"],
- input[type="url"],
- select {
- height: _size(element-height);
- }
-
- textarea {
- padding: 0.75em 1em;
- }
-
- input[type="checkbox"],
- input[type="radio"], {
- @include vendor('appearance', 'none');
- display: block;
- float: left;
- margin-right: -2em;
- opacity: 0;
- width: 1em;
- z-index: -1;
-
- & + label {
- @include icon(false, solid);
- color: _palette(fg);
- cursor: pointer;
- display: inline-block;
- font-weight: _font(weight);
- padding-left: (_size(element-height) * 0.6) + 1em;
- padding-right: 0.75em;
- position: relative;
-
- &:before {
- background: _palette(border-bg);
- content: '';
- display: inline-block;
- font-size: 0.8em;
- height: (_size(element-height) * 0.75);
- left: 0;
- letter-spacing: 0;
- line-height: (_size(element-height) * 0.75);
- position: absolute;
- text-align: center;
- top: 0;
- width: (_size(element-height) * 0.75);
- }
- }
-
- &:checked + label {
- &:before {
- background: _palette(fg-bold);
- border-color: _palette(highlight);
- content: '\f00c';
- color: _palette(bg);
- }
- }
-
- &:focus + label {
- &:before {
- box-shadow: 0 0 0 2px _palette(highlight);
- }
- }
- }
-
- input[type="checkbox"] {
- & + label {
- &:before {
- }
- }
- }
-
- input[type="radio"] {
- & + label {
- &:before {
- border-radius: 100%;
- }
- }
- }
-
- ::-webkit-input-placeholder {
- color: _palette(fg-light) !important;
- opacity: 1.0;
- }
-
- :-moz-placeholder {
- color: _palette(fg-light) !important;
- opacity: 1.0;
- }
-
- ::-moz-placeholder {
- color: _palette(fg-light) !important;
- opacity: 1.0;
- }
-
- :-ms-input-placeholder {
- color: _palette(fg-light) !important;
- opacity: 1.0;
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_icon.scss b/html5up-forty/assets/sass/components/_icon.scss
deleted file mode 100644
index 212f337..0000000
--- a/html5up-forty/assets/sass/components/_icon.scss
+++ /dev/null
@@ -1,66 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Icon */
-
- .icon {
- @include icon;
- border-bottom: none;
- position: relative;
-
- > .label {
- display: none;
- }
-
- &:before {
- line-height: inherit;
- }
-
- &.solid {
- &:before {
- font-weight: 900;
- }
- }
-
- &.brands {
- &:before {
- font-family: 'Font Awesome 5 Brands';
- }
- }
-
- &.alt {
- &:before {
- background-color: _palette(fg-bold);
- border-radius: 100%;
- color: _palette(bg);
- display: inline-block;
- height: 2em;
- line-height: 2em;
- text-align: center;
- width: 2em;
- }
- }
- }
-
- a.icon {
- &.alt {
- &:before {
- @include vendor('transition', 'background-color #{_duration(transition)} ease-in-out');
- }
-
- &:hover {
- &:before {
- background-color: _palette(accent1);
- }
- }
-
- &:active {
- &:before {
- background-color: desaturate(darken(_palette(accent1), 15), 5);
- }
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_icons.scss b/html5up-forty/assets/sass/components/_icons.scss
deleted file mode 100644
index cc819b1..0000000
--- a/html5up-forty/assets/sass/components/_icons.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Icons */
-
- ul.icons {
- cursor: default;
- list-style: none;
- padding-left: 0;
-
- li {
- display: inline-block;
- padding: 0 1em 0 0;
-
- &:last-child {
- padding-right: 0;
- }
- }
-
- @include breakpoint('<=small') {
- li {
- padding: 0 0.75em 0 0;
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_image.scss b/html5up-forty/assets/sass/components/_image.scss
deleted file mode 100644
index 1cefb63..0000000
--- a/html5up-forty/assets/sass/components/_image.scss
+++ /dev/null
@@ -1,62 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Image */
-
- .image {
- border: 0;
- display: inline-block;
- position: relative;
-
- img {
- display: block;
- }
-
- &.left,
- &.right {
- max-width: 30%;
-
- img {
- width: 100%;
- }
- }
-
- &.left {
- float: left;
- margin: 0 1.5em 1.25em 0;
- top: 0.25em;
- }
-
- &.right {
- float: right;
- margin: 0 0 1.25em 1.5em;
- top: 0.25em;
- }
-
- &.fit {
- display: block;
- margin: 0 0 _size(element-margin) 0;
- width: 100%;
-
- img {
- width: 100%;
- }
- }
-
- &.main {
- display: block;
- margin: (_size(element-margin) * 1.25) 0;
- width: 100%;
-
- img {
- width: 100%;
- }
-
- @include breakpoint('<=small') {
- margin: (_size(element-margin) * 0.75) 0;
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_list.scss b/html5up-forty/assets/sass/components/_list.scss
deleted file mode 100644
index 56989df..0000000
--- a/html5up-forty/assets/sass/components/_list.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* List */
-
- ol {
- list-style: decimal;
- margin: 0 0 _size(element-margin) 0;
- padding-left: 1.25em;
-
- li {
- padding-left: 0.25em;
- }
- }
-
- ul {
- list-style: disc;
- margin: 0 0 _size(element-margin) 0;
- padding-left: 1em;
-
- li {
- padding-left: 0.5em;
- }
-
- &.alt {
- list-style: none;
- padding-left: 0;
-
- li {
- border-top: solid 1px _palette(border);
- padding: 0.5em 0;
-
- &:first-child {
- border-top: 0;
- padding-top: 0;
- }
- }
- }
- }
-
- dl {
- margin: 0 0 _size(element-margin) 0;
-
- dt {
- display: block;
- font-weight: _font(weight-bold);
- margin: 0 0 (_size(element-margin) * 0.5) 0;
- }
-
- dd {
- margin-left: _size(element-margin);
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_pagination.scss b/html5up-forty/assets/sass/components/_pagination.scss
deleted file mode 100644
index 0059795..0000000
--- a/html5up-forty/assets/sass/components/_pagination.scss
+++ /dev/null
@@ -1,70 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Pagination */
-
- ul.pagination {
- cursor: default;
- list-style: none;
- padding-left: 0;
-
- li {
- display: inline-block;
- padding-left: 0;
- vertical-align: middle;
-
- > .page {
- @include vendor('transition', (
- 'background-color #{_duration(transition)} ease-in-out',
- 'color #{_duration(transition)} ease-in-out'
- ));
- border-bottom: 0;
- display: inline-block;
- font-size: 0.8em;
- font-weight: _font(weight-bold);
- height: 1.5em;
- line-height: 1.5em;
- margin: 0 0.125em;
- min-width: 1.5em;
- padding: 0 0.5em;
- text-align: center;
-
- &.active {
- background-color: _palette(fg-bold);
- color: _palette(bg);
-
- &:hover {
- background-color: _palette(highlight);
- color: _palette(bg) !important;
- }
-
- &:active {
- background-color: desaturate(darken(_palette(highlight), 15), 5);
- }
- }
- }
-
- &:first-child {
- padding-right: 0.75em;
- }
-
- &:last-child {
- padding-left: 0.75em;
- }
- }
-
- @include breakpoint('<=xsmall') {
- li {
- &:nth-child(n+2):nth-last-child(n+2) {
- display: none;
- }
-
- &:first-child {
- padding-right: 0;
- }
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_row.scss b/html5up-forty/assets/sass/components/_row.scss
deleted file mode 100644
index 2a28835..0000000
--- a/html5up-forty/assets/sass/components/_row.scss
+++ /dev/null
@@ -1,31 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Row */
-
- .row {
- @include html-grid(2em);
-
- @include breakpoint('<=xlarge') {
- @include html-grid(2em, 'xlarge');
- }
-
- @include breakpoint('<=large') {
- @include html-grid(1.5em, 'large');
- }
-
- @include breakpoint('<=medium') {
- @include html-grid(1.5em, 'medium');
- }
-
- @include breakpoint('<=small') {
- @include html-grid(1.25em, 'small');
- }
-
- @include breakpoint('<=xsmall') {
- @include html-grid(1.25em, 'xsmall');
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_section.scss b/html5up-forty/assets/sass/components/_section.scss
deleted file mode 100644
index 2bdad69..0000000
--- a/html5up-forty/assets/sass/components/_section.scss
+++ /dev/null
@@ -1,69 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Section/Article */
-
- section, article {
- &.special {
- text-align: center;
- }
- }
-
- header {
- &.major {
- width: -moz-max-content;
- width: -webkit-max-content;
- width: -ms-max-content;
- width: max-content;
- margin-bottom: _size(element-margin);
-
- > :first-child {
- margin-bottom: 0;
- width: calc(100% + 0.5em);
-
- &:after {
- content: '';
- background-color: _palette(fg-bold);
- display: block;
- height: 2px;
- margin: 0.325em 0 0.5em 0;
- width: 100%;
- }
- }
-
- > p {
- font-size: 0.7em;
- font-weight: _font(weight-bold);
- letter-spacing: _font(letter-spacing-alt);
- margin-bottom: 0;
- text-transform: uppercase;
- }
-
- body.is-ie & {
- > :first-child {
- &:after {
- max-width: 9em;
- }
- }
-
- > h1 {
- &:after {
- max-width: 100% !important;
- }
- }
- }
- }
-
- @include breakpoint('<=small') {
- &.major {
- > p {
- br {
- display: none;
- }
- }
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_spotlights.scss b/html5up-forty/assets/sass/components/_spotlights.scss
deleted file mode 100644
index 337bc1a..0000000
--- a/html5up-forty/assets/sass/components/_spotlights.scss
+++ /dev/null
@@ -1,119 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Spotlights */
-
- .spotlights {
- border-top: 0 !important;
-
- & + * {
- border-top: 0 !important;
- }
-
- > section {
- @include vendor('display', 'flex');
- @include vendor('flex-direction', 'row');
- background-color: desaturate(lighten(_palette(bg-alt), 2), 1);
-
- > .image {
- background-position: center center;
- background-size: cover;
- border-radius: 0;
- display: block;
- position: relative;
- width: 30%;
-
- img {
- border-radius: 0;
- display: block;
- width: 100%;
- }
-
- &:before {
- background: transparentize(_palette(bg), 0.1);
- content: '';
- display: block;
- height: 100%;
- left: 0;
- opacity: 0;
- position: absolute;
- top: 0;
- width: 100%;
- }
- }
-
- > .content {
- @include vendor('display', 'flex');
- @include vendor('flex-direction', 'column');
- @include vendor('justify-content', 'center');
- @include vendor('align-items', 'center');
- @include padding(2em, 3em);
- width: 70%;
-
- > .inner {
- margin: 0 auto;
- max-width: 100%;
- width: _size(inner);
- }
- }
-
- &:nth-child(2n) {
- @include vendor('flex-direction', 'row-reverse');
- background-color: desaturate(lighten(_palette(bg-alt), 4), 2);
-
- > .content {
- @include vendor('align-items', 'flex-end');
- }
- }
- }
-
- @include breakpoint('<=xlarge') {
- > section {
- > .image {
- width: 40%;
- }
-
- > .content {
- width: 60%;
- }
- }
- }
-
- @include breakpoint('<=large') {
- > section {
- > .image {
- width: 45%;
- }
-
- > .content {
- width: 55%;
- }
- }
- }
-
- @include breakpoint('<=medium') {
- > section {
- display: block;
-
- > .image {
- width: 100%;
- }
-
- > .content {
- @include padding(4em, 3em);
- width: 100%;
- }
- }
- }
-
- @include breakpoint('<=small') {
- > section {
- > .content {
- @include padding(3em, 1.5em);
- }
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_table.scss b/html5up-forty/assets/sass/components/_table.scss
deleted file mode 100644
index e020928..0000000
--- a/html5up-forty/assets/sass/components/_table.scss
+++ /dev/null
@@ -1,81 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Table */
-
- .table-wrapper {
- -webkit-overflow-scrolling: touch;
- overflow-x: auto;
- }
-
- table {
- margin: 0 0 _size(element-margin) 0;
- width: 100%;
-
- tbody {
- tr {
- border: solid 1px _palette(border);
- border-left: 0;
- border-right: 0;
-
- &:nth-child(2n + 1) {
- background-color: _palette(border-bg);
- }
- }
- }
-
- td {
- padding: 0.75em 0.75em;
- }
-
- th {
- color: _palette(fg-bold);
- font-size: 0.9em;
- font-weight: _font(weight-bold);
- padding: 0 0.75em 0.75em 0.75em;
- text-align: left;
- }
-
- thead {
- border-bottom: solid 2px _palette(border);
- }
-
- tfoot {
- border-top: solid 2px _palette(border);
- }
-
- &.alt {
- border-collapse: separate;
-
- tbody {
- tr {
- td {
- border: solid 1px _palette(border);
- border-left-width: 0;
- border-top-width: 0;
-
- &:first-child {
- border-left-width: 1px;
- }
- }
-
- &:first-child {
- td {
- border-top-width: 1px;
- }
- }
- }
- }
-
- thead {
- border-bottom: 0;
- }
-
- tfoot {
- border-top: 0;
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/components/_tiles.scss b/html5up-forty/assets/sass/components/_tiles.scss
deleted file mode 100644
index 71745cf..0000000
--- a/html5up-forty/assets/sass/components/_tiles.scss
+++ /dev/null
@@ -1,183 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Tiles */
-
- .tiles {
- @include vendor('display', 'flex');
- @include vendor('flex-wrap', 'wrap');
- border-top: 0 !important;
-
- & + * {
- border-top: 0 !important;
- }
-
- article {
- @include vendor('align-items', 'center');
- @include vendor('display', 'flex');
- @include vendor('transition', (
- 'transform 0.25s ease',
- 'opacity 0.25s ease',
- 'filter 1s ease',
- '-webkit-filter 1s ease'
- ));
- @include padding(4em, 4em);
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- cursor: default;
- height: 40vh;
- max-height: 40em;
- min-height: 23em;
- overflow: hidden;
- position: relative;
- width: 40%;
-
- .image {
- display: none;
- }
-
- header {
- position: relative;
- z-index: 3;
- }
-
- h3 {
- font-size: 1.75em;
-
- a {
- &:hover {
- color: inherit !important;
- }
- }
- }
-
- .link.primary {
- border: 0;
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
- z-index: 4;
- }
-
- &:before {
- @include vendor('transition', 'opacity 0.5s ease');
- bottom: 0;
- content: '';
- display: block;
- height: 100%;
- left: 0;
- opacity: 0.85;
- position: absolute;
- width: 100%;
- z-index: 2;
- }
-
- &:after {
- background-color: transparentize(_palette(bg), 0.75);
- content: '';
- display: block;
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
- z-index: 1;
- }
-
- &:hover {
- &:before {
- opacity: 0;
- }
- }
-
- &.is-transitioning {
- @include vendor('transform', 'scale(0.95)');
- @include vendor('filter', 'blur(0.5em)');
- opacity: 0;
- }
-
- &:nth-child(4n - 1),
- &:nth-child(4n - 2) {
- width: 60%;
- }
-
- &:nth-child(6n - 5) {
- &:before {
- background-color: _palette(accent1);
- }
- }
-
- &:nth-child(6n - 4) {
- &:before {
- background-color: _palette(accent2);
- }
- }
-
- &:nth-child(6n - 3) {
- &:before {
- background-color: _palette(accent3);
- }
- }
-
- &:nth-child(6n - 2) {
- &:before {
- background-color: _palette(accent4);
- }
- }
-
- &:nth-child(6n - 1) {
- &:before {
- background-color: _palette(accent5);
- }
- }
-
- &:nth-child(6n) {
- &:before {
- background-color: _palette(accent6);
- }
- }
- }
-
- @include breakpoint('<=large') {
- article {
- @include padding(4em, 3em);
- height: 30vh;
- max-height: 30em;
- min-height: 20em;
- }
- }
-
- @include breakpoint('<=medium') {
- article {
- width: 50% !important;
- }
- }
-
- @include breakpoint('<=small') {
- article {
- @include padding(3em, 1.5em);
- height: 16em;
- max-height: none;
- min-height: 0;
-
- h3 {
- font-size: 1.5em;
- }
- }
- }
-
- @include breakpoint('<=xsmall') {
- display: block;
-
- article {
- height: 20em;
- width: 100% !important;
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/layout/_banner.scss b/html5up-forty/assets/sass/layout/_banner.scss
deleted file mode 100644
index 65e52d1..0000000
--- a/html5up-forty/assets/sass/layout/_banner.scss
+++ /dev/null
@@ -1,177 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Banner */
-
- #banner {
- @include vendor('align-items', 'center');
- @include vendor('background-image', 'url("../../images/banner.jpg")');
- @include vendor('display', 'flex');
- @include padding(4em, 0, (2em, 0, 0, 0));
- background-attachment: fixed;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- border-bottom: 0 !important;
- cursor: default;
- height: 60vh;
- margin-bottom: -3.25em;
- max-height: 32em;
- min-height: 22em;
- position: relative;
- top: -3.25em;
-
- &:after {
- @include vendor('transition', 'opacity #{_duration(banner)} ease');
- @include vendor('transition-delay', '0.75s');
- @include vendor('pointer-events', 'none');
- background-color: _palette(bg);
- content: '';
- display: block;
- height: 100%;
- left: 0;
- opacity: 0.85;
- position: absolute;
- top: 0;
- width: 100%;
- z-index: 1;
- }
-
- h1 {
- font-size: 3.25em;
- }
-
- > .inner {
- @include vendor('transition', (
- 'opacity 1.5s ease',
- 'transform 0.5s ease-out',
- 'filter 0.5s ease',
- '-webkit-filter 0.5s ease'
- ));
- padding: 0 !important;
- position: relative;
- z-index: 2;
-
- .image {
- display: none;
- }
-
- header {
- width: auto;
-
- > :first-child {
- width: auto;
-
- &:after {
- max-width: 100%;
- }
- }
- }
-
- .content {
- @include vendor('display', 'flex');
- @include vendor('align-items', 'center');
- margin: 0 0 _size(element-margin) 0;
-
- > * {
- margin-right: 1.5em;
- margin-bottom: 0;
- }
-
- > :last-child {
- margin-right: 0;
- }
-
- p {
- font-size: 0.7em;
- font-weight: _font(weight-bold);
- letter-spacing: _font(letter-spacing-alt);
- text-transform: uppercase;
- }
- }
- }
-
- &.major {
- height: 75vh;
- min-height: 30em;
- max-height: 50em;
-
- &.alt {
- opacity: 0.75;
- }
- }
-
- &.style1 { &:after { background-color: _palette(accent1); } }
- &.style2 { &:after { background-color: _palette(accent2); } }
- &.style3 { &:after { background-color: _palette(accent3); } }
- &.style4 { &:after { background-color: _palette(accent4); } }
- &.style5 { &:after { background-color: _palette(accent5); } }
- &.style6 { &:after { background-color: _palette(accent6); } }
-
- body.is-preload & {
- &:after {
- opacity: 1.0;
- }
-
- > .inner {
- @include vendor('filter', 'blur(0.125em)');
- @include vendor('transform', 'translateX(-0.5em)');
- opacity: 0;
- }
- }
-
- @include breakpoint('<=large') {
- background-attachment: scroll;
- }
-
- @include breakpoint('<=small') {
- @include padding(3em, 0, (2em, 0, 0, 0));
- height: auto;
- margin-bottom: -2.75em;
- max-height: none;
- min-height: 0;
- top: -2.75em;
-
- h1 {
- font-size: 2em;
- }
-
- > .inner {
- .content {
- display: block;
-
- > * {
- margin-right: 0;
- margin-bottom: _size(element-margin);
- }
- }
- }
-
- &.major {
- height: auto;
- min-height: 0;
- max-height: none;
- }
- }
-
- @include breakpoint('<=xsmall') {
- @include padding(4em, 0, (2em, 0, 0, 0));
-
- > .inner {
- .content {
- p {
- br {
- display: none;
- }
- }
- }
- }
-
- &.major {
- @include padding(6em, 0, (2em, 0, 0, 0));
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/layout/_contact.scss b/html5up-forty/assets/sass/layout/_contact.scss
deleted file mode 100644
index e9364bb..0000000
--- a/html5up-forty/assets/sass/layout/_contact.scss
+++ /dev/null
@@ -1,93 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Contact */
-
- #contact {
- border-bottom: solid 1px _palette(border);
- overflow-x: hidden;
-
- > .inner {
- @include vendor('display', 'flex');
- padding: 0 !important;
-
- > :nth-child(2n - 1) {
- @include padding(4em, 0, (0, 3em, 0, 0));
- border-right: solid 1px _palette(border);
- width: 60%;
- }
-
- > :nth-child(2n) {
- padding-left: 3em;
- width: 40%;
- }
-
- > .split {
- padding: 0;
-
- > * {
- @include padding(3em, 0, (0, 0, 0, 3em));
- position: relative;
-
- &:before {
- border-top: solid 1px _palette(border);
- content: '';
- display: block;
- margin-left: -3em;
- position: absolute;
- top: 0;
- width: calc(100vw + 3em);
- }
- }
-
- > :first-child {
- &:before {
- display: none;
- }
- }
- }
- }
-
- @include breakpoint('<=medium') {
- > .inner {
- display: block;
-
- > :nth-child(2n - 1) {
- @include padding(4em, 0, (0, 0, 0, 0));
- border-right: 0;
- width: 100%;
- }
-
- > :nth-child(2n) {
- padding-left: 0;
- width: 100%;
- }
-
- > .split {
- > * {
- @include padding(3em, 0, (0, 0, 0, 0));
-
- &:before {
- }
- }
-
- > :first-child {
- &:before {
- display: block;
- }
- }
- }
- }
- }
-
- @include breakpoint('<=small') {
- > .inner {
- > :nth-child(2n - 1) {
- @include padding(3em, 0, (0, 0, 0, 0));
- }
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/layout/_footer.scss b/html5up-forty/assets/sass/layout/_footer.scss
deleted file mode 100644
index e5ace19..0000000
--- a/html5up-forty/assets/sass/layout/_footer.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Footer */
-
- #footer {
- .copyright {
- font-size: 0.8em;
- list-style: none;
- padding-left: 0;
-
- li {
- border-left: solid 1px _palette(border);
- color: _palette(fg-light);
- display: inline-block;
- line-height: 1;
- margin-left: 1em;
- padding-left: 1em;
-
- &:first-child {
- border-left: 0;
- margin-left: 0;
- padding-left: 0;
- }
- }
- }
-
- @include breakpoint('<=xsmall') {
- .copyright {
- li {
- display: block;
- border-left: 0;
- margin-left: 0;
- padding-left: 0;
- line-height: inherit;
- }
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/layout/_header.scss b/html5up-forty/assets/sass/layout/_header.scss
deleted file mode 100644
index eb7d7e3..0000000
--- a/html5up-forty/assets/sass/layout/_header.scss
+++ /dev/null
@@ -1,248 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Header */
-
- @include keyframes('reveal-header') {
- 0% { top: -4em; opacity: 0; }
- 100% { top: 0; opacity: 1; }
- }
-
- #header {
- @include vendor('display', 'flex');
- background-color: _palette(bg-alt);
- box-shadow: 0 0 0.25em 0 rgba(0,0,0,0.15);
- cursor: default;
- font-weight: _font(weight-bold);
- height: 3.25em;
- left: 0;
- letter-spacing: _font(letter-spacing-alt);
- line-height: 3.25em;
- margin: 0;
- position: fixed;
- text-transform: uppercase;
- top: 0;
- width: 100%;
- z-index: _misc(z-index-base);
-
- .logo {
- border: 0;
- display: inline-block;
- font-size: 0.8em;
- height: inherit;
- line-height: inherit;
- padding: 0 1.5em;
-
- strong {
- @include vendor('transition', (
- 'background-color #{_duration(transition)} ease-in-out',
- 'color #{_duration(transition)} ease-in-out'
- ));
- background-color: _palette(fg-bold);
- color: _palette(bg);
- display: inline-block;
- line-height: 1.65em;
- margin-right: 0.325em;
- padding: 0 0.125em 0 (_font(letter-spacing-alt) + 0.125em);
- }
-
- &:hover {
- strong {
- background-color: _palette(highlight);
- }
- }
-
- &:active {
- strong {
- background-color: desaturate(darken(_palette(highlight), 15), 5);
- }
- }
- }
-
- nav {
- @include vendor('display', 'flex');
- @include vendor('justify-content', 'flex-end');
- @include vendor('flex-grow', '1');
- height: inherit;
- line-height: inherit;
-
- a {
- border: 0;
- display: block;
- font-size: 0.8em;
- height: inherit;
- line-height: inherit;
- padding: 0 0.75em;
- position: relative;
- vertical-align: middle;
-
- &:last-child {
- padding-right: 1.5em;
- }
-
- &[href="#menu"] {
- padding-right: 3.325em !important;
-
- &:before, &:after {
- background-image: svg-url('
');
- background-position: center;
- background-repeat: no-repeat;
- background-size: 24px 32px;
- content: '';
- display: block;
- height: 100%;
- position: absolute;
- right: 1.5em;
- top: 0;
- vertical-align: middle;
- width: 24px;
- }
-
- &:after {
- @include vendor('transition', 'opacity #{_duration(transition)} ease-in-out');
- background-image: svg-url('
');
- opacity: 0;
- z-index: 1;
- }
-
- &:hover, &:active {
- &:after {
- opacity: 1;
- }
- }
-
- &:last-child {
- padding-right: 3.875em !important;
-
- &:before, &:after {
- right: 2em;
- }
- }
- }
- }
- }
-
- &.reveal {
- @include vendor('animation', 'reveal-header 0.35s ease');
- }
-
- &.alt {
- @include vendor('transition', 'opacity #{_duration(banner)} ease');
- @include vendor('transition-delay', '0.75s');
- @include vendor('animation', 'none');
- background-color: transparent;
- box-shadow: none;
- position: absolute;
-
- &.style1 { .logo { strong { color: _palette(accent1); } } }
- &.style2 { .logo { strong { color: _palette(accent2); } } }
- &.style3 { .logo { strong { color: _palette(accent3); } } }
- &.style4 { .logo { strong { color: _palette(accent4); } } }
- &.style5 { .logo { strong { color: _palette(accent5); } } }
- &.style6 { .logo { strong { color: _palette(accent6); } } }
- }
-
- body.is-preload & {
- &.alt {
- opacity: 0;
- }
- }
-
- @include breakpoint('<=xlarge') {
- nav {
- a {
- &[href="#menu"] {
- padding-right: 3.75em !important;
-
- &:last-child {
- padding-right: 4.25em !important;
- }
- }
- }
- }
- }
-
- @include breakpoint('<=large') {
- nav {
- a {
- &[href="#menu"] {
- padding-right: 4em !important;
-
- &:last-child {
- padding-right: 4.5em !important;
- }
- }
- }
- }
- }
-
- @include breakpoint('<=small') {
- height: 2.75em;
- line-height: 2.75em;
-
- .logo {
- padding: 0 1em;
- }
-
- nav {
- a {
- padding: 0 0.5em;
-
- &:last-child {
- padding-right: 1em;
- }
-
- &[href="#menu"] {
- padding-right: 3.25em !important;
-
- &:before, &:after {
- right: 0.75em;
- }
-
- &:last-child {
- padding-right: 4em !important;
-
- &:before, &:after {
- right: 1.5em;
- }
- }
- }
- }
- }
- }
-
- @include breakpoint('<=xsmall') {
- .logo {
- span {
- display: none;
- }
- }
-
- nav {
- a {
- &[href="#menu"] {
- overflow: hidden;
- padding-right: 0 !important;
- text-indent: 5em;
- white-space: nowrap;
- width: 5em;
-
- &:before, &:after {
- right: 0;
- width: inherit;
- }
-
- &:last-child {
- &:before, &:after {
- width: 4em;
- right: 0;
- }
- }
- }
- }
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/layout/_main.scss b/html5up-forty/assets/sass/layout/_main.scss
deleted file mode 100644
index f1d7239..0000000
--- a/html5up-forty/assets/sass/layout/_main.scss
+++ /dev/null
@@ -1,26 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Main */
-
- #main {
- background-color: _palette(bg-alt);
-
- > * {
- border-top: solid 1px _palette(border);
-
- &:first-child {
- border-top: 0;
- }
-
- @include inner;
- }
-
- &.alt {
- background-color: transparent;
- border-bottom: solid 1px _palette(border);
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/layout/_menu.scss b/html5up-forty/assets/sass/layout/_menu.scss
deleted file mode 100644
index e53f21f..0000000
--- a/html5up-forty/assets/sass/layout/_menu.scss
+++ /dev/null
@@ -1,164 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Menu */
-
- #menu {
- @include vendor('transition', (
- 'transform #{_duration(menu)} ease',
- 'opacity #{_duration(menu)} ease',
- 'visibility #{_duration(menu)}'
- ));
- @include vendor('align-items', 'center');
- @include vendor('display', 'flex');
- @include vendor('justify-content', 'center');
- @include vendor('pointer-events', 'none');
- background: transparentize(_palette(bg), 0.1);
- box-shadow: none;
- height: 100%;
- left: 0;
- opacity: 0;
- overflow: hidden;
- padding: 3em 2em;
- position: fixed;
- top: 0;
- visibility: hidden;
- width: 100%;
- z-index: _misc(z-index-base) + 2;
-
- .inner {
- @include vendor('transition', (
- 'transform #{_duration(menu)} ease-out',
- 'opacity #{_duration(menu)} ease',
- 'visibility #{_duration(menu)}'
- ));
- @include vendor('transform', 'rotateX(20deg)');
- -webkit-overflow-scrolling: touch;
- max-width: 100%;
- max-height: 100vh;
- opacity: 0;
- overflow: auto;
- text-align: center;
- visibility: hidden;
- width: 18em;
-
- > :first-child {
- margin-top: _size(element-margin);
- }
-
- > :last-child {
- margin-bottom: (_size(element-margin) * 1.5);
- }
- }
-
- ul {
- margin: 0 0 (_size(element-margin) * 0.5) 0;
-
- &.links {
- list-style: none;
- padding: 0;
-
- > li {
- padding: 0;
-
- > a:not(.button) {
- border: 0;
- border-top: solid 1px _palette(border);
- display: block;
- font-size: 0.8em;
- font-weight: _font(weight-bold);
- letter-spacing: _font(letter-spacing-alt);
- line-height: 4em;
- text-decoration: none;
- text-transform: uppercase;
- }
-
- > .button {
- display: block;
- margin: 0.5em 0 0 0;
- }
-
- &:first-child {
- > a:not(.button) {
- border-top: 0 !important;
- }
- }
- }
- }
- }
-
- .close {
- @include vendor('transition', 'color #{_duration(transition)} ease-in-out');
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- border: 0;
- cursor: pointer;
- display: block;
- height: 4em;
- line-height: 4em;
- overflow: hidden;
- padding-right: 1.25em;
- position: absolute;
- right: 0;
- text-align: right;
- text-indent: 8em;
- top: 0;
- vertical-align: middle;
- white-space: nowrap;
- width: 8em;
-
- &:before, &:after {
- @include vendor('transition', 'opacity #{_duration(transition)} ease-in-out');
- background-position: center;
- background-repeat: no-repeat;
- content: '';
- display: block;
- height: 4em;
- position: absolute;
- right: 0;
- top: 0;
- width: 4em;
- }
-
- &:before {
- background-image: svg-url('
');
- }
-
- &:after {
- background-image: svg-url('
');
- opacity: 0;
- }
-
- &:hover, &:active {
- &:after {
- opacity: 1;
- }
- }
- }
- }
-
- body.is-ie {
- #menu {
- background: transparentize(_palette(bg-alt), 0.025);
- }
- }
-
- body.is-menu-visible {
- #wrapper {
- @include vendor('filter', 'blur(0.5em)');
- }
-
- #menu {
- @include vendor('pointer-events', 'auto');
- opacity: 1;
- visibility: visible;
-
- .inner {
- @include vendor('transform', 'none');
- opacity: 1;
- visibility: visible;
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/layout/_wrapper.scss b/html5up-forty/assets/sass/layout/_wrapper.scss
deleted file mode 100644
index 93d774a..0000000
--- a/html5up-forty/assets/sass/layout/_wrapper.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-///
-/// Forty by HTML5 UP
-/// html5up.net | @ajlkn
-/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-///
-
-/* Wrapper */
-
- #wrapper {
- @include vendor('transition', (
- 'filter #{_duration(menu)} ease',
- '-webkit-filter #{_duration(menu)} ease',
- 'opacity 0.375s ease-out'
- ));
- padding-top: 3.25em;
-
- &.is-transitioning {
- opacity: 0;
- }
-
- > * {
- @include inner;
- }
-
- @include breakpoint('<=small') {
- padding-top: 2.75em;
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/libs/_breakpoints.scss b/html5up-forty/assets/sass/libs/_breakpoints.scss
deleted file mode 100644
index c5301d8..0000000
--- a/html5up-forty/assets/sass/libs/_breakpoints.scss
+++ /dev/null
@@ -1,223 +0,0 @@
-// breakpoints.scss v1.0 | @ajlkn | MIT licensed */
-
-// Vars.
-
- /// Breakpoints.
- /// @var {list}
- $breakpoints: () !global;
-
-// Mixins.
-
- /// Sets breakpoints.
- /// @param {map} $x Breakpoints.
- @mixin breakpoints($x: ()) {
- $breakpoints: $x !global;
- }
-
- /// Wraps @content in a @media block targeting a specific orientation.
- /// @param {string} $orientation Orientation.
- @mixin orientation($orientation) {
- @media screen and (orientation: #{$orientation}) {
- @content;
- }
- }
-
- /// Wraps @content in a @media block using a given query.
- /// @param {string} $query Query.
- @mixin breakpoint($query: null) {
-
- $breakpoint: null;
- $op: null;
- $media: null;
-
- // Determine operator, breakpoint.
-
- // Greater than or equal.
- @if (str-slice($query, 0, 2) == '>=') {
-
- $op: 'gte';
- $breakpoint: str-slice($query, 3);
-
- }
-
- // Less than or equal.
- @elseif (str-slice($query, 0, 2) == '<=') {
-
- $op: 'lte';
- $breakpoint: str-slice($query, 3);
-
- }
-
- // Greater than.
- @elseif (str-slice($query, 0, 1) == '>') {
-
- $op: 'gt';
- $breakpoint: str-slice($query, 2);
-
- }
-
- // Less than.
- @elseif (str-slice($query, 0, 1) == '<') {
-
- $op: 'lt';
- $breakpoint: str-slice($query, 2);
-
- }
-
- // Not.
- @elseif (str-slice($query, 0, 1) == '!') {
-
- $op: 'not';
- $breakpoint: str-slice($query, 2);
-
- }
-
- // Equal.
- @else {
-
- $op: 'eq';
- $breakpoint: $query;
-
- }
-
- // Build media.
- @if ($breakpoint and map-has-key($breakpoints, $breakpoint)) {
-
- $a: map-get($breakpoints, $breakpoint);
-
- // Range.
- @if (type-of($a) == 'list') {
-
- $x: nth($a, 1);
- $y: nth($a, 2);
-
- // Max only.
- @if ($x == null) {
-
- // Greater than or equal (>= 0 / anything)
- @if ($op == 'gte') {
- $media: 'screen';
- }
-
- // Less than or equal (<= y)
- @elseif ($op == 'lte') {
- $media: 'screen and (max-width: ' + $y + ')';
- }
-
- // Greater than (> y)
- @elseif ($op == 'gt') {
- $media: 'screen and (min-width: ' + ($y + 1) + ')';
- }
-
- // Less than (< 0 / invalid)
- @elseif ($op == 'lt') {
- $media: 'screen and (max-width: -1px)';
- }
-
- // Not (> y)
- @elseif ($op == 'not') {
- $media: 'screen and (min-width: ' + ($y + 1) + ')';
- }
-
- // Equal (<= y)
- @else {
- $media: 'screen and (max-width: ' + $y + ')';
- }
-
- }
-
- // Min only.
- @else if ($y == null) {
-
- // Greater than or equal (>= x)
- @if ($op == 'gte') {
- $media: 'screen and (min-width: ' + $x + ')';
- }
-
- // Less than or equal (<= inf / anything)
- @elseif ($op == 'lte') {
- $media: 'screen';
- }
-
- // Greater than (> inf / invalid)
- @elseif ($op == 'gt') {
- $media: 'screen and (max-width: -1px)';
- }
-
- // Less than (< x)
- @elseif ($op == 'lt') {
- $media: 'screen and (max-width: ' + ($x - 1) + ')';
- }
-
- // Not (< x)
- @elseif ($op == 'not') {
- $media: 'screen and (max-width: ' + ($x - 1) + ')';
- }
-
- // Equal (>= x)
- @else {
- $media: 'screen and (min-width: ' + $x + ')';
- }
-
- }
-
- // Min and max.
- @else {
-
- // Greater than or equal (>= x)
- @if ($op == 'gte') {
- $media: 'screen and (min-width: ' + $x + ')';
- }
-
- // Less than or equal (<= y)
- @elseif ($op == 'lte') {
- $media: 'screen and (max-width: ' + $y + ')';
- }
-
- // Greater than (> y)
- @elseif ($op == 'gt') {
- $media: 'screen and (min-width: ' + ($y + 1) + ')';
- }
-
- // Less than (< x)
- @elseif ($op == 'lt') {
- $media: 'screen and (max-width: ' + ($x - 1) + ')';
- }
-
- // Not (< x and > y)
- @elseif ($op == 'not') {
- $media: 'screen and (max-width: ' + ($x - 1) + '), screen and (min-width: ' + ($y + 1) + ')';
- }
-
- // Equal (>= x and <= y)
- @else {
- $media: 'screen and (min-width: ' + $x + ') and (max-width: ' + $y + ')';
- }
-
- }
-
- }
-
- // String.
- @else {
-
- // Missing a media type? Prefix with "screen".
- @if (str-slice($a, 0, 1) == '(') {
- $media: 'screen and ' + $a;
- }
-
- // Otherwise, use as-is.
- @else {
- $media: $a;
- }
-
- }
-
- }
-
- // Output.
- @media #{$media} {
- @content;
- }
-
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/libs/_functions.scss b/html5up-forty/assets/sass/libs/_functions.scss
deleted file mode 100644
index f563aab..0000000
--- a/html5up-forty/assets/sass/libs/_functions.scss
+++ /dev/null
@@ -1,90 +0,0 @@
-/// Removes a specific item from a list.
-/// @author Hugo Giraudel
-/// @param {list} $list List.
-/// @param {integer} $index Index.
-/// @return {list} Updated list.
-@function remove-nth($list, $index) {
-
- $result: null;
-
- @if type-of($index) != number {
- @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
- }
- @else if $index == 0 {
- @warn "List index 0 must be a non-zero integer for `remove-nth`.";
- }
- @else if abs($index) > length($list) {
- @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
- }
- @else {
-
- $result: ();
- $index: if($index < 0, length($list) + $index + 1, $index);
-
- @for $i from 1 through length($list) {
-
- @if $i != $index {
- $result: append($result, nth($list, $i));
- }
-
- }
-
- }
-
- @return $result;
-
-}
-
-/// Gets a value from a map.
-/// @author Hugo Giraudel
-/// @param {map} $map Map.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function val($map, $keys...) {
-
- @if nth($keys, 1) == null {
- $keys: remove-nth($keys, 1);
- }
-
- @each $key in $keys {
- $map: map-get($map, $key);
- }
-
- @return $map;
-
-}
-
-/// Gets a duration value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _duration($keys...) {
- @return val($duration, $keys...);
-}
-
-/// Gets a font value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _font($keys...) {
- @return val($font, $keys...);
-}
-
-/// Gets a misc value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _misc($keys...) {
- @return val($misc, $keys...);
-}
-
-/// Gets a palette value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _palette($keys...) {
- @return val($palette, $keys...);
-}
-
-/// Gets a size value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _size($keys...) {
- @return val($size, $keys...);
-}
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/libs/_html-grid.scss b/html5up-forty/assets/sass/libs/_html-grid.scss
deleted file mode 100644
index 7438a8c..0000000
--- a/html5up-forty/assets/sass/libs/_html-grid.scss
+++ /dev/null
@@ -1,149 +0,0 @@
-// html-grid.scss v1.0 | @ajlkn | MIT licensed */
-
-// Mixins.
-
- /// Initializes the current element as an HTML grid.
- /// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually).
- /// @param {mixed} $suffix Column class suffix (optional; either a single suffix or a list).
- @mixin html-grid($gutters: 1.5em, $suffix: '') {
-
- // Initialize.
- $cols: 12;
- $multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00;
- $unit: 100% / $cols;
-
- // Suffixes.
- $suffixes: null;
-
- @if (type-of($suffix) == 'list') {
- $suffixes: $suffix;
- }
- @else {
- $suffixes: ($suffix);
- }
-
- // Gutters.
- $guttersCols: null;
- $guttersRows: null;
-
- @if (type-of($gutters) == 'list') {
-
- $guttersCols: nth($gutters, 1);
- $guttersRows: nth($gutters, 2);
-
- }
- @else {
-
- $guttersCols: $gutters;
- $guttersRows: 0;
-
- }
-
- // Row.
- display: flex;
- flex-wrap: wrap;
- box-sizing: border-box;
- align-items: stretch;
-
- // Columns.
- > * {
- box-sizing: border-box;
- }
-
- // Gutters.
- &.gtr-uniform {
- > * {
- > :last-child {
- margin-bottom: 0;
- }
- }
- }
-
- // Alignment.
- &.aln-left {
- justify-content: flex-start;
- }
-
- &.aln-center {
- justify-content: center;
- }
-
- &.aln-right {
- justify-content: flex-end;
- }
-
- &.aln-top {
- align-items: flex-start;
- }
-
- &.aln-middle {
- align-items: center;
- }
-
- &.aln-bottom {
- align-items: flex-end;
- }
-
- // Step through suffixes.
- @each $suffix in $suffixes {
-
- // Suffix.
- @if ($suffix != '') {
- $suffix: '-' + $suffix;
- }
- @else {
- $suffix: '';
- }
-
- // Row.
-
- // Important.
- > .imp#{$suffix} {
- order: -1;
- }
-
- // Columns, offsets.
- @for $i from 1 through $cols {
- > .col-#{$i}#{$suffix} {
- width: $unit * $i;
- }
-
- > .off-#{$i}#{$suffix} {
- margin-left: $unit * $i;
- }
- }
-
- // Step through multipliers.
- @each $multiplier in $multipliers {
-
- // Gutters.
- $class: null;
-
- @if ($multiplier != 1) {
- $class: '.gtr-' + ($multiplier * 100);
- }
-
- {$class} {
- margin-top: ($guttersRows * $multiplier * -1);
- margin-left: ($guttersCols * $multiplier * -1);
-
- > * {
- padding: ($guttersRows * $multiplier) 0 0 ($guttersCols * $multiplier);
- }
-
- // Uniform.
- &.gtr-uniform {
- margin-top: $guttersCols * $multiplier * -1;
-
- > * {
- padding-top: $guttersCols * $multiplier;
- }
- }
-
- }
-
- }
-
- }
-
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/libs/_mixins.scss b/html5up-forty/assets/sass/libs/_mixins.scss
deleted file mode 100644
index a331483..0000000
--- a/html5up-forty/assets/sass/libs/_mixins.scss
+++ /dev/null
@@ -1,78 +0,0 @@
-/// Makes an element's :before pseudoelement a FontAwesome icon.
-/// @param {string} $content Optional content value to use.
-/// @param {string} $category Optional category to use.
-/// @param {string} $where Optional pseudoelement to target (before or after).
-@mixin icon($content: false, $category: regular, $where: before) {
-
- text-decoration: none;
-
- &:#{$where} {
-
- @if $content {
- content: $content;
- }
-
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- display: inline-block;
- font-style: normal;
- font-variant: normal;
- text-rendering: auto;
- line-height: 1;
- text-transform: none !important;
-
- @if ($category == brands) {
- font-family: 'Font Awesome 5 Brands';
- }
- @elseif ($category == solid) {
- font-family: 'Font Awesome 5 Free';
- font-weight: 900;
- }
- @else {
- font-family: 'Font Awesome 5 Free';
- font-weight: 400;
- }
-
- }
-
-}
-
-/// Applies padding to an element, taking the current element-margin value into account.
-/// @param {mixed} $tb Top/bottom padding.
-/// @param {mixed} $lr Left/right padding.
-/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)
-/// @param {bool} $important If true, adds !important.
-@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {
-
- @if $important {
- $important: '!important';
- }
-
- $x: 0.1em;
-
- @if unit(_size(element-margin)) == 'rem' {
- $x: 0.1rem;
- }
-
- padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max($x, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};
-
-}
-
-/// Encodes a SVG data URL so IE doesn't choke (via codepen.io/jakob-e/pen/YXXBrp).
-/// @param {string} $svg SVG data URL.
-/// @return {string} Encoded SVG data URL.
-@function svg-url($svg) {
-
- $svg: str-replace($svg, '"', '\'');
- $svg: str-replace($svg, '%', '%25');
- $svg: str-replace($svg, '<', '%3C');
- $svg: str-replace($svg, '>', '%3E');
- $svg: str-replace($svg, '&', '%26');
- $svg: str-replace($svg, '#', '%23');
- $svg: str-replace($svg, '{', '%7B');
- $svg: str-replace($svg, '}', '%7D');
- $svg: str-replace($svg, ';', '%3B');
-
- @return url("data:image/svg+xml;charset=utf8,#{$svg}");
-
-}
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/libs/_vars.scss b/html5up-forty/assets/sass/libs/_vars.scss
deleted file mode 100644
index db500e0..0000000
--- a/html5up-forty/assets/sass/libs/_vars.scss
+++ /dev/null
@@ -1,47 +0,0 @@
-// Misc.
- $misc: (
- z-index-base: 10000
- );
-
-// Duration.
- $duration: (
- menu: 0.35s,
- transition: 0.2s,
- banner: 2.5s
- );
-
-// Size.
- $size: (
- border-radius: 4px,
- element-height: 2.75em,
- element-margin: 2em,
- inner: 65em
- );
-
-// Font.
- $font: (
- family: ('Source Sans Pro', Helvetica, sans-serif),
- family-fixed: ('Courier New', monospace),
- weight: 300,
- weight-bold: 600,
- letter-spacing: 0.025em,
- letter-spacing-alt: 0.25em
- );
-
-// Palette.
- $palette: (
- bg: #242943,
- bg-alt: #2a2f4a,
- fg: #ffffff,
- fg-bold: #ffffff,
- fg-light: rgba(244,244,255,0.2),
- border: rgba(212,212,255,0.1),
- border-bg: rgba(212,212,255,0.035),
- highlight: #9bf1ff,
- accent1: #6fc3df,
- accent2: #8d82c4,
- accent3: #ec8d81,
- accent4: #e7b788,
- accent5: #8ea9e8,
- accent6: #87c5a4
- );
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/libs/_vendor.scss b/html5up-forty/assets/sass/libs/_vendor.scss
deleted file mode 100644
index 6599a3f..0000000
--- a/html5up-forty/assets/sass/libs/_vendor.scss
+++ /dev/null
@@ -1,376 +0,0 @@
-// vendor.scss v1.0 | @ajlkn | MIT licensed */
-
-// Vars.
-
- /// Vendor prefixes.
- /// @var {list}
- $vendor-prefixes: (
- '-moz-',
- '-webkit-',
- '-ms-',
- ''
- );
-
- /// Properties that should be vendorized.
- /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org
- /// @var {list}
- $vendor-properties: (
-
- // Animation.
- 'animation',
- 'animation-delay',
- 'animation-direction',
- 'animation-duration',
- 'animation-fill-mode',
- 'animation-iteration-count',
- 'animation-name',
- 'animation-play-state',
- 'animation-timing-function',
-
- // Appearance.
- 'appearance',
-
- // Backdrop filter.
- 'backdrop-filter',
-
- // Background image options.
- 'background-clip',
- 'background-origin',
- 'background-size',
-
- // Box sizing.
- 'box-sizing',
-
- // Clip path.
- 'clip-path',
-
- // Filter effects.
- 'filter',
-
- // Flexbox.
- 'align-content',
- 'align-items',
- 'align-self',
- 'flex',
- 'flex-basis',
- 'flex-direction',
- 'flex-flow',
- 'flex-grow',
- 'flex-shrink',
- 'flex-wrap',
- 'justify-content',
- 'order',
-
- // Font feature.
- 'font-feature-settings',
- 'font-language-override',
- 'font-variant-ligatures',
-
- // Font kerning.
- 'font-kerning',
-
- // Fragmented borders and backgrounds.
- 'box-decoration-break',
-
- // Grid layout.
- 'grid-column',
- 'grid-column-align',
- 'grid-column-end',
- 'grid-column-start',
- 'grid-row',
- 'grid-row-align',
- 'grid-row-end',
- 'grid-row-start',
- 'grid-template-columns',
- 'grid-template-rows',
-
- // Hyphens.
- 'hyphens',
- 'word-break',
-
- // Masks.
- 'mask',
- 'mask-border',
- 'mask-border-outset',
- 'mask-border-repeat',
- 'mask-border-slice',
- 'mask-border-source',
- 'mask-border-width',
- 'mask-clip',
- 'mask-composite',
- 'mask-image',
- 'mask-origin',
- 'mask-position',
- 'mask-repeat',
- 'mask-size',
-
- // Multicolumn.
- 'break-after',
- 'break-before',
- 'break-inside',
- 'column-count',
- 'column-fill',
- 'column-gap',
- 'column-rule',
- 'column-rule-color',
- 'column-rule-style',
- 'column-rule-width',
- 'column-span',
- 'column-width',
- 'columns',
-
- // Object fit.
- 'object-fit',
- 'object-position',
-
- // Regions.
- 'flow-from',
- 'flow-into',
- 'region-fragment',
-
- // Scroll snap points.
- 'scroll-snap-coordinate',
- 'scroll-snap-destination',
- 'scroll-snap-points-x',
- 'scroll-snap-points-y',
- 'scroll-snap-type',
-
- // Shapes.
- 'shape-image-threshold',
- 'shape-margin',
- 'shape-outside',
-
- // Tab size.
- 'tab-size',
-
- // Text align last.
- 'text-align-last',
-
- // Text decoration.
- 'text-decoration-color',
- 'text-decoration-line',
- 'text-decoration-skip',
- 'text-decoration-style',
-
- // Text emphasis.
- 'text-emphasis',
- 'text-emphasis-color',
- 'text-emphasis-position',
- 'text-emphasis-style',
-
- // Text size adjust.
- 'text-size-adjust',
-
- // Text spacing.
- 'text-spacing',
-
- // Transform.
- 'transform',
- 'transform-origin',
-
- // Transform 3D.
- 'backface-visibility',
- 'perspective',
- 'perspective-origin',
- 'transform-style',
-
- // Transition.
- 'transition',
- 'transition-delay',
- 'transition-duration',
- 'transition-property',
- 'transition-timing-function',
-
- // Unicode bidi.
- 'unicode-bidi',
-
- // User select.
- 'user-select',
-
- // Writing mode.
- 'writing-mode',
-
- );
-
- /// Values that should be vendorized.
- /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org
- /// @var {list}
- $vendor-values: (
-
- // Cross fade.
- 'cross-fade',
-
- // Element function.
- 'element',
-
- // Filter function.
- 'filter',
-
- // Flexbox.
- 'flex',
- 'inline-flex',
-
- // Grab cursors.
- 'grab',
- 'grabbing',
-
- // Gradients.
- 'linear-gradient',
- 'repeating-linear-gradient',
- 'radial-gradient',
- 'repeating-radial-gradient',
-
- // Grid layout.
- 'grid',
- 'inline-grid',
-
- // Image set.
- 'image-set',
-
- // Intrinsic width.
- 'max-content',
- 'min-content',
- 'fit-content',
- 'fill',
- 'fill-available',
- 'stretch',
-
- // Sticky position.
- 'sticky',
-
- // Transform.
- 'transform',
-
- // Zoom cursors.
- 'zoom-in',
- 'zoom-out',
-
- );
-
-// Functions.
-
- /// Removes a specific item from a list.
- /// @author Hugo Giraudel
- /// @param {list} $list List.
- /// @param {integer} $index Index.
- /// @return {list} Updated list.
- @function remove-nth($list, $index) {
-
- $result: null;
-
- @if type-of($index) != number {
- @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
- }
- @else if $index == 0 {
- @warn "List index 0 must be a non-zero integer for `remove-nth`.";
- }
- @else if abs($index) > length($list) {
- @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
- }
- @else {
-
- $result: ();
- $index: if($index < 0, length($list) + $index + 1, $index);
-
- @for $i from 1 through length($list) {
-
- @if $i != $index {
- $result: append($result, nth($list, $i));
- }
-
- }
-
- }
-
- @return $result;
-
- }
-
- /// Replaces a substring within another string.
- /// @author Hugo Giraudel
- /// @param {string} $string String.
- /// @param {string} $search Substring.
- /// @param {string} $replace Replacement.
- /// @return {string} Updated string.
- @function str-replace($string, $search, $replace: '') {
-
- $index: str-index($string, $search);
-
- @if $index {
- @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
- }
-
- @return $string;
-
- }
-
- /// Replaces a substring within each string in a list.
- /// @param {list} $strings List of strings.
- /// @param {string} $search Substring.
- /// @param {string} $replace Replacement.
- /// @return {list} Updated list of strings.
- @function str-replace-all($strings, $search, $replace: '') {
-
- @each $string in $strings {
- $strings: set-nth($strings, index($strings, $string), str-replace($string, $search, $replace));
- }
-
- @return $strings;
-
- }
-
-// Mixins.
-
- /// Wraps @content in vendorized keyframe blocks.
- /// @param {string} $name Name.
- @mixin keyframes($name) {
-
- @-moz-keyframes #{$name} { @content; }
- @-webkit-keyframes #{$name} { @content; }
- @-ms-keyframes #{$name} { @content; }
- @keyframes #{$name} { @content; }
-
- }
-
- /// Vendorizes a declaration's property and/or value(s).
- /// @param {string} $property Property.
- /// @param {mixed} $value String/list of value(s).
- @mixin vendor($property, $value) {
-
- // Determine if property should expand.
- $expandProperty: index($vendor-properties, $property);
-
- // Determine if value should expand (and if so, add '-prefix-' placeholder).
- $expandValue: false;
-
- @each $x in $value {
- @each $y in $vendor-values {
- @if $y == str-slice($x, 1, str-length($y)) {
-
- $value: set-nth($value, index($value, $x), '-prefix-' + $x);
- $expandValue: true;
-
- }
- }
- }
-
- // Expand property?
- @if $expandProperty {
- @each $vendor in $vendor-prefixes {
- #{$vendor}#{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
- }
- }
-
- // Expand just the value?
- @elseif $expandValue {
- @each $vendor in $vendor-prefixes {
- #{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
- }
- }
-
- // Neither? Treat them as a normal declaration.
- @else {
- #{$property}: #{$value};
- }
-
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/main.scss b/html5up-forty/assets/sass/main.scss
deleted file mode 100644
index f5cdc43..0000000
--- a/html5up-forty/assets/sass/main.scss
+++ /dev/null
@@ -1,75 +0,0 @@
-@import 'libs/vars';
-@import 'libs/functions';
-@import 'libs/mixins';
-@import 'libs/vendor';
-@import 'libs/breakpoints';
-@import 'libs/html-grid';
-@import 'fontawesome-all.min.css';
-@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,600,600italic');
-
-/*
- Forty by HTML5 UP
- html5up.net | @ajlkn
- Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-*/
-
-// Breakpoints.
-
- @include breakpoints((
- xlarge: (1281px, 1680px ),
- large: (981px, 1280px ),
- medium: (737px, 980px ),
- small: (481px, 736px ),
- xsmall: (361px, 480px ),
- xxsmall: (null, 360px )
- ));
-
-// Mixins.
-
- @mixin inner {
- > .inner {
- @include padding(4em, 0);
- margin: 0 auto;
- max-width: _size(inner);
- width: calc(100% - 6em);
-
- @include breakpoint('<=small') {
- @include padding(3em, 0);
- width: calc(100% - 3em);
- }
- }
- }
-
-// Base.
-
- @import 'base/reset';
- @import 'base/page';
- @import 'base/typography';
-
-// Component.
-
- @import 'components/row';
- @import 'components/section';
- @import 'components/form';
- @import 'components/box';
- @import 'components/icon';
- @import 'components/image';
- @import 'components/list';
- @import 'components/actions';
- @import 'components/icons';
- @import 'components/pagination';
- @import 'components/table';
- @import 'components/button';
- @import 'components/tiles';
- @import 'components/contact-method';
- @import 'components/spotlights';
-
-// Layout.
-
- @import 'layout/header';
- @import 'layout/banner';
- @import 'layout/main';
- @import 'layout/contact';
- @import 'layout/footer';
- @import 'layout/wrapper';
- @import 'layout/menu';
\ No newline at end of file
diff --git a/html5up-forty/assets/sass/noscript.scss b/html5up-forty/assets/sass/noscript.scss
deleted file mode 100644
index fddbf7e..0000000
--- a/html5up-forty/assets/sass/noscript.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-@import 'libs/vars';
-@import 'libs/functions';
-@import 'libs/mixins';
-@import 'libs/vendor';
-@import 'libs/breakpoints';
-@import 'libs/html-grid';
-
-/*
- Forty by HTML5 UP
- html5up.net | @ajlkn
- Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-*/
-
-/* Banner */
-
- #banner {
- body.is-preload & {
- &:after {
- opacity: 0.85;
- }
-
- > .inner {
- @include vendor('filter', 'none');
- @include vendor('transform', 'none');
- opacity: 1;
- }
- }
- }
\ No newline at end of file
diff --git a/html5up-forty/assets/webfonts/fa-brands-400.eot b/html5up-forty/assets/webfonts/fa-brands-400.eot
deleted file mode 100644
index cba6c6c..0000000
Binary files a/html5up-forty/assets/webfonts/fa-brands-400.eot and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-brands-400.svg b/html5up-forty/assets/webfonts/fa-brands-400.svg
deleted file mode 100644
index b9881a4..0000000
--- a/html5up-forty/assets/webfonts/fa-brands-400.svg
+++ /dev/null
@@ -1,3717 +0,0 @@
-
-
-
-
-Created by FontForge 20201107 at Wed Aug 4 12:25:29 2021
- By Robert Madole
-Copyright (c) Font Awesome
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/html5up-forty/assets/webfonts/fa-brands-400.ttf b/html5up-forty/assets/webfonts/fa-brands-400.ttf
deleted file mode 100644
index 8d75ded..0000000
Binary files a/html5up-forty/assets/webfonts/fa-brands-400.ttf and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-brands-400.woff b/html5up-forty/assets/webfonts/fa-brands-400.woff
deleted file mode 100644
index 3375bef..0000000
Binary files a/html5up-forty/assets/webfonts/fa-brands-400.woff and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-brands-400.woff2 b/html5up-forty/assets/webfonts/fa-brands-400.woff2
deleted file mode 100644
index 402f81c..0000000
Binary files a/html5up-forty/assets/webfonts/fa-brands-400.woff2 and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-regular-400.eot b/html5up-forty/assets/webfonts/fa-regular-400.eot
deleted file mode 100644
index a4e5989..0000000
Binary files a/html5up-forty/assets/webfonts/fa-regular-400.eot and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-regular-400.svg b/html5up-forty/assets/webfonts/fa-regular-400.svg
deleted file mode 100644
index 463af27..0000000
--- a/html5up-forty/assets/webfonts/fa-regular-400.svg
+++ /dev/null
@@ -1,801 +0,0 @@
-
-
-
-
-Created by FontForge 20201107 at Wed Aug 4 12:25:29 2021
- By Robert Madole
-Copyright (c) Font Awesome
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/html5up-forty/assets/webfonts/fa-regular-400.ttf b/html5up-forty/assets/webfonts/fa-regular-400.ttf
deleted file mode 100644
index 7157aaf..0000000
Binary files a/html5up-forty/assets/webfonts/fa-regular-400.ttf and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-regular-400.woff b/html5up-forty/assets/webfonts/fa-regular-400.woff
deleted file mode 100644
index ad077c6..0000000
Binary files a/html5up-forty/assets/webfonts/fa-regular-400.woff and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-regular-400.woff2 b/html5up-forty/assets/webfonts/fa-regular-400.woff2
deleted file mode 100644
index 5632894..0000000
Binary files a/html5up-forty/assets/webfonts/fa-regular-400.woff2 and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-solid-900.eot b/html5up-forty/assets/webfonts/fa-solid-900.eot
deleted file mode 100644
index e994171..0000000
Binary files a/html5up-forty/assets/webfonts/fa-solid-900.eot and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-solid-900.svg b/html5up-forty/assets/webfonts/fa-solid-900.svg
deleted file mode 100644
index 00296e9..0000000
--- a/html5up-forty/assets/webfonts/fa-solid-900.svg
+++ /dev/null
@@ -1,5034 +0,0 @@
-
-
-
-
-Created by FontForge 20201107 at Wed Aug 4 12:25:29 2021
- By Robert Madole
-Copyright (c) Font Awesome
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/html5up-forty/assets/webfonts/fa-solid-900.ttf b/html5up-forty/assets/webfonts/fa-solid-900.ttf
deleted file mode 100644
index 25abf38..0000000
Binary files a/html5up-forty/assets/webfonts/fa-solid-900.ttf and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-solid-900.woff b/html5up-forty/assets/webfonts/fa-solid-900.woff
deleted file mode 100644
index 23ee663..0000000
Binary files a/html5up-forty/assets/webfonts/fa-solid-900.woff and /dev/null differ
diff --git a/html5up-forty/assets/webfonts/fa-solid-900.woff2 b/html5up-forty/assets/webfonts/fa-solid-900.woff2
deleted file mode 100644
index 2217164..0000000
Binary files a/html5up-forty/assets/webfonts/fa-solid-900.woff2 and /dev/null differ
diff --git a/html5up-forty/elements.html b/html5up-forty/elements.html
deleted file mode 100644
index e13a0ec..0000000
--- a/html5up-forty/elements.html
+++ /dev/null
@@ -1,544 +0,0 @@
-
-
-
-
-
Elements - Forty by HTML5 UP
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Sample Content
-
Praesent ac adipiscing ullamcorper semper ut amet ac risus. Lorem sapien ut odio odio nunc. Ac adipiscing nibh porttitor erat risus justo adipiscing adipiscing amet placerat accumsan. Vis. Faucibus odio magna tempus adipiscing a non. In mi primis arcu ut non accumsan vivamus ac blandit adipiscing adipiscing arcu metus praesent turpis eu ac lacinia nunc ac commodo gravida adipiscing eget accumsan ac nunc adipiscing adipiscing.
-
-
-
Sem turpis amet semper
-
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 commodo eu sed ante lacinia. Sapien a lorem in integer ornare praesent commodo adipiscing arcu in massa commodo lorem accumsan at odio massa ac ac. Semper adipiscing varius montes viverra nibh in adipiscing blandit tempus accumsan.
-
-
-
Magna odio tempus commodo
-
In arcu accumsan arcu adipiscing accumsan orci ac. Felis id enim aliquet. Accumsan ac integer lobortis commodo ornare aliquet accumsan erat tempus amet porttitor. Ante commodo blandit adipiscing integer semper orci eget. Faucibus commodo adipiscing mi eu nullam accumsan morbi arcu ornare odio mi adipiscing nascetur lacus ac interdum morbi accumsan vis mi accumsan ac praesent.
-
-
-
-
Interdum sapien gravida
-
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.
-
-
-
Faucibus consequat lorem
-
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.
-
-
-
Accumsan montes viverra
-
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.
-
-
-
-
-
-
-
Elements
-
-
-
-
-
Text
-
This is bold and this is strong . This is italic and this is emphasized .
- This is superscript text and this is subscript text.
- This is underlined and this is code: for (;;) { ... }.
- Finally, this is a link .
-
-
Heading Level 2
-
Heading Level 3
-
Heading Level 4
-
-
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.
-
-
-
Lists
-
-
-
-
Unordered
-
- Dolor etiam magna etiam.
- Sagittis lorem eleifend.
- Felis dolore viverra.
-
-
-
Alternate
-
- Dolor etiam magna etiam.
- Sagittis lorem eleifend.
- Felis feugiat viverra.
-
-
-
-
-
-
Ordered
-
- Dolor etiam magna etiam.
- Etiam vel lorem sed viverra.
- Felis dolore viverra.
- Dolor etiam magna etiam.
- Etiam vel lorem sed viverra.
- Felis dolore viverra.
-
-
-
Icons
-
-
-
-
-
-
Definition
-
- Item1
-
- Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Lorem ipsum dolor.
-
- Item2
-
- Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Lorem ipsum dolor.
-
- Item3
-
- Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Lorem ipsum dolor.
-
-
-
-
Actions
-
-
-
-
-
Pagination
-
-
-
-
Blockquote
-
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 vestibulum. Blandit adipiscing eu felis.
-
-
-
Table
-
-
Default
-
-
-
-
- Name
- Description
- Price
-
-
-
-
- Item1
- Ante turpis integer aliquet porttitor.
- 29.99
-
-
- Item2
- Vis ac commodo adipiscing arcu aliquet.
- 19.99
-
-
- Item3
- Morbi faucibus arcu accumsan lorem.
- 29.99
-
-
- Item4
- Vitae integer tempus condimentum.
- 19.99
-
-
- Item5
- Ante turpis integer aliquet porttitor.
- 29.99
-
-
-
-
-
- 100.00
-
-
-
-
-
-
Alternate
-
-
-
-
- Name
- Description
- Price
-
-
-
-
- Item1
- Ante turpis integer aliquet porttitor.
- 29.99
-
-
- Item2
- Vis ac commodo adipiscing arcu aliquet.
- 19.99
-
-
- Item3
- Morbi faucibus arcu accumsan lorem.
- 29.99
-
-
- Item4
- Vitae integer tempus condimentum.
- 19.99
-
-
- Item5
- Ante turpis integer aliquet porttitor.
- 29.99
-
-
-
-
-
- 100.00
-
-
-
-
-
-
-
-
-
-
Buttons
-
-
-
-
-
-
-
-
-
Form
-
-
-
-
-
Image
-
-
Fit
-
-
-
-
Left & Right
-
Lorem ipsum dolor sit 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 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 vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis.
-
Lorem ipsum dolor sit 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 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 vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis.
-
-
-
Box
-
-
Felis sagittis eget tempus 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. Magna sed etiam ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus lorem ipsum.
-
-
-
-
Preformatted
-
i = 0;
-
-while (!deck.isInOrder()) {
- print 'Iteration ' + i;
- deck.shuffle();
- i++;
-}
-
-print 'It took ' + i + ' iterations to sort the deck.';
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/html5up-forty/generic.html b/html5up-forty/generic.html
deleted file mode 100644
index be9f0cb..0000000
--- a/html5up-forty/generic.html
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-
Generic - Forty by HTML5 UP
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
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.
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis dapibus rutrum facilisis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam tristique libero eu nibh porttitor fermentum. Nullam venenatis erat id vehicula viverra. Nunc ultrices eros ut ultricies condimentum. Mauris risus lacus, blandit sit amet venenatis non, bibendum vitae dolor. Nunc lorem mauris, fringilla in aliquam at, euismod in lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In non lorem sit amet elit placerat maximus. Pellentesque aliquam maximus risus, vel sed vehicula.
-
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.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/html5up-forty/images/banner.jpg b/html5up-forty/images/banner.jpg
deleted file mode 100644
index bb4643a..0000000
Binary files a/html5up-forty/images/banner.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic01.jpg b/html5up-forty/images/pic01.jpg
deleted file mode 100644
index 09d4226..0000000
Binary files a/html5up-forty/images/pic01.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic02.jpg b/html5up-forty/images/pic02.jpg
deleted file mode 100644
index fce4f51..0000000
Binary files a/html5up-forty/images/pic02.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic03.jpg b/html5up-forty/images/pic03.jpg
deleted file mode 100644
index c7b9b12..0000000
Binary files a/html5up-forty/images/pic03.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic04.jpg b/html5up-forty/images/pic04.jpg
deleted file mode 100644
index a7d6edb..0000000
Binary files a/html5up-forty/images/pic04.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic05.jpg b/html5up-forty/images/pic05.jpg
deleted file mode 100644
index acc4c6c..0000000
Binary files a/html5up-forty/images/pic05.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic06.jpg b/html5up-forty/images/pic06.jpg
deleted file mode 100644
index 2a71e40..0000000
Binary files a/html5up-forty/images/pic06.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic07.jpg b/html5up-forty/images/pic07.jpg
deleted file mode 100644
index 120d076..0000000
Binary files a/html5up-forty/images/pic07.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic08.jpg b/html5up-forty/images/pic08.jpg
deleted file mode 100644
index fa51ad1..0000000
Binary files a/html5up-forty/images/pic08.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic09.jpg b/html5up-forty/images/pic09.jpg
deleted file mode 100644
index 9ac5b30..0000000
Binary files a/html5up-forty/images/pic09.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic10.jpg b/html5up-forty/images/pic10.jpg
deleted file mode 100644
index 238db69..0000000
Binary files a/html5up-forty/images/pic10.jpg and /dev/null differ
diff --git a/html5up-forty/images/pic11.jpg b/html5up-forty/images/pic11.jpg
deleted file mode 100644
index 35c899f..0000000
Binary files a/html5up-forty/images/pic11.jpg and /dev/null differ
diff --git a/html5up-forty/index.html b/html5up-forty/index.html
deleted file mode 100644
index 4f0db50..0000000
--- a/html5up-forty/index.html
+++ /dev/null
@@ -1,215 +0,0 @@
-
-
-
-
-
Forty by HTML5 UP
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
A responsive site template designed by HTML5 UP
- and released under the Creative Commons.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Ipsum dolor sit amet
-
-
-
-
-
-
-
-
- feugiat amet tempus
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Ipsum dolor sit amet
-
-
-
-
-
-
-
-
- Feugiat amet tempus
-
-
-
-
-
-
-
-
-
Nullam et orci eu lorem consequat tincidunt vivamus et sagittis libero. Mauris aliquet magna magna sed nunc rhoncus pharetra. Pellentesque condimentum sem. In efficitur ligula tate urna. Maecenas laoreet massa vel lacinia pellentesque lorem ipsum dolor. Nullam et orci eu lorem consequat tincidunt. Vivamus et sagittis libero. Mauris aliquet magna magna sed nunc rhoncus amet pharetra et feugiat tempus.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/html5up-forty/landing.html b/html5up-forty/landing.html
deleted file mode 100644
index 152aeef..0000000
--- a/html5up-forty/landing.html
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-
Landing - Forty by HTML5 UP
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Lorem ipsum dolor sit amet nullam consequat
- sed veroeros. tempus adipiscing nulla.
-
-
-
-
-
-
-
-
-
-
-
-
Nullam et orci eu lorem consequat tincidunt vivamus et sagittis magna sed nunc rhoncus condimentum sem. In efficitur ligula tate urna. Maecenas massa vel lacinia pellentesque lorem ipsum dolor. Nullam et orci eu lorem consequat tincidunt. Vivamus et sagittis libero. Nullam et orci eu lorem consequat tincidunt vivamus et sagittis magna sed nunc rhoncus condimentum sem. In efficitur ligula tate urna.
-
-
-
-
-
-
-
-
-
-
-
-
-
Nullam et orci eu lorem consequat tincidunt vivamus et sagittis magna sed nunc rhoncus condimentum sem. In efficitur ligula tate urna. Maecenas massa sed magna lacinia magna pellentesque lorem ipsum dolor. Nullam et orci eu lorem consequat tincidunt. Vivamus et sagittis tempus.
-
-
-
-
-
-
-
-
-
-
-
-
Nullam et orci eu lorem consequat tincidunt vivamus et sagittis magna sed nunc rhoncus condimentum sem. In efficitur ligula tate urna. Maecenas massa sed magna lacinia magna pellentesque lorem ipsum dolor. Nullam et orci eu lorem consequat tincidunt. Vivamus et sagittis tempus.
-
-
-
-
-
-
-
-
-
-
-
-
Nullam et orci eu lorem consequat tincidunt vivamus et sagittis magna sed nunc rhoncus condimentum sem. In efficitur ligula tate urna. Maecenas massa sed magna lacinia magna pellentesque lorem ipsum dolor. Nullam et orci eu lorem consequat tincidunt. Vivamus et sagittis tempus.
-
-
-
-
-
-
-
-
-
-
-
Nullam et orci eu lorem consequat tincidunt vivamus et sagittis libero. Mauris aliquet magna magna sed nunc rhoncus pharetra. Pellentesque condimentum sem. In efficitur ligula tate urna. Maecenas laoreet massa vel lacinia pellentesque lorem ipsum dolor. Nullam et orci eu lorem consequat tincidunt. Vivamus et sagittis libero. Mauris aliquet magna magna sed nunc rhoncus amet pharetra et feugiat tempus.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file