css: general placement

This commit is contained in:
Mark Moser
2017-05-02 14:04:13 -05:00
parent b961fe7553
commit 9f3e90386e
8 changed files with 89 additions and 10 deletions

View File

@ -1,6 +1,9 @@
// normalize css is loaded, then these additions:
html {
margin: 0;
padding: 0;
font-size: 16px;
box-sizing: border-box;
}

View File

@ -2,14 +2,27 @@
$tablet: 48em; // tablet
$desktop: 64em; // desktop
$gutter: 32px;
$progressbar-height: $gutter * 2;
$heading-font-face: 'HalisR', sans-serif;
$primary-font-face: 'Lato', sans-serif;
//colors
$pd-red: #ef0734;
$pd-yellow: #fff200;
$pd-green: #2ab68f;
$black: #000;
$primary-color: #202526; // Dark Gray
$secondary-color: lighten($primary-color, 31%); // Gray
$dark-grey: #202526;
$grey: lighten($dark-grey, 31%);
$white: #fff;
$accent-color-1: #ef0734; // Perficient Digital Red
$accent-color-2: #fff200; // Perficient Digital Yellow
$accent-color-3: #2ab68f; // Perficient Digital Green
$turquoise: #39bd9a;
$primary-color: $dark-grey;
$secondary-color: $grey;
$accent-color-1: $pd-red;
$accent-color-2: $pd-yellow;
$accent-color-3: $pd-green;