-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgrid.scss
126 lines (101 loc) · 1.97 KB
/
grid.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
/**
* grid.scss - Common classes for CSS Grid
*
* @version 2.4.1
* @package tpl_lyquix
* @author Lyquix
* @copyright Copyright (C) 2015 - 2018 Lyquix
* @license GNU General Public License version 2 or later
* @link https://github.com/Lyquix/tpl_lyquix
*/
// Container
.grid-container {
display: grid;
justify-items: stretch;
align-items: stretch;
grid-column-gap: $grid-column-gap;
grid-row-gap: $grid-row-gap;
}
@mixin grid-template {
// Column classes
@for $c from 1 through 10 {
.grid-cols-#{$c} {grid-template-columns: repeat(#{$c}, auto);}
}
// Screen-specific column classes
@each $s in $screen-sizes {
@for $c from 1 through 10 {
body[screen=#{$s}] .grid-cols-#{$c}-#{$s} {grid-template-columns: repeat(#{$c}, auto);}
}
}
}
@include grid-template;
// Justify items
.grid-justify-start {
justify-items: start;
}
.grid-justify-end {
justify-items: end;
}
.grid-justify-center {
justify-items: center;
}
.grid-justify-stretch {
justify-items: stretch;
}
// Align items
.grid-align-start {
align-items: start;
}
.grid-align-end {
align-items: end;
}
.grid-align-center {
align-items: center;
}
.grid-align-stretch {
align-items: stretch;
}
// Justify content
.grid-justify-start {
justify-content: start;
}
.grid-justify-end {
justify-content: end;
}
.grid-justify-center {
justify-content: center;
}
.grid-justify-stretch {
justify-content: stretch;
}
.grid-justify-space-around {
justify-content: space-around;
}
.grid-justify-space-between {
justify-content: space-between;
}
.grid-justify-space-evenly {
justify-content: space-evenly;
}
// Align content
.grid-align-start {
align-content: start;
}
.grid-align-end {
align-content: end;
}
.grid-align-center {
align-content: center;
}
.grid-align-stretch {
align-content: stretch;
}
.grid-align-space-around {
align-content: space-around;
}
.grid-align-space-between {
align-content: space-between;
}
.grid-align-space-evenly {
align-content: space-evenly;
}