Adding contact page.

This commit is contained in:
2018-05-13 14:44:00 +10:00
parent dd9ac5f2f0
commit 466bdee08c
9 changed files with 182 additions and 3 deletions

View File

@ -0,0 +1,16 @@
/*
* Body Section
* Body Section.
*
* Dependencies:
* styles/settings/colors.scss
*
* Version:
* 1.0.0 - 2018/05/13
*/
$c-body-section--padding: 1em;
.c-body-section {
background: $s-color--background;
padding: $c-body-section--padding;
}

View File

@ -64,6 +64,7 @@
@import './objects/_video.scss';
//Components
@import './components/_body-section.scss';
@import './components/_image-section.scss';
@import './components/_page.scss';
@import './components/_section.scss';

View File

@ -26,6 +26,9 @@ $s-color--swatch-blue: #BAE1FF;
/*
== Color Definitions ==
*/
$s-color--background: white;
//Hyperlink Colors
$s-color--link: #FC78DE;
$s-color--link-hover: lighten($s-color--link, 10%);