23 lines
508 B
SCSS
23 lines
508 B
SCSS
// Variables
|
|
// ---------------------------------------- //
|
|
|
|
// Type
|
|
$body-font-family: "Open Sans", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
|
|
$body-font-size: 14px;
|
|
$body-line-height: golden-ratio($body-font-size, 1);
|
|
|
|
// Grid
|
|
$fg-column: 80px;
|
|
$fg-gutter: 25px;
|
|
$fg-max-columns: 12;
|
|
$fg-max-width: 1400px;
|
|
$fg-min-width: 810px;
|
|
|
|
// Color
|
|
$light-gray: #ddd;
|
|
$dark-gray: #333;
|
|
$mit-red: #993333;
|
|
$cream: #F6EFD4;
|
|
$text-color: $dark-gray;
|
|
$border-color: $light-gray;
|