forked from alainyog/JavaScript.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_tools.sass
More file actions
446 lines (340 loc) · 7.39 KB
/
Copy path_tools.sass
File metadata and controls
446 lines (340 loc) · 7.39 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
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
// *************************************
//
// Tools
// -> Global utilities
//
// *************************************
// -------------------------------------
// Background
// -------------------------------------
.bch
background: $c-highlight !important
.bci
background: $c-background-invert !important
.bcs
background: $c-subdue !important
// ----- Palette ----- //
@for $i from 1 through length($tool-background-vars)
.bc-#{nth($tool-background-names, $i)}
background-color: nth($tool-background-vars, $i) !important
// -------------------------------------
// Border
// -------------------------------------
// ----- All ----- //
.bdr
border: $b-border !important
.bdrs
border: $b-border-s !important
// ----- Sides ----- //
.bdrb
border-bottom: $b-border !important
.bdrbl
border-bottom: $b-border-l !important
.bdrtl
border-top: $b-border-l !important
// -------------------------------------
// Display
// -------------------------------------
.db
display: block !important
.di
display: inline !important
.dib
display: inline-block !important
.dn
display: none !important
// Responsive
+respond-to($g-s)
.dib--s
display: inline-block !important
+respond-to($g-m)
.db--m
display: block !important
.di--m
display: inline !important
.dn--m
display: none !important
// -------------------------------------
// Margins
// -------------------------------------
// ----- All ----- //
.maxs
margin: $b-space-xs !important
.mas
margin: $b-space-s !important
.mam
margin: $b-space !important
.mal
margin: $b-space-l !important
.maxl
margin: $b-space-xl !important
// ----- Bottom ----- //
.mbf
margin-bottom: 0 !important
.mbxs
margin-bottom: $b-space-xs !important
.mbs
margin-bottom: $b-space-s !important
.mbm
margin-bottom: $b-space !important
.mbl
margin-bottom: $b-space-l !important
.mbxl
margin-bottom: $b-space-xl !important
// Responsive
+respond-to($g-s)
.mbl--s
margin-bottom: $b-space-l !important
+respond-to($g-m)
.mbf--m
margin-bottom: 0 !important
.mbm--m
margin-bottom: $b-space !important
.mbl--m
margin-bottom: $b-space-l !important
.mbxl--m
margin-bottom: $b-space-xl !important
+respond-to($g-l)
.mbf--l
margin-bottom: 0 !important
// ----- Horizontal ----- //
.mhc
margin-left: auto !important
margin-right: auto !important
// ----- Left ----- //
.mlf
margin-left: 0 !important
.mlxs
margin-left: $b-space-xs !important
.mls
margin-left: $b-space-s !important
.mlm
margin-left: $b-space !important
.mll
margin-left: $b-space-l !important
// ----- Right ----- //
.mrf
margin-right: 0 !important
.mrxs
margin-right: $b-space-xs !important
.mrs
margin-right: $b-space-s !important
.mrm
margin-right: $b-space !important
.mrl
margin-right: $b-space-l !important
// Responsive
+respond-to($g-s)
.mrs--s
margin-right: $b-space-s !important
+respond-to($g-m)
.mrl--m
margin-right: $b-space-l !important
// ----- Top ----- //
.mtf
margin-top: 0 !important
.mtxs
margin-top: $b-space-xs !important
.mts
margin-top: $b-space-s !important
.mtm
margin-top: $b-space !important
.mtl
margin-top: $b-space-l !important
.mtxl
margin-top: $b-space-xl !important
// Responsive
+respond-to($g-s)
.mtf--s
margin-top: 0 !important
+respond-to($g-m)
.mts--m
margin-top: $b-space-s !important
.mtm--m
margin-top: $b-space !important
.mtl--m
margin-top: $b-space-l !important
// -------------------------------------
// Opacity
// -------------------------------------
.op1of2
opacity: 0.5 !important
// -------------------------------------
// Padding
// -------------------------------------
// ----- All ----- //
.paxs
padding: $b-space-xs !important
.pas
padding: $b-space-s !important
.pam
padding: $b-space !important
.pal
padding: $b-space-l !important
.paxl
padding: $b-space-xl !important
// Responsive
+respond-to($g-m)
.pal--m
padding: $b-space-l !important
// ----- Bottom ----- //
.pbf
padding-bottom: 0 !important
.pbxs
padding-bottom: $b-space-xs !important
.pbs
padding-bottom: $b-space-s !important
.pbm
padding-bottom: $b-space !important
.pbl
padding-bottom: $b-space-l !important
.pbxl
padding-bottom: $b-space-xl !important
// ----- Left ----- //
.plf
padding-left: 0 !important
.plxs
padding-left: $b-space-xs !important
.pls
padding-left: $b-space-s !important
.plm
padding-left: $b-space !important
.pll
padding-left: $b-space-l !important
// ----- Right ----- //
.prf
padding-right: 0 !important
.prxs
padding-right: $b-space-xs !important
.prs
padding-right: $b-space-s !important
.prm
padding-right: $b-space !important
.prl
padding-right: $b-space-l !important
// ----- Top ----- //
.ptf
padding-top: 0 !important
.ptxs
padding-top: $b-space-xs !important
.pts
padding-top: $b-space-s !important
.ptm
padding-top: $b-space !important
.ptl
padding-top: $b-space-l !important
.ptxl
padding-top: $b-space-xl !important
// Responsive
+respond-to($g-m)
.ptxl--m
padding-top: $b-space-xl !important
+respond-to($g-l)
.ptxs--l
padding-top: $b-space-xs !important
// -------------------------------------
// Positioning
// -------------------------------------
// ----- Float ----- //
.fl
float: left !important
.fr
float: right !important
// Responsive
+respond-to($g-l)
.fr--l
float: right !important
// ----- Position ----- //
.poa
position: absolute !important
.pof
position: fixed !important
.por
position: relative !important
.pos
position: static !important
// ----- Top ----- //
// Negative
.potmn
top: -$b-space
.pot2n
top: -2px !important
// -------------------------------------
// Rounding
// -------------------------------------
.ra
border-radius: 50% !important
.ram
border-radius: $b-borderRadius !important
.ran
border-radius: 0 !important
.ras
border-radius: $b-borderRadius-s !important
// -------------------------------------
// Text
// -------------------------------------
// ----- Alignment ----- //
.tac
text-align: center !important
.tar
text-align: right !important
// ----- Color ----- //
.tce
color: $c-error !important
.tch
color: $c-highlight !important
.tci
color: $c-text-invert !important
.tcs
color: $c-subdue !important
.tct
color: $c-text !important
// Hover
.tc-ht
+state
color: $c-text !important
// ----- Family ----- //
.tfb
font-family: $b-fontFamily !important
.tfh
font-family: $b-fontFamily-heading !important
// ----- Size ----- //
.tsxs
font-size: $b-fontSize-xs !important
.tss
font-size: $b-fontSize-s !important
.tsl
font-size: $b-fontSize-l !important
.tsxl
font-size: $b-fontSize-xl !important
.tsxxl
font-size: $b-fontSize-xxl !important
// ----- Style ----- //
.tsi
font-style: italic !important
// ----- Transform ----- //
.ttu
text-transform: uppercase !important
// ----- Weight ----- //
.twb
font-weight: $b-fontWeight-bold !important
.twl
font-weight: $b-fontWeight-light !important
.twn
font-weight: $b-fontWeight !important
.twsb
font-weight: $b-fontWeight-semibold !important
// -------------------------------------
// Whitespace
// -------------------------------------
.wsnw
white-space: nowrap !important
// -------------------------------------
// Width
// -------------------------------------
// ----- Max Width ----- //
.mwn
max-width: none !important
// ----- Width ----- //
.w-1of1
width: 100% !important