forked from ConciseCSS/concise.css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_globals.scss
More file actions
149 lines (127 loc) · 2.76 KB
/
_globals.scss
File metadata and controls
149 lines (127 loc) · 2.76 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
//
// Custom Global Variables
// =============================================================================
//
// Base
// ----
// Transition duration
// $transition-duration: 150ms;
// Breakpoints
// $bp-extra-small: 30em;
// $bp-small: 48em;
// $bp-medium: 60em;
// $bp-large: 70em;
// $bp-extra-large: 80em;
// Base Size (used in unitSize() for proportions)
// $base-unit: 8;
// Spacing
// $spacing-xs: unitSize(1);
// $spacing-s: unitSize(2);
// $spacing-m: unitSize(3);
// $spacing-l: unitSize(4);
// $spacing-xl: unitSize(5);
//
// Grid
// ----
// Prefix for the attributes, you can use 'data-' to make your markup valid
// $prefix: "";
// Max width for container
// $container-width: 1200px;
// Gutter size in pixels (without the unit we can do math easily)
// $gutter: 30;
// Number of columns in a row
// $num-columns: 12;
// If you only want to use the mixins for "semantic grids" set this to true
// $only-semantic: false;
//
// Typography
// ----------
// $font-family: "Helvetica", "Arial", sans-serif;
// $font-family-headings: "Helvetica", "Arial", sans-serif;
// $font-family-print: "Georgia", "Times New Roman", "Times", serif;
// $font-family-mono: "Consolas", monospace;
// $font-base-size: 16;
//
// Heading sizes
// ----------
// $h1-size: 48;
// $h2-size: 36;
// $h3-size: 28;
// $h4-size: 18;
// $h5-size: 16;
// $h6-size: 14;
// $giga-size: 80;
// $mega-size: 64;
// $kilo-size: 52;
//
// Color Palette
// -------------
// Colors
// $colors: (
// base: (
// "primary": #4591aa,
// "selection": #d6d6d6,
// "lines": #e0e0e0
// ),
//
// text: (
// "primary": #666,
// "secondary": #aaa,
// "heading": #222,
// "ui": white
// ),
//
// background: (
// "dark": #282E31,
// "light": #f5f5f5,
// "body": white
// ),
//
// state: (
// "muted": #aaa,
// "primary": #4591aa,
// "success": #45ca69,
// "warning": #ffb800,
// "error": #ca4829
// ),
//
// blue: (
// "darker": #495b61,
// "dark": #447281,
// "base": #4591aa,
// "light": #5ab0cc,
// "lighter": #74cbe8
// ),
//
// green: (
// "darker": #3b6e6e,
// "dark": #3b8686,
// "base": #37a1a1,
// "light": #2dbaba,
// "lighter": #69d1d1
// ),
//
// cream: (
// "darker": #c47858,
// "dark": #e29372,
// "base": #ecac91,
// "light": #f9c2ab,
// "lighter": #fdd5c3
// ),
//
// red: (
// "darker": #653131,
// "dark": #b73333,
// "base": #da3c3c,
// "light": #f25a5a,
// "lighter": #fa8181
// ),
//
// gray: (
// "darker": #333333,
// "dark": #4d4d4d,
// "base": #666666,
// "light": #808080,
// "lighter": #999999
// )
// );