Initial commit

This commit is contained in:
Arjun Patel
2018-06-29 00:00:48 -07:00
commit f72587d80e
59 changed files with 10681 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
/* 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');
}
}
}
+70
View File
@@ -0,0 +1,70 @@
// 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;
}
+214
View File
@@ -0,0 +1,214 @@
/* Typography */
html {
font-size: 13pt;
@include breakpoint('<=xlarge') {
font-size: 11pt;
}
@include breakpoint('<=medium') {
font-size: 12pt;
}
@include breakpoint('<=xsmall') {
font-size: 11pt;
}
}
body {
background-color: _palette(bg);
color: _palette(fg);
}
body, input, select, textarea {
font-family: _font(family);
font-weight: _font(weight);
font-size: 1rem;
line-height: 1.65;
}
a {
@include vendor('transition', 'color #{_duration(transition)} ease-in-out');
text-decoration: underline;
&:hover {
text-decoration: none;
}
}
strong, b {
font-weight: _font(weight-bold);
}
em, i {
font-style: italic;
}
p {
margin: 0 0 _size(element-margin) 0;
}
header {
&.special {
text-align:center;
margin-bottom: _size(element-margin) * 2;
p {
max-width: 75%;
margin-left: auto;
margin-right: auto;
}
}
}
h1, h2, h3, h4, h5, h6 {
font-weight: _font(weight-light);
line-height: 1.5;
text-transform: uppercase;
margin: 0 0 (_size(element-margin) * 0.75) 0;
a {
color: inherit;
text-decoration: none;
}
}
h1 {
font-size: 3rem;
line-height: 1.2;
}
h2 {
font-size: 2.25rem;
line-height: 1.3;
}
h3 {
font-size: 1.25rem;
}
h4 {
font-size: 1rem;
}
h5 {
font-size: 0.9rem;
}
h6 {
font-size: 0.7rem;
}
@include breakpoint('<=small') {
h1 {
font-size: 2.75rem;
line-height: 1.3;
}
h2 {
font-size: 1.75rem;
line-height: 1.5;
}
h3 {
font-size: 1.25rem;
}
}
sub {
font-size: 0.8rem;
position: relative;
top: 0.5rem;
}
sup {
font-size: 0.8rem;
position: relative;
top: -0.5rem;
}
blockquote {
border-left: solid 0.5rem;
font-style: italic;
margin: 0 0 _size(element-margin) 0;
padding: (_size(element-margin) * 0.5) 0 (_size(element-margin) * 0.5) _size(element-margin);
}
code {
border-radius: _size(border-radius);
border: solid 1px;
font-family: _font(family-fixed);
font-size: 0.9rem;
margin: 0 0.25rem;
padding: 0.25rem 0.65rem;
}
pre {
-webkit-overflow-scrolling: touch;
font-family: _font(family-fixed);
font-size: 0.9rem;
margin: 0 0 _size(element-margin) 0;
code {
display: block;
line-height: 1.75;
padding: 1rem 1.5rem;
overflow-x: auto;
}
}
hr {
border: 0;
border-bottom: solid 1px;
margin: _size(element-margin) 0;
&.major {
margin: (_size(element-margin) * 2) 0;
}
}
@mixin color-typography($p: null) {
$highlight: _palette($p, highlight);
@if $p != null {
background-color: _palette($p, bg);
color: _palette($p, fg);
}
input, select, textarea {
color: _palette($p, fg-bold);
}
a {
@if $p == $highlight {
color: _palette($p, fg-bold);
}
@else {
color: _palette(accent1, bg);
}
}
strong, b {
color: _palette($p, fg-bold);
}
h1, h2, h3, h4, h5, h6 {
color: _palette($p, fg-bold);
}
blockquote {
border-left-color: _palette($p, border);
}
code {
background: _palette($p, border-bg);
border-color: _palette($p, border);
}
hr {
border-bottom-color: _palette($p, border);
}
}
@include color-typography;
+88
View File
@@ -0,0 +1,88 @@
/* 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: calc(100% + #{_size(element-margin) * 0.5});
}
&.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%;
}
}
@include breakpoint('<=xsmall') {
&:not(.fixed) {
@include vendor('flex-direction', 'column');
margin-left: 0;
width: 100% !important;
li {
@include vendor('flex-grow', '1');
@include vendor('flex-shrink', '1');
padding: (_size(element-margin) * 0.5) 0 0 0;
text-align: center;
width: 100%;
> * {
width: 100%;
}
&:first-child {
padding-top: 0;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
width: 100%;
&.icon {
&:before {
margin-left: -0.5rem;
}
}
}
}
}
}
}
+29
View File
@@ -0,0 +1,29 @@
/* Box */
.box {
border-radius: _size(border-radius);
box-shadow: 0px 0px 4px 1px _palette(border-lt);
padding: 3rem;
> :last-child {
margin-bottom: 0;
}
&.alt {
border: 0;
border-radius: 0;
padding: 0;
}
@include breakpoint('<=medium') {
padding: 2rem;
}
}
@mixin color-box($p: null) {
.box {
border-color: _palette($p, border);
}
}
@include color-box;
+126
View File
@@ -0,0 +1,126 @@
/* 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'
));
border: 0;
border-radius: _size(border-radius);
cursor: pointer;
display: inline-block;
font-weight: _font(weight-bold);
height: _size(element-height);
line-height: _size(element-height);
padding: 0 1.75rem;
text-align: center;
text-decoration: none;
white-space: nowrap;
&.small {
font-size: 0.8rem;
height: _size(element-height) * 0.75;
line-height: _size(element-height) * 0.75;
padding: 0 1.25rem;
}
&.large {
font-size: 1.35rem;
height: _size(element-height) * 1.25;
line-height: _size(element-height) * 1.25;
padding: 0 2rem;
}
&.wide {
min-width: 13rem;
}
&.icon {
&:before {
margin-right: 0.5rem;
}
}
&.fit {
width: 100%;
}
&.disabled,
&:disabled {
@include vendor('pointer-events', 'none');
opacity: 0.25;
}
}
@mixin color-button($p: null) {
$highlight: _palette($p, highlight);
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
background-color: transparent;
box-shadow: inset 0 0 0 1px _palette($p, fg-bold);
color: _palette($p, fg-bold) !important;
@if ($p == $highlight) {
&:hover {
background-color: transparentize(_palette($p, fg-bold), 0.9);
&:active {
background-color: transparentize(_palette($p, fg-bold), 0.75);
}
}
}
@else {
&:hover {
box-shadow: inset 0 0 0 1px _palette($highlight, bg);
color: _palette($highlight, bg) !important;
&:active {
background-color: transparentize(_palette($highlight, bg), 0.75);
}
}
}
&.primary {
box-shadow: none;
@if $p == $highlight {
background-color: _palette($p, fg-bold);
color: _palette($p, bg) !important;
&:hover {
background-color: transparentize(_palette($p, fg-bold), 0.125);
box-shadow: none;
&:active {
background-color: transparentize(_palette($p, fg-bold), 0.5);
}
}
}
@else {
background-color: _palette($highlight, bg);
color: _palette($highlight, fg-bold) !important;
&:hover {
background-color: lighten(_palette($highlight, bg), 5);
box-shadow: none;
&:active {
background-color: darken(_palette($highlight, bg), 5);
}
}
}
}
}
}
@include color-button;
+240
View File
@@ -0,0 +1,240 @@
/* Form */
form {
margin: 0 0 _size(element-margin) 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select,
textarea {
@include vendor('appearance', 'none');
border-radius: _size(border-radius);
border: none;
border: solid 1px;
color: inherit;
display: block;
outline: 0;
padding: 0 1rem;
text-decoration: none;
width: 100%;
&:invalid {
box-shadow: none;
}
}
label {
display: block;
font-size: 1rem;
font-weight: _font(weight-bold);
margin: 0 0 (_size(element-margin) * 0.5) 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"] {
height: _size(element-height);
}
select {
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;
&:focus {
&::-ms-value {
background-color: transparent;
}
}
&::-ms-expand {
display: none;
}
}
textarea {
padding: 0.75rem 1rem;
}
input[type="checkbox"],
input[type="radio"], {
@include vendor('appearance', 'none');
display: block;
float: left;
margin-right: -2rem;
opacity: 0;
width: 1rem;
z-index: -1;
& + label {
@include icon;
cursor: pointer;
display: inline-block;
font-size: 1rem;
font-weight: _font(weight);
padding-left: (_size(element-height) * 0.6) + 0.875rem;
padding-right: 0.875rem;
position: relative;
&:before {
border-radius: _size(border-radius);
border: solid 1px;
content: '';
display: inline-block;
height: (_size(element-height) * 0.6);
left: 0;
line-height: (_size(element-height) * 0.575);
position: absolute;
text-align: center;
top: (_size(element-height) * -0.05);
width: (_size(element-height) * 0.6);
}
}
&:checked + label {
&:before {
content: '\f00c';
}
}
}
input[type="checkbox"] {
& + label {
&:before {
border-radius: _size(border-radius);
}
}
}
input[type="radio"] {
& + label {
&:before {
border-radius: 100%;
}
}
}
::-webkit-input-placeholder {
opacity: 1.0;
}
:-moz-placeholder {
opacity: 1.0;
}
::-moz-placeholder {
opacity: 1.0;
}
:-ms-input-placeholder {
opacity: 1.0;
}
@mixin color-form($p: null) {
$highlight: _palette($p, highlight);
label {
color: _palette($p, fg-bold);
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select,
textarea {
background-color: _palette($p, border-bg);
border-color: _palette($p, border);
&:focus {
@if $p == $highlight {
border-color: _palette($p, fg-bold);
box-shadow: 0 0 0 1px _palette($p, fg-bold);
}
@else {
border-color: _palette(accent1, bg);
box-shadow: 0 0 0 1px _palette(accent1, bg);
}
}
}
select {
background-image: svg-url("<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'><path d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='#{_palette($p, border)}' /></svg>");
option {
color: _palette($p, fg);
background-color: _palette($p, bg);
}
}
input[type="checkbox"],
input[type="radio"], {
& + label {
color: _palette($p, fg);
&:before {
background: _palette($p, border-bg);
border-color: _palette($p, border);
}
}
&:checked + label {
&:before {
@if $p == $highlight {
background-color: _palette($p, fg-bold);
border-color: _palette($p, fg-bold);
color: _palette($p, bg);
}
@else {
background-color: _palette(accent1, bg);
border-color: _palette(accent1, bg);
color: _palette(accent1, fg-bold);
}
}
}
&:focus + label {
&:before {
@if $p == $highlight {
border-color: _palette($p, fg-bold);
box-shadow: 0 0 0 1px _palette($p, fg-bold);
}
@else {
border-color: _palette(accent1, bg);
box-shadow: 0 0 0 1px _palette(accent1, bg);
}
}
}
}
::-webkit-input-placeholder {
color: _palette($p, fg-light) !important;
}
:-moz-placeholder {
color: _palette($p, fg-light) !important;
}
::-moz-placeholder {
color: _palette($p, fg-light) !important;
}
:-ms-input-placeholder {
color: _palette($p, fg-light) !important;
}
}
@include color-form;
+23
View File
@@ -0,0 +1,23 @@
/* Grid */
@include grid(3rem);
@include breakpoint('<=xlarge') {
@include grid(3rem, 'xlarge');
}
@include breakpoint('<=large') {
@include grid(1.5rem, 'large');
}
@include breakpoint('<=medium') {
@include grid(1.5rem, 'medium');
}
@include breakpoint('<=small') {
@include grid(1.25rem, 'small');
}
@include breakpoint('<=xsmall') {
@include grid(1.25rem, 'xsmall');
}
+65
View File
@@ -0,0 +1,65 @@
/* Highlights */
.highlights {
width: 100%;
margin: (_size(element-margin) * 1.25) 0;
@include flexgrid((
columns: 3,
gutters: 3rem,
vertical-align: stretch
));
.content {
border-radius: _size(border-radius);
height: 100%;
padding: 3rem;
text-align: center;
.icon {
font-size: 5rem;
}
}
> div {
> :last-child {
margin-bottom: 0;
}
}
@include breakpoint('<=medium') {
@include flexgrid-resize((
columns: 2,
gutters: 2rem,
prev-columns: 3
));
.content {
padding: 2rem;
}
}
@include breakpoint('<=small') {
@include flexgrid-resize((
columns: 1,
gutters: 2rem,
prev-columns: (3, 2)
));
}
}
@mixin color-highlights($p: null) {
$highlight: _palette($p, highlight);
.highlights {
.content {
background: _palette($p, bg);
box-shadow: 0px 0px 4px 1px _palette($p, border-lt);
}
}
}
@include color-highlights;
+11
View File
@@ -0,0 +1,11 @@
/* Icon */
.icon {
@include icon;
border-bottom: none;
position: relative;
> .label {
display: none;
}
}
+22
View File
@@ -0,0 +1,22 @@
/* Icons */
ul.icons {
cursor: default;
list-style: none;
padding-left: 0;
li {
display: inline-block;
padding: 0 1rem 0 0;
&:last-child {
padding-right: 0;
}
.icon {
&:before {
font-size: 2rem;
}
}
}
}
+54
View File
@@ -0,0 +1,54 @@
/* Image */
.image {
border-radius: _size(border-radius);
border: 0;
display: inline-block;
position: relative;
img {
border-radius: _size(border-radius);
display: block;
}
&.left,
&.right {
max-width: 40%;
img {
width: 100%;
}
}
&.left {
float: left;
margin: 0 2rem 2rem 0;
top: 0.25rem;
}
&.right {
float: right;
margin: 0 0 2rem 2rem;
top: 0.25rem;
}
&.fit {
display: block;
margin: 0 0 _size(element-margin) 0;
width: 100%;
img {
width: 100%;
}
}
&.main {
display: block;
margin: 0 0 (_size(element-margin) * 1.5) 0;
width: 100%;
img {
width: 100%;
}
}
}
+11
View File
@@ -0,0 +1,11 @@
/* Inner */
.inner {
margin: 0 auto;
width: _size(inner-width);
max-width: calc(100% - 6rem);
@include breakpoint('<=xsmall') {
max-width: calc(100% - 3rem);
}
}
+88
View File
@@ -0,0 +1,88 @@
/* List */
ol {
list-style: decimal;
margin: 0 0 _size(element-margin) 0;
padding-left: 1.25rem;
li {
padding-left: 0.25rem;
}
}
ul {
list-style: disc;
margin: 0 0 _size(element-margin) 0;
padding-left: 1rem;
li {
padding-left: 0.325rem;
}
&.plain {
list-style: none;
padding-left: 0;
li {
margin-bottom: 1rem;
.icon {
border-radius: _size(border-radius);
color: _palette(accent1,fg-bold);
display: inline-block;
margin-right: 1rem;
text-align:center;
width: 2rem;
height: 2rem;
line-height: 2rem;
background: rgba(0,0,0,0.5);
}
}
}
&.alt {
list-style: none;
padding-left: 0;
li {
border-top: solid 1px;
padding: 0.75rem 0;
&:first-child {
border-top: 0;
padding-top: 0;
}
&:last-child {
padding-bottom: 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) * 0.75);
}
}
@mixin color-list($p: null) {
ul {
&.alt {
li {
border-top-color: _palette($p, border);
}
}
}
}
@include color-list;
+108
View File
@@ -0,0 +1,108 @@
/* 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;
border-left: 0;
border-right: 0;
}
}
td {
padding: 0.75rem 0.75rem;
}
th {
font-size: 0.9rem;
font-weight: _font(weight-bold);
padding: 0 0.75rem 0.75rem 0.75rem;
text-align: left;
}
thead {
border-bottom: solid 2px;
}
tfoot {
border-top: solid 2px;
}
&.alt {
border-collapse: separate;
tbody {
tr {
td {
border: solid 1px;
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;
}
}
}
@mixin color-table($p: null) {
table {
tbody {
tr {
border-color: _palette($p, border);
&:nth-child(2n + 1) {
background-color: _palette($p, border-bg);
}
}
}
th {
color: _palette($p, fg-bold);
}
thead {
border-bottom-color: _palette($p, border);
}
tfoot {
border-top-color: _palette($p, border);
}
&.alt {
tbody {
tr {
td {
border-color: _palette($p, border);
}
}
}
}
}
}
@include color-table;
+92
View File
@@ -0,0 +1,92 @@
/* Testimonials */
.testimonials {
margin: (_size(element-margin) * 1.25) 0;
width: 100%;
@include flexgrid((
columns: 3,
gutters: 3rem,
vertical-align: stretch,
));
.content {
border-radius: _size(border-radius);
height: 100%;
padding: 3rem;
.author {
@include vendor('display','flex');
@include vendor('align-items','center');
blockquote {
margin: 0;
}
.image {
margin-right: 2rem;
width: 20%;
img {
border-radius: 100%;
max-width: 100%;
}
}
}
.credit {
font-size: 0.75rem;
}
p {
&:last-child {
margin: 0;
}
}
}
> div {
> :last-child {
margin-bottom: 0;
}
}
@include breakpoint('<=medium') {
@include flexgrid-resize((
columns: 2,
gutters: 2rem,
prev-columns: 3
));
.content {
padding: 2rem;
}
}
@include breakpoint('<=small') {
@include flexgrid-resize((
columns: 1,
gutters: 2rem,
prev-columns: (3, 2)
));
}
}
@mixin color-testimonials($p: null) {
$highlight: _palette($p, highlight);
.testimonials {
.content {
background: _palette($p, bg);
box-shadow: 0px 0px 4px 1px _palette($p, border-lt);
.credit {
strong {
color: _palette($highlight,bg);
}
}
}
}
}
@include color-testimonials;
+20
View File
@@ -0,0 +1,20 @@
/* Wrapper */
.wrapper {
@include padding(8rem, 0);
position: relative;
z-index: 1;
@include breakpoint('<=large') {
@include padding(4rem, 0);
}
@include breakpoint('<=small') {
@include padding(3rem, 0);
}
@include breakpoint('<=xsmall') {
@include padding(2rem, 0);
}
}
+152
View File
@@ -0,0 +1,152 @@
/* Banner */
#banner {
-ms-flex-align: center;
-ms-flex-pack: center;
@include color(accent2);
@include vendor('align-items', 'center');
@include vendor('display', 'flex');
@include vendor('justify-content', 'center');
background-image: url('../../images/banner.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-top: 0;
display: -ms-flexbox;
height: 35rem !important;
min-height: 35rem;
overflow: hidden;
position: relative;
text-align: center;
width: 100%;
> .inner {
@include vendor('transform', 'scale(1.0)');
@include vendor('transition', (
'opacity #{_duration(banner)} ease',
'transform #{_duration(banner)} ease'
));
opacity: 1;
position: relative;
z-index: 3;
> :last-child {
margin-bottom: 0;
}
}
h1 {
font-size: 4rem;
margin-bottom: 1rem;
}
p {
font-size: 1.5rem;
}
a {
color: _palette(accent2, fg);
text-decoration: none;
&:hover {
color: _palette(accent2, fg-bold);
}
}
video {
@include vendor('transform', 'translateX(50%) translateY(50%)');
bottom: 50%;
height: auto;
min-height: 100%;
min-width: 100%;
overflow: hidden;
position: absolute;
right: 50%;
width: auto;
}
&:before {
@include vendor('transition', 'opacity 3s ease');
@include vendor('transition-delay', '#{_duration(banner) * 1.25}');
background: _palette(accent2,bg);
content: '';
display: block;
height: 100%;
left: 0;
opacity: 0.45;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
&:after {
background: linear-gradient(135deg, _palette(accent1,bg) 0%,_palette(accent2,bg) 74%);
content: ' ';
display: block;
height: 100%;
left: 0;
opacity: 0.6;
position: absolute;
top: 0;
webkit-linear-gradientidth: 100%;
width: 100%;
z-index: 1;
}
&.small {
height: 30vh !important;
min-height: 30vh;
}
@include breakpoint('<=large') {
video {
display: none;
}
}
@include breakpoint('<=small') {
height: auto !important;
min-height: 0;
padding: 4rem 2rem 4rem 2rem;
.inner {
width: 100%;
}
h1 {
font-size: 1.75rem;
margin-bottom: 0.5rem;
padding-bottom: 0;
}
p {
font-size: 1.25rem;
}
br {
display: none;
}
.button {
width: 100%;
}
}
@include breakpoint('<=xsmall') {
p {
font-size: 1rem;
}
}
body.is-preload & {
.inner {
@include vendor('transform', 'scale(0.99)');
opacity: 0;
}
&:before {
opacity: 1;
}
}
}
+22
View File
@@ -0,0 +1,22 @@
/* CTA */
#cta {
@include color(accent1);
background-attachment: fixed;
background-image: linear-gradient(transparentize(_palette(accent1,bg), 0.75), transparentize(_palette(accent1,bg), 0.75)), url(../../images/cta01.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
position: relative;
text-align: center;
z-index: 1;
.inner {
position: relative;
z-index: 3;
}
@include breakpoint('<=medium') {
background-attachment: scroll;
}
}
+77
View File
@@ -0,0 +1,77 @@
/* Footer */
#footer {
@include color(accent2);
@include padding(8rem, 0);
a {
color: _palette(accent2, fg);
text-decoration: none;
&:hover {
color: _palette(accent1, bg);
}
}
.content {
@include vendor('display', 'flex');
section {
width: 25%;
&:first-child {
width: 50%;
padding-right: _size(element-margin) * 2;
}
&:last-child {
padding-left: _size(element-margin) * 2;
}
}
}
.copyright {
border-top: 1px solid;
font-size: 0.8rem;
opacity: 0.5;
padding: _size(element-margin) 0;
text-align: center;
}
@include breakpoint('<=large') {
@include padding(4rem, 0);
}
@include breakpoint('<=medium') {
.content {
@include vendor('flex-wrap', 'wrap');
section {
width: 50%;
&:first-child {
width: 100%;
padding-right: 0;
}
}
}
}
@include breakpoint('<=small') {
@include padding(3rem, 0);
.content {
section {
width: 100%;
&:last-child {
padding-left: 0;
}
}
}
}
@include breakpoint('<=xsmall') {
@include padding(2rem, 0);
}
}
+113
View File
@@ -0,0 +1,113 @@
/* Header */
$accent: accent2;
body {
padding-top: _size(header-height);
&:before {
content: ' ';
background-image: url(../../images/bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
display: block;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.05;
}
}
#header {
@include vendor('align-items', 'center');
@include vendor('display', 'flex');
@include vendor('justify-content', 'space-between');
background: _palette($accent, bg);
color: _palette($accent, fg);
cursor: default;
height: _size(header-height);
left: 0;
line-height: _size(header-height);
position: fixed;
top: 0;
width: 100%;
z-index: _misc(z-index-base) + 1;
> .logo {
color: _palette($accent, fg-bold);
font-size: 1rem;
font-weight: _font(weight-bold);
height: inherit;
line-height: inherit;
padding: 0 1.25rem;
text-decoration: none;
}
> nav {
> a {
color: inherit;
display: inline-block;
padding: 0 0.75rem;
text-decoration: none;
&:hover {
color: _palette($accent, fg-bold);
}
&[href="#menu"] {
@include icon;
-webkit-tap-highlight-color: rgba(0,0,0,0);
&:before {
content: '\f0c9';
margin: 0 0.5rem 0 0;
}
}
& + a[href="#menu"]:last-child {
border-left: solid 1px _palette($accent, border);
margin-left: 0.5rem;
padding-left: 1.25rem;
}
&:last-child {
padding-right: 1.25rem;
}
@include breakpoint('<=small') {
padding: 0 0.5rem;
& + a[href="#menu"]:last-child {
margin-left: 0.25rem;
padding-left: 1rem;
}
&:last-child {
padding-right: 1rem;
}
}
}
}
}
@include breakpoint('<=medium') {
body {
padding-top: 44px;
}
#header {
height: 44px;
line-height: 44px;
}
}
@include breakpoint('<=xsmall') {
#header {
min-width: 320px;
}
}
+45
View File
@@ -0,0 +1,45 @@
/* Heading */
#heading {
-ms-flex-align: center;
-ms-flex-pack: center;
@include color(accent2);
@include vendor('align-items', 'center');
@include vendor('display', 'flex');
@include vendor('justify-content', 'center');
background-image: linear-gradient(transparentize(_palette(accent2,bg), 0.75), transparentize(_palette(accent2,bg), 0.75)), url('../../images/banner.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-top: 0;
display: -ms-flexbox;
height: 15rem !important;
min-height: 15rem;
overflow: hidden;
position: relative;
text-align: center;
width: 100%;
&:before {
background: linear-gradient(135deg, _palette(accent1,bg) 0%,_palette(accent2,bg) 74%);
content: ' ';
display: block;
height: 100%;
left: 0;
opacity: 0.6;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
h1 {
margin-bottom: 0;
position: relative;
z-index: 2;
}
@include breakpoint('<=medium') {
padding: 2rem;
}
}
+19
View File
@@ -0,0 +1,19 @@
/* Main */
#main {
.content {
background: _palette(bg);
border-radius: _size(border-radius);
box-shadow: 0px 0px 4px 1px _palette(border-lt);
margin-bottom: _size(element-margin);
padding: 3rem;
@include breakpoint('<=medium') {
padding: 2rem;
}
@include breakpoint('<=xsmall') {
padding: 1.5rem;
}
}
}
+104
View File
@@ -0,0 +1,104 @@
/* Menu */
$accent: accent2;
#menu {
@include color-typography($accent);
@include color-button($accent);
@include vendor('transform', 'translateX(#{_size(menu-width)})');
@include vendor('transition', (
'transform #{_duration(menu)} ease',
'box-shadow #{_duration(menu)} ease',
'visibility #{_duration(menu)}'
));
-webkit-overflow-scrolling: touch;
box-shadow: none;
height: 100%;
max-width: 80%;
overflow-y: auto;
padding: 3rem 2rem;
position: fixed;
right: 0;
top: 0;
visibility: hidden;
width: _size(menu-width);
z-index: _misc(z-index-base) + 2;
> ul {
margin: 0 0 (_size(element-margin) * 0.5) 0;
&.links {
list-style: none;
padding: 0;
> li {
padding: 0;
> a {
border: 0;
border-top: solid 1px _palette($accent, border);
color: inherit;
display: block;
letter-spacing: _size(letter-spacing-alt);
line-height: 3.5rem;
text-decoration: none;
&:hover {
color: _palette($accent, fg-bold);
}
}
&:first-child {
> a {
border-top: 0;
}
}
}
}
}
.close {
@include icon;
@include vendor('transition', 'color #{_duration(transition)} ease-in-out');
-webkit-tap-highlight-color: rgba(0,0,0,0);
border: 0;
color: _palette($accent, fg-light);
cursor: pointer;
display: block;
height: 3.25rem;
line-height: 3.25rem;
padding-right: 1.25rem;
position: absolute;
right: 0;
text-align: right;
top: 0;
vertical-align: middle;
width: 7rem;
&:before {
content: '\f00d';
font-size: 1.25rem;
}
&:hover {
color: _palette($accent, fg-bold);
}
@include breakpoint('<=small') {
height: 4rem;
line-height: 4rem;
}
}
@include breakpoint('<=small') {
padding: 2.5rem 1.75rem;
}
}
body.is-menu-visible {
#menu {
@include vendor('transform', 'translateX(0)');
box-shadow: 0 0 1.5rem 0 rgba(0,0,0,0.2);
visibility: visible;
}
}
+223
View File
@@ -0,0 +1,223 @@
// breakpoints.scss v0.1-dev | @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;
}
}
+338
View File
@@ -0,0 +1,338 @@
// flexgrid.scss v0.1-dev | @ajlkn | MIT licensed */
// Mixins.
/// Initializes base flexgrid classes.
/// @param {string} $vertical-align Vertical alignment of cells.
/// @param {string} $horizontal-align Horizontal alignment of cells.
@mixin flexgrid-base($vertical-align: null, $horizontal-align: null) {
// Grid.
@include vendor('display', 'flex');
@include vendor('flex-wrap', 'wrap');
// Vertical alignment.
@if ($vertical-align == top) {
@include vendor('align-items', 'flex-start');
}
@else if ($vertical-align == bottom) {
@include vendor('align-items', 'flex-end');
}
@else if ($vertical-align == center) {
@include vendor('align-items', 'center');
}
@else {
@include vendor('align-items', 'stretch');
}
// Horizontal alignment.
@if ($horizontal-align != null) {
text-align: $horizontal-align;
}
// Cells.
> * {
@include vendor('flex-shrink', '1');
@include vendor('flex-grow', '0');
}
}
/// Sets up flexgrid columns.
/// @param {integer} $columns Columns.
@mixin flexgrid-columns($columns) {
> * {
$cell-width: 100% / $columns;
width: #{$cell-width};
}
}
/// Sets up flexgrid gutters.
/// @param {integer} $columns Columns.
/// @param {number} $gutters Gutters.
@mixin flexgrid-gutters($columns, $gutters) {
// Apply padding.
> * {
$cell-width: 100% / $columns;
padding: ($gutters * 0.5);
width: $cell-width;
}
}
/// Sets up flexgrid gutters (flush).
/// @param {integer} $columns Columns.
/// @param {number} $gutters Gutters.
@mixin flexgrid-gutters-flush($columns, $gutters) {
// Apply padding.
> * {
$cell-width: 100% / $columns;
$cell-width-pad: $gutters / $columns;
padding: ($gutters * 0.5);
width: calc(#{$cell-width} + #{$cell-width-pad});
}
// Clear top/bottom gutters.
> :nth-child(-n + #{$columns}) {
padding-top: 0;
}
> :nth-last-child(-n + #{$columns}) {
padding-bottom: 0;
}
// Clear left/right gutters.
> :nth-child(#{$columns}n + 1) {
padding-left: 0;
}
> :nth-child(#{$columns}n) {
padding-right: 0;
}
// Adjust widths of leftmost and rightmost cells.
> :nth-child(#{$columns}n + 1),
> :nth-child(#{$columns}n) {
$cell-width: 100% / $columns;
$cell-width-pad: ($gutters / $columns) - ($gutters / 2);
width: calc(#{$cell-width} + #{$cell-width-pad});
}
}
/// Reset flexgrid gutters (flush only).
/// Used to override a previous set of flexgrid gutter classes.
/// @param {integer} $columns Columns.
/// @param {number} $gutters Gutters.
/// @param {integer} $prev-columns Previous columns.
@mixin flexgrid-gutters-flush-reset($columns, $gutters, $prev-columns) {
// Apply padding.
> * {
$cell-width: 100% / $prev-columns;
$cell-width-pad: $gutters / $prev-columns;
padding: ($gutters * 0.5);
width: calc(#{$cell-width} + #{$cell-width-pad});
}
// Clear top/bottom gutters.
> :nth-child(-n + #{$prev-columns}) {
padding-top: ($gutters * 0.5);
}
> :nth-last-child(-n + #{$prev-columns}) {
padding-bottom: ($gutters * 0.5);
}
// Clear left/right gutters.
> :nth-child(#{$prev-columns}n + 1) {
padding-left: ($gutters * 0.5);
}
> :nth-child(#{$prev-columns}n) {
padding-right: ($gutters * 0.5);
}
// Adjust widths of leftmost and rightmost cells.
> :nth-child(#{$prev-columns}n + 1),
> :nth-child(#{$prev-columns}n) {
$cell-width: 100% / $columns;
$cell-width-pad: $gutters / $columns;
padding: ($gutters * 0.5);
width: calc(#{$cell-width} + #{$cell-width-pad});
}
}
/// Adds debug styles to current flexgrid element.
@mixin flexgrid-debug() {
box-shadow: 0 0 0 1px red;
> * {
box-shadow: inset 0 0 0 1px blue;
position: relative;
> * {
position: relative;
box-shadow: inset 0 0 0 1px green;
}
}
}
/// Initializes the current element as a flexgrid.
/// @param {integer} $columns Columns (optional).
/// @param {number} $gutters Gutters (optional).
/// @param {bool} $flush If true, clears padding around the very edge of the grid.
@mixin flexgrid($settings: ()) {
// Settings.
// Debug.
$debug: false;
@if (map-has-key($settings, 'debug')) {
$debug: map-get($settings, 'debug');
}
// Vertical align.
$vertical-align: null;
@if (map-has-key($settings, 'vertical-align')) {
$vertical-align: map-get($settings, 'vertical-align');
}
// Horizontal align.
$horizontal-align: null;
@if (map-has-key($settings, 'horizontal-align')) {
$horizontal-align: map-get($settings, 'horizontal-align');
}
// Columns.
$columns: null;
@if (map-has-key($settings, 'columns')) {
$columns: map-get($settings, 'columns');
}
// Gutters.
$gutters: 0;
@if (map-has-key($settings, 'gutters')) {
$gutters: map-get($settings, 'gutters');
}
// Flush.
$flush: true;
@if (map-has-key($settings, 'flush')) {
$flush: map-get($settings, 'flush');
}
// Initialize base grid.
@include flexgrid-base($vertical-align, $horizontal-align);
// Debug?
@if ($debug) {
@include flexgrid-debug;
}
// Columns specified?
@if ($columns != null) {
// Initialize columns.
@include flexgrid-columns($columns);
// Gutters specified?
@if ($gutters > 0) {
// Flush gutters?
@if ($flush) {
// Initialize gutters (flush).
@include flexgrid-gutters-flush($columns, $gutters);
}
// Otherwise ...
@else {
// Initialize gutters.
@include flexgrid-gutters($columns, $gutters);
}
}
}
}
/// Resizes a previously-initialized grid.
/// @param {integer} $columns Columns.
/// @param {number} $gutters Gutters (optional).
/// @param {list} $reset A list of previously-initialized grid columns (only if $flush is true).
/// @param {bool} $flush If true, clears padding around the very edge of the grid.
@mixin flexgrid-resize($settings: ()) {
// Settings.
// Columns.
$columns: 1;
@if (map-has-key($settings, 'columns')) {
$columns: map-get($settings, 'columns');
}
// Gutters.
$gutters: 0;
@if (map-has-key($settings, 'gutters')) {
$gutters: map-get($settings, 'gutters');
}
// Previous columns.
$prev-columns: false;
@if (map-has-key($settings, 'prev-columns')) {
$prev-columns: map-get($settings, 'prev-columns');
}
// Flush.
$flush: true;
@if (map-has-key($settings, 'flush')) {
$flush: map-get($settings, 'flush');
}
// Resize columns.
@include flexgrid-columns($columns);
// Gutters specified?
@if ($gutters > 0) {
// Flush gutters?
@if ($flush) {
// Previous columns specified?
@if ($prev-columns) {
// Convert to list if it isn't one already.
@if (type-of($prev-columns) != list) {
$prev-columns: ($prev-columns);
}
// Step through list of previous columns and reset them.
@each $x in $prev-columns {
@include flexgrid-gutters-flush-reset($columns, $gutters, $x);
}
}
// Resize gutters (flush).
@include flexgrid-gutters-flush($columns, $gutters);
}
// Otherwise ...
@else {
// Resize gutters.
@include flexgrid-gutters($columns, $gutters);
}
}
}
+92
View File
@@ -0,0 +1,92 @@
// skel-baseline v3.0.1 | (c) n33 | skel.io | MIT licensed
/// 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...);
}
+121
View File
@@ -0,0 +1,121 @@
// grid.scss v0.1-dev | @ajlkn | MIT licensed */
// Mixins.
/// Initializes grid classes.
/// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually).
/// @param {string} $suffix Optional column class suffix.
/// @param {list} $override Optional list of column classes to override.
@mixin grid($gutters: 1.5em, $suffix: '', $override: ()) {
// Initialize.
$cols: 12;
$multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00;
$unit: 100% / $cols;
$suffixes: join($override, ($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.
.row {
display: flex;
flex-wrap: wrap;
box-sizing: border-box;
// Columns.
> * {
box-sizing: border-box;
}
// Gutters.
&.gtr-uniform {
> * {
> :last-child {
margin-bottom: 0;
}
}
}
}
// Step through suffixes.
@each $suffix in $suffixes {
// Suffix.
@if ($suffix != '') {
$suffix: '-' + $suffix;
}
@else {
$suffix: '';
}
// Row.
.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;
}
}
}
}
}
}
}
+63
View File
@@ -0,0 +1,63 @@
/// Makes an element's :before pseudoelement a FontAwesome icon.
/// @param {string} $content Optional content value to use.
/// @param {string} $where Optional pseudoelement to target (before or after).
@mixin icon($content: false, $where: before) {
text-decoration: none;
&:#{$where} {
@if $content {
content: $content;
}
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}
}
/// 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}");
}
+66
View File
@@ -0,0 +1,66 @@
// Misc.
$misc: (
z-index-base: 10000
);
// Duration.
$duration: (
menu: 0.5s,
banner: 1s,
transition: 0.2s
);
// Size.
$size: (
border-radius: 4px,
element-height: 3.25rem,
element-margin: 2rem,
container-width: 80rem,
header-height: 3.25rem,
inner-width: 75rem,
menu-width: 20rem
);
// Font.
$font: (
family: ('Raleway', Arial, Helvetica, sans-serif),
family-fixed: ('Courier New', monospace),
weight: 400,
weight-light: 300,
weight-xlite: 200,
weight-bold: 600
);
// Palette.
$palette: (
bg: #ffffff,
fg: #444444,
fg-bold: #555555,
fg-light: #bbbbbb,
border: rgba(0,0,0,0.25),
border-bg: rgba(0,0,0,0.075),
border-lt: rgba(0,0,0,0.025),
highlight: accent1,
accent1: (
bg: #ce1b28,
fg: rgba(255,255,255,0.75),
fg-bold: #ffffff,
fg-light: rgba(255,255,255,0.4),
border: rgba(255,255,255,0.25),
border-bg: rgba(255,255,255,0.075),
border-lt: rgba(255,255,255,0.025),
highlight: accent1
),
accent2: (
bg: #111111,
fg: rgba(255,255,255,0.5),
fg-bold: #ffffff,
fg-light: rgba(255,255,255,0.4),
border: rgba(255,255,255,0.25),
border-bg: rgba(255,255,255,0.075),
border-lt: rgba(255,255,255,0.025),
highlight: accent1
)
);
+376
View File
@@ -0,0 +1,376 @@
// vendor.scss v0.1-dev | @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};
}
}
+66
View File
@@ -0,0 +1,66 @@
@import 'libs/vars';
@import 'libs/functions';
@import 'libs/mixins';
@import 'libs/vendor';
@import 'libs/breakpoints';
@import 'libs/grid';
@import 'libs/flexgrid';
@import 'font-awesome.min.css';
@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600');
/*
Industrious by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
*/
// Breakpoints.
@include breakpoints((
default: (1681px, null ),
xlarge: (1281px, 1680px ),
large: (981px, 1280px ),
medium: (737px, 980px ),
small: (481px, 736px ),
xsmall: (361px, 480px ),
xxsmall: (null, 360px )
));
// Color.
@mixin color($p) {
@include color-typography($p);
@include color-button($p);
@include color-form($p);
@include color-list($p);
@include color-table($p);
@include color-highlights($p);
@include color-testimonials($p);
}
// Base.
@import 'base/page';
@import 'base/reset';
@import 'base/typography';
// Component.
@import 'components/inner';
@import 'components/button';
@import 'components/form';
@import 'components/list';
@import 'components/table';
@import 'components/highlights';
@import 'components/testimonials';
@import 'components/actions';
@import 'components/grid';
@import 'components/icon';
@import 'components/icons';
@import 'components/image';
@import 'components/wrapper';
// Layout.
@import 'layout/banner';
@import 'layout/cta';
@import 'layout/footer';
@import 'layout/header';
@import 'layout/heading';
@import 'layout/main';
@import 'layout/menu';