This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grider.scss
94 lines (86 loc) · 1.92 KB
/
grider.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
/*
||||||||||||||||
|||||GRIDER|||||
||||||||||||||||
*/
/********************
ENABLE / DISABLE FEATURES ********************/
$equal-feature : true;
$offset-feature : true;
/********************
BASIC ********************/
$grid : 16;
$gutter : 6px;
/********************
NAMING ********************/
$row : 'row';
$container : 'container';
$column : 'column';
$offset : 'offset';
$equal : 'equal';
// breakpoints //
$extra-small : 'xs';
$small : 'sm';
$medium : 'md';
$large : 'lg';
$extra-large : 'xl';
/********************
COLUMN ********************/
$column-padding : .3rem;
$column-min-height : .125rem;
/********************
BREAKPOINTS ********************/
$breakpoints-extra-small : 0;
$breakpoints-small : 500px;
$breakpoints-medium : 768px;
$breakpoints-large : 992px;
$breakpoints-extra-large : 1260px;
$viewports: (
($extra-small, $breakpoints-extra-small),
($small, $breakpoints-small),
($medium, $breakpoints-medium),
($large, $breakpoints-large),
($extra-large, $breakpoints-extra-large)
);
/*** MIXINS ***/
@mixin breakpoints($size) {
@media only screen and (min-width: #{$size}) {
@content;
}
}
.#{$container} {
width: 95%;
margin: 0 auto;
}
.#{$row} {
display: grid;
grid-gap: $gutter;
grid-template-columns: repeat($grid, 1fr);
&> [class^="#{$column}"] {
height: fit-content;
padding: $column-padding;
min-height: $column-min-height;
}
@if $equal-feature {
&.#{$equal} > [class^="#{$column}"] {
height: auto;
}
}
}
@each $label, $breakpoint in $viewports {
@include breakpoints($breakpoint) {
@for $id from 1 through $grid {
.#{$column}-#{$id},
.#{$column}-#{$label}-#{$id} {
grid-column: span #{$id};
}
@if $offset-feature {
@for $offset-id from 1 through $grid {
.#{$column}-#{$label}-#{$id}.#{$offset}-#{$label}-#{$offset-id} {
grid-column: #{$offset-id} / span #{$id};
}
}
}
}
}
}