forked from csswizardry/inuit.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_vars.scss
65 lines (51 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*------------------------------------*\
$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.
*/
/**
* Debug mode will visually highlight any potential markup/accessibility quirks
* in the browser. Set to `true` or `false`.
*/
$debug-mode: false;
/**
* Base stuff
*/
$base-font-size: 16!default;
$base-line-height: 24!default;
/**
* How big would you like round corners to be by default?
*/
$brand-round: 4!default;
/**
* Assign our `$base-line-height` to a new spacing var for more transparency.
*/
$base-spacing-unit: $base-line-height!default;
$half-spacing-unit: $base-spacing-unit / 2!default;
/**
* Font-sizes (in pixels). Refer to relevant sections for their implementations.
*/
$giga-size: 96!default;
$mega-size: 72!default;
$kilo-size: 48!default;
$h1-size: 36!default;
$h2-size: 30!default;
$h3-size: 24!default;
$h4-size: 20!default;
$h5-size: 16!default;
$h6-size: 14!default;
$milli-size: 12!default;
$micro-size: 10!default;
/**
* Brand stuff
*/
$brand-color: #4a8ec2!default;
$brand-face: "Helvetica Neue", sans-serif!default;
/**
* We need to supply a full code font-stack in order to combat this:
* jsfiddle.net/csswizardry/uD6UW
*/
$code-face: Inconsolata, Monaco, Consolas, "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace!default;