32 lines
684 B
SCSS
32 lines
684 B
SCSS
$gw-column: 80px;
|
|
$gw-gutter: 20px;
|
|
|
|
$fg-column: $gw-column;
|
|
$fg-gutter: $gw-gutter;
|
|
$fg-max-columns: 12;
|
|
$fg-max-width: 1400px;
|
|
$fg-min-width: 810px;
|
|
|
|
$sans-serif: 'Open Sans', $verdana;
|
|
$body-line-height: golden-ratio(.875em, 1);
|
|
|
|
$white: rgb(255,255,255);
|
|
$black: rgb(0,0,0);
|
|
|
|
$pink: rgb(182,37,104);
|
|
$error-red: rgb(253, 87, 87);
|
|
|
|
$blue: #5597dd;
|
|
$lightBlue: tint($blue, 75%);
|
|
$extraLightBlue: tint($lightBlue, 75%);
|
|
$darkBlue: shade($blue, 25%);
|
|
$extraDarkBlue: shade($darkBlue, 25%);
|
|
$lightTransparentBlue: rgba(167, 192, 221, 0.3);
|
|
|
|
$orange: #edbd3c;
|
|
$green: #108614;
|
|
$lightGrey: #edf1f5;
|
|
$mediumGrey: #ced2db;
|
|
$darkGrey: #8891a1;
|
|
$extraDarkGrey: #3d4043;
|
|
$paleYellow: #fffcf1; |