forked from westfieldlabs/scally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style-test.scss
258 lines (164 loc) · 5.33 KB
/
style-test.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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
@charset "UTF-8";
/* ============================================================================
@MASTER STYLESHEET
========================================================================= */
/**
* Scally, being an OO framework, works in keeping with the open/closed
* principle. Any custom styles *SHOULD NOT* be added or modified in Scally
* directly. This also allows the framework to be updated seamlessly.
*
* Contents:
*
* Your settings.........your project-specific settings.
* Scally framework......the entire Scally framework including your overrides.
* Your styles...........all your project-specific styles.
*
* N.B. the above order and the order within the Scally framework section must
* always be followed.
*/
/* Your settings
========================================================================= */
/**
* Your project-specific settings.
*
* N.B. define first so they can be used throughout your styles.
*/
@import "settings";
/* Scally framework
========================================================================= */
/**
* By default everything is imported. But if you want to be selective and you
* definitely should, so your CSS is as lean as possible, then only import what
* you want. The Core section is however mandatory.
*
* Any settings you find set in Scally that you do not wish to keep, simply
* redefine above/below the relevant `@import`. This means that if Scally, for
* example, sets your `$font-size` at `16px` and you wish it to be `14px`,
* simply redeclare it above the relevant `@import`, like so:
*
$font-size: 14;
@import "bower_components/scally/core/settings/typography";
*
* If you want to use a Scally setting to override something then you need to
* define the override below the `@import`, like so:
*
@import "bower_components/scally/core/settings/colours";
$colour-text-base: $colour-brand;
*
* If you try to redeclare above the `@import` your Sass won't compile as you
* don't have access to the Scally setting at the point of compilation.
*
* All non-Core settings need to be overridden above the `@import`, like so:
*
$u-arrow-size-base: 14;
$u-arrow-colour: orange;
@import "bower_components/scally/utilities/u-arrow";
*
* Scally ignores its own settings in favour of using your own, so you can
* completely modify how Scally works without ever having to alter the
* framework itself.
*
* N.B. the order specified below must always be followed or Scally will
* break and if you're not using Bower or you customise where Bower installs
* then you'll need to update the `@import` paths accordingly.
*
* Contents:
*
* CORE
* LAYOUT
* COMPONENTS
* UTILITIES
*/
/**
* CORE.
*
* N.B. this is all mandatory for the Scally framework.
*/
// Settings
@import "core/settings/typography";
@import "core/settings/spacing";
@import "core/settings/toggles";
@import "core/settings/breakpoints";
@import "core/settings/widths";
@import "core/settings/colours";
@import "core/settings/positioning";
@import "core/settings/cosmetics";
// Functions
@import "core/functions/convert-px-to-em-rem";
@import "core/functions/math-helpers";
@import "core/functions/string-replace";
// Mixins
@import "core/mixins/convert-px-to-em-rem";
@import "core/mixins/font-size";
@import "core/mixins/gradients";
@import "core/mixins/media-queries";
@import "core/mixins/generate-at-breakpoints";
@import "core/mixins/generate-percentage-classes-at-breakpoints";
@import "core/mixins/retina-bg-image";
@import "core/mixins/target-browsers";
@import "core/mixins/target-headings";
// Normalize
@import "core/normalize";
// Reset
@import "core/reset";
// Debug
@import "core/debug";
// Base
@import "core/base/root";
@import "core/base/abbreviation";
@import "core/base/forms";
@import "core/base/headings";
@import "core/base/horizontal-rule";
@import "core/base/links";
@import "core/base/media";
@import "core/base/paragraphs";
@import "core/base/print";
@import "core/base/viewport";
// Placeholders
@import "core/placeholders/c-bottom-spacing";
/**
* LAYOUT.
*/
// Main container
@import "layout/l-container";
// Grid
@import "layout/l-grid";
@import "layout/l-grid-pull";
@import "layout/l-grid-push";
/**
* COMPONENTS.
*/
@import "components/button";
/**
* UTILITIES.
*/
@import "utilities/u-clear-fix";
@import "utilities/u-arrow";
@import "utilities/u-list";
@import "utilities/u-list-block";
@import "utilities/u-list-inline";
@import "utilities/u-text";
@import "utilities/u-widths";
@import "utilities/u-table";
@import "utilities/u-drop-down";
@import "utilities/u-alignments";
@import "utilities/u-toggle-visibility";
@import "utilities/u-image-replacement";
@import "utilities/u-link-complex";
@import "utilities/u-link-disguised";
@import "utilities/u-link-no-underline";
@import "utilities/u-momentum-scrolling";
@import "utilities/u-float";
@import "utilities/u-new-block-formatting-context";
@import "utilities/u-flex-embed";
@import "utilities/u-side-by-side";
@import "utilities/u-side-by-side-alt";
@import "utilities/u-gpu-accelerated";
@import "utilities/u-position";
@import "utilities/u-display";
@import "utilities/u-spacing";
@import "utilities/u-divider";
@import "utilities/u-columns";
//@import "utilities/u-overflow";
/* Your styles
========================================================================= */