forked from Frontend-Layers/scss-reset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_variables.scss
More file actions
49 lines (35 loc) · 906 Bytes
/
Copy path_variables.scss
File metadata and controls
49 lines (35 loc) · 906 Bytes
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
/**
* Variables
*/
/*
* Fonts
* ========================================================================== */
$font-family: Arial, Helvetica, sans-serif;
$font-family-title: Arial, Helvetica, sans-serif;
$body-font: $font-family;
$body-font-weight: 400;
$header-font: $font-family-title;
$basic-font-size: 100%;
$paragraph: 16px;
// Golden ration for 16px font-size
$line-height: 24px;
// For REM / EM
//$basic-font-size: 62.5%;
//$paragraph: 1.6rem;
//$line-height: 2.4rem;
/*
* Palette
* ========================================================================== */
/*
* Basic Colors
* ========================================================================== */
$blue: #00f;
$red: #f00;
$white: #fff;
$black: #000;
$gray: #ccc;
/*
* Mixing Colors
* ========================================================================== */
$text-color: $black;
$inverted-text-color: $white;