-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.scss
63 lines (53 loc) · 1.35 KB
/
main.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
//
// # Dependencies
// =============================================================================
@import '../node_modules/taffy-util/main';
//
// # Variables
// =============================================================================
$grid-fixed: null !default;
$grid-ie10: null !default;
//
// # Grid
// =============================================================================
%grid {
display: flex;
flex-flow: wrap;
max-width: $break-max;
margin: auto;
}
//
// # Loop
// =============================================================================
@mixin _grid-make($amount, $fixed, $ie10) {
@include break-loop($amount) {
@for $i from 1 through $amount {
%grid > %item-#{util-merge($_break-loop $i, '-')} {
@if $fixed {
@if $ie10 {
width: calc((100% / #{$i}) - 0.01px);
}
@else {
width: calc(100% / #{$i});
}
}
@else {
@if $ie10 {
flex: 1;
flex-basis: calc((100% / #{$i}) - 0.01px);
}
@else {
flex: 1 1 calc(100% / #{$i});
}
}
}
}
}
}
@include _grid-make($break-amount, $grid-fixed, $grid-ie10);
//
// # Adapt
// =============================================================================
@mixin item($breaks) {
@include adapt('item', $breaks);
}