-
Notifications
You must be signed in to change notification settings - Fork 40
/
_avalanche.scss
309 lines (251 loc) · 7.88 KB
/
_avalanche.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
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
/*! Avalanche | MIT License | @colourgarden */
/**
* SETTINGS
*/
$av-namespace: 'grid' !default; // Prefix namespace for grid layout and cells
$av-element-name: 'cell' !default; // Element/cell name
$av-element-class-chain: '__' !default; // Chain characters between block and element
$av-modifier-class-chain: '--' !default; // Chain characters between block and modifier
$av-breakpoint-class-chain: '--' !default; // Chain characters between width and breakpoint
$av-gutter: 20px !default; // Gutter between grid cells
$av-width-class-namespace: '' !default; // Prefix namespace for width classes. For example; 'col-'
$av-width-class-style: 'fraction' !default; // Width class naming style. Can be 'fraction', 'percentage' or 'fragment'
$av-widths: (
2,
3,
4
) !default; // Width denominator values. 2 = 1/2, 3 = 1/3 etc. Add/remove as appropriate
$av-enable-responsive: true !default;
$av-breakpoints: (
"thumb": "screen and (max-width: 499px)",
"handheld": "screen and (min-width: 500px) and (max-width: 800px)",
"handheld-and-up": "screen and (min-width: 500px)",
"pocket": "screen and (max-width: 800px)",
"lap": "screen and (min-width: 801px) and (max-width: 1024px)",
"lap-and-up": "screen and (min-width: 801px)",
"portable": "screen and (max-width: 1024px)",
"desk": "screen and (min-width: 1025px)",
"widescreen": "screen and (min-width: 1160px)",
"retina": "screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx)"
) !default; // Responsive breakpoints. Add/remove as appropriate
// Enable/disable grid layouts
$av-enable-grid-center: false !default;
$av-enable-grid-cell-center: false !default;
$av-enable-grid-right: false !default;
$av-enable-grid-middle: false !default;
$av-enable-grid-bottom: false !default;
$av-enable-grid-flush: false !default;
$av-enable-grid-tiny: false !default;
$av-enable-grid-small: false !default;
$av-enable-grid-large: false !default;
$av-enable-grid-huge: false !default;
$av-enable-grid-auto: false !default;
$av-enable-grid-rev: false !default;
/**
* LOGIC aka THE MAGIC
*/
@function av-create-width-class-name($style, $numerator, $denominator, $breakpoint-alias) {
$class-name: null;
@if $style == 'fraction' or $style == 'fragment' {
// Set delimiter as slash or text
$delimiter: if($style == 'fraction', \/, -of-);
$class-name: #{$av-width-class-namespace}#{$numerator}#{$delimiter}#{$denominator}#{$breakpoint-alias};
}
@else {
@if $av-width-class-namespace == '' {
@error "Percentage value class names require a namespace to be set (see $av-width-class-namespace). Selective escaping (e.g. the 5 of 50) cannot be done.";
}
$class-width: floor(($numerator / $denominator) * 100);
$class-name: #{$av-width-class-namespace}#{$class-width}#{$breakpoint-alias};
}
@return $class-name;
}
@function avCreateBlockClassName($modifier: '') {
@if $modifier == '' {
@return #{$av-namespace};
}
@return #{$av-namespace}#{$av-modifier-class-chain}#{$modifier};
}
@function avCreateElementClassName($modifier: '') {
@if $modifier == '' {
@return #{$av-namespace}#{$av-element-class-chain}#{$av-element-name};
}
@return #{$av-namespace}#{$av-element-class-chain}#{$av-element-name}#{$av-modifier-class-chain}#{$modifier};
}
@mixin av-create-widths($widths, $breakpoint-alias: null) {
// Initialise an empty utility map that will eventually contain all our classes
$pseudo-class-map: ();
// Loop widths
@each $denominator in $widths {
// If 1=1, 2=2, 3=3; @for will skip over so create 1/1 class manually
@if ($denominator == 1) {
// Create 1/1 class
$class-name: av-create-width-class-name($av-width-class-style, 1, 1, $breakpoint-alias);
[class~="#{$class-name}"] {
width: 100%;
}
}
@else {
// Loop widths as fractions
@for $numerator from 1 to $denominator {
// Create class name and set width value
$class-name: av-create-width-class-name($av-width-class-style, $numerator, $denominator, $breakpoint-alias);
$width-value: percentage($numerator / $denominator);
// Is this width already in our utility map?
$duplicate: map-get($pseudo-class-map, $width-value);
// Create width class
[class~="#{$class-name}"] {
// If this width is in utility map, @extend the duplicate, else create a new one
@if $duplicate {
@extend [class~="#{$duplicate}"];
}
@else {
width: $width-value;
}
}
// Add this class to utility map
$add-class: ($width-value: $class-name);
$pseudo-class-map: map-merge($pseudo-class-map, $add-class);
}
}
}
}
@mixin av-mq($alias) {
// Search breakpoint map for alias
$query: map-get($av-breakpoints, $alias);
// If alias exists, print out media query
@if $query {
@media #{$query} {
@content;
}
}
@else {
@error "No breakpoint found for #{$alias}";
}
}
/**
* GRID LAYOUT
*/
.#{avCreateBlockClassName()} {
display: block;
list-style: none;
padding: 0;
margin: 0;
margin-left: -($av-gutter);
font-size: 0;
}
.#{avCreateElementClassName()} {
box-sizing: border-box;
display: inline-block;
width: 100%;
padding: 0;
padding-left: $av-gutter;
margin: 0;
vertical-align: top;
font-size: 1rem;
}
@if $av-enable-grid-center {
.#{avCreateBlockClassName('center')} {
text-align: center;
> .#{avCreateElementClassName()} {
text-align: left;
}
}
}
@if $av-enable-grid-cell-center {
.#{avCreateElementClassName('center')} {
display: block;
margin: 0 auto;
}
}
@if $av-enable-grid-right {
.#{avCreateBlockClassName('right')} {
text-align: right;
> .#{avCreateElementClassName()} {
text-align: left;
}
}
}
@if $av-enable-grid-middle {
.#{avCreateBlockClassName('middle')} {
> .#{avCreateElementClassName()} {
vertical-align: middle;
}
}
}
@if $av-enable-grid-bottom {
.#{avCreateBlockClassName('bottom')} {
> .#{avCreateElementClassName()} {
vertical-align: bottom;
}
}
}
@if $av-enable-grid-flush {
.#{avCreateBlockClassName('flush')} {
margin-left: 0;
> .#{avCreateElementClassName()} {
padding-left: 0;
}
}
}
@if $av-enable-grid-tiny {
.#{avCreateBlockClassName('tiny')} {
margin-left: -($av-gutter / 4);
> .#{avCreateElementClassName()} {
padding-left: ($av-gutter / 4);
}
}
}
@if $av-enable-grid-small {
.#{avCreateBlockClassName('small')} {
margin-left: -($av-gutter / 2);
> .#{avCreateElementClassName()} {
padding-left: ($av-gutter / 2);
}
}
}
@if $av-enable-grid-large {
.#{avCreateBlockClassName('large')} {
margin-left: -($av-gutter * 2);
> .#{avCreateElementClassName()} {
padding-left: ($av-gutter * 2);
}
}
}
@if $av-enable-grid-huge {
.#{avCreateBlockClassName('huge')} {
margin-left: -($av-gutter * 4);
> .#{avCreateElementClassName()} {
padding-left: ($av-gutter * 4);
}
}
}
@if $av-enable-grid-auto {
.#{avCreateBlockClassName('auto')} {
> .#{avCreateElementClassName()} {
width: auto;
}
}
}
@if $av-enable-grid-rev {
.#{avCreateBlockClassName('rev')} {
direction: rtl;
> .#{avCreateElementClassName()} {
direction: ltr;
}
}
}
/**
* GRID WIDTHS
*/
// Loop default widths
@include av-create-widths($av-widths);
// If responsive flag enabled, loop breakpoint widths
@if $av-enable-responsive {
@each $alias, $query in $av-breakpoints {
// Create each media query
@media #{$query} {
@include av-create-widths($av-widths, #{$av-breakpoint-class-chain}#{$alias});
}
}
}