This commit is contained in:
Andrew Banchich 2022-12-09 21:59:31 -05:00
commit 59d5238af5
89 changed files with 6040 additions and 0 deletions

4
assets/css/font-awesome.min.css vendored Normal file

File diff suppressed because one or more lines are too long

50
assets/css/ie8.scss Normal file
View file

@ -0,0 +1,50 @@
@import 'libs/vars';
@import 'libs/functions';
@import 'libs/mixins';
@import 'libs/skel';
/*
Forty by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
/* Button */
.button {
border: solid 2px !important;
&.next {
padding-right: 1.75em;
&:before, &:after {
display: none;
}
}
}
/* Tiles */
.tiles {
article {
width: 50%;
-ms-behavior: url('assets/js/ie/backgroundsize.min.htc');
background-size: cover;
}
}
/* Banner */
#banner {
-ms-behavior: url('assets/js/ie/backgroundsize.min.htc');
&:after {
display: none;
}
}
/* Menu */
#menu {
background: _palette(bg);
}

115
assets/css/ie9.scss Normal file
View file

@ -0,0 +1,115 @@
@import 'libs/vars';
@import 'libs/functions';
@import 'libs/mixins';
@import 'libs/skel';
/*
Forty by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
/* Spotlights */
.spotlights {
> section {
&:after {
content: '';
display: block;
clear: both;
}
> .image {
float: left;
}
> .content {
float: left;
}
}
}
/* Tiles */
.tiles {
&:after {
content: '';
display: block;
clear: both;
}
article {
@include padding(8em, 4em);
float: left;
height: auto;
max-height: none;
min-height: 0;
}
}
/* Header */
#header {
.logo {
position: absolute;
top: 0;
left: 0;
}
nav {
position: absolute;
top: 0;
right: 0;
}
}
/* Banner */
#banner {
@include padding(6em, 0, (1em, 0, 0, 0));
background-attachment: scroll;
height: auto;
max-height: none;
min-height: 0;
> .inner {
.content {
display: block;
> * {
margin-left: 0;
margin: 0 0 _size(element-margin) 0;
}
}
}
&.major {
height: auto;
max-height: none;
min-height: 0;
}
}
/* Contact */
#contact {
&:after {
content: '';
display: block;
clear: both;
}
> .inner {
> * {
float: left;
}
}
}
/* Menu */
#menu {
.inner {
margin: 0 auto;
}
}

80
assets/css/main.scss Normal file
View file

@ -0,0 +1,80 @@
---
---
@import 'libs/vars';
@import 'libs/functions';
@import 'libs/mixins';
@import 'libs/skel';
@import 'font-awesome.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)
*/
@include skel-breakpoints((
xlarge: '(max-width: 1680px)',
large: '(max-width: 1280px)',
medium: '(max-width: 980px)',
small: '(max-width: 736px)',
xsmall: '(max-width: 480px)',
xxsmall: '(max-width: 360px)'
));
@include skel-layout((
reset: 'full',
boxModel: 'border',
grid: ( gutters: 2em ),
breakpoints: (
large: (
grid: ( gutters: 1.5em )
),
small: (
grid: ( gutters: 1.25em )
)
)
));
@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/page';
@import 'base/typography';
// Component.
@import 'components/section';
@import 'components/form';
@import 'components/box';
@import 'components/icon';
@import 'components/image';
@import 'components/list';
@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';