forked from csswizardry/inuit.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_vars.scss
38 lines (31 loc) · 1.15 KB
/
_vars.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*------------------------------------*\
$VARS
\*------------------------------------*/
/**
* Set up project-specific variables here which are then used throughout your
* build. These variables are automatically picked up by inuit.css so you should
* never need to modify any framework code.
*/
// Base stuff
$base-font-size: 16;
$base-line-height: 24;
// Assign our `$base-line-height` to a new spacing var for more transparency.
$base-spacing-unit: $base-line-height;
$half-spacing-unit: $base-spacing-unit / 2;
// Font-sizes (in pixels). Refer to relevant sections for their implementations.
$giga-size: 96;
$mega-size: 72;
$kilo-size: 48;
$h1-size: 36;
$h2-size: 30;
$h3-size: 24;
$h4-size: 20;
$h5-size: 16;
$h6-size: 14;
$milli-size: 12;
$micro-size: 10;
// Brand stuff
$brand-color: #4a8ec2;
$brand-face: "Helvetica Neue", sans-serif;
// Supply a full code font-stack to combat this: jsfiddle.net/csswizardry/uD6UW
$code-face: Inconsolata, Monaco, Consolas, "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;