42 lines
850 B
SCSS
Executable File
42 lines
850 B
SCSS
Executable File
// Base
|
|
|
|
$base-colour: #333;
|
|
$base-background-colour: #fff;
|
|
|
|
$base-font-stack: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
$base-font-size: 14;
|
|
$base-line-height: 1.5;
|
|
$base-margin-bottom: ($base-font-size * $base-line-height);
|
|
|
|
$h1-font-size: 28;
|
|
$h2-font-size: 24;
|
|
$h3-font-size: 21;
|
|
$h4-font-size: 18;
|
|
$h5-font-size: 16;
|
|
$h6-font-size: 16;
|
|
|
|
// Media Queries
|
|
|
|
$mobile: 640px;
|
|
|
|
// Lists
|
|
|
|
$list-margin-left: 24;
|
|
|
|
// Scaffolding
|
|
|
|
$container-max-width: 960;
|
|
$column-count: 12;
|
|
$column-gutter: 20;
|
|
|
|
// Tables
|
|
|
|
$table-border-colour: #ddd;
|
|
|
|
// Forms
|
|
$input-border: solid 1px #ccc;
|
|
$input-background: #fff;
|
|
$btn-border: solid 1px #ccc;
|
|
$btn-background: #eee;
|
|
$btn-background-hover: #ddd;
|
|
$btn-color: #333; |