forked from necolas/normalize.css
-
Notifications
You must be signed in to change notification settings - Fork 249
/
Copy path_variables.scss
42 lines (34 loc) · 1.26 KB
/
_variables.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
//
// Variables
//
// If you have an initialization partial (or equivalent), you should move these
// lines to that file.
// Support the same browsers as normalize.css v3.
$support-for: (
ie: 9,
'*': -4,
);
// The font size set on the root html element.
$base-font-size: 16px;
// The base line height determines the basic unit of vertical rhythm.
$base-line-height: 24px;
// The length unit in which to output vertical rhythm values.
// Supported values: px, em, rem.
$base-unit: 'em';
// The default font family.
$base-font-family: sans-serif;
// The font sizes for h1-h6.
$h1-font-size: 2 * $base-font-size;
$h2-font-size: 1.5 * $base-font-size;
$h3-font-size: 1.17 * $base-font-size;
$h4-font-size: 1 * $base-font-size;
$h5-font-size: 0.83 * $base-font-size;
$h6-font-size: 0.67 * $base-font-size;
// The amount lists and blockquotes are indented.
$indent-amount: 40px;
// The following variable controls whether normalize-scss will output
// font-sizes, line-heights and block-level top/bottom margins that form a basic
// vertical rhythm on the page, which differs from the original Normalize.css.
// However, changing any of the variables above will cause
// $normalize-vertical-rhythm to be automatically set to true.
$normalize-vertical-rhythm: false;