-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.scss
70 lines (52 loc) · 1.38 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Named Colors
// ===============================
$dark-blue: #2268b2;
$medium-blue: #2879d0;
$light-blue: #9ddcff;
$bright-blue: #4184F7;
$darkest-grey: #222;
$dark-grey: #444;
$medium-grey: #aaa;
$light-grey: #ddd;
$lightest-grey: #ebebeb;
$off-white: #f2f2f2;
$bright-white: #fff;
$text-color: #666;
$bg-color: #fafafa;
// Standard Sizes
// ===============================
$monitor-min-width: 960px;
$tablet-max-width: $monitor-min-width - 1px;
$tablet-min-width: 768px;
$phone-max-width: $tablet-min-width - 1px;
$monitor-content-width: 940px;
$tablet-content-width: 740px;
$phone-content-width: 93%;
$large-vertical-space: 40px;
$medium-vertical-space: 30px;
$small-vertical-space: 20px;
$tiny-vertical-space: 3px;
$large-horizontal-space: 30px;
$medium-horizontal-space: 20px;
$small-horizontal-space: 10px;
$tiny-horizontal-space: 5px;
// Headings (H1, H2, ... H6)
// ===============================
$heading-color: #474747;
$heading-border: $light-blue;
$heading-left-padding: $small-horizontal-space;
// Site Header
// ===============================
$header-bg: $bright-blue;
$header-border: #275da1;
$header-text: $bright-white;
$header-width-monitor: 540px;
$header-width-tablet: 340px;
$header-width-phone: 100%;
// Code Samples
// ===============================
$code-bg: $bright-white;
$code-border: $off-white;
// Tables
// ===============================
$table-bg: $bright-white;