cardinal-rails 3.1.0.00
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/License.txt +21 -0
- data/README.md +39 -0
- data/lib/cardinal/rails.rb +8 -0
- data/lib/cardinal/rails/version.rb +5 -0
- data/vendor/assets/stylesheets/cardinal.less +83 -0
- data/vendor/assets/stylesheets/core/base/anchors.less +18 -0
- data/vendor/assets/stylesheets/core/base/blockquotes.less +45 -0
- data/vendor/assets/stylesheets/core/base/code.less +68 -0
- data/vendor/assets/stylesheets/core/base/embedded-content.less +89 -0
- data/vendor/assets/stylesheets/core/base/form-elements.less +130 -0
- data/vendor/assets/stylesheets/core/base/headings.less +50 -0
- data/vendor/assets/stylesheets/core/base/horizontal-rules.less +10 -0
- data/vendor/assets/stylesheets/core/base/lists.less +57 -0
- data/vendor/assets/stylesheets/core/base/print.less +69 -0
- data/vendor/assets/stylesheets/core/base/root.less +90 -0
- data/vendor/assets/stylesheets/core/base/selections.less +30 -0
- data/vendor/assets/stylesheets/core/base/tables.less +18 -0
- data/vendor/assets/stylesheets/core/base/text-elements.less +83 -0
- data/vendor/assets/stylesheets/core/debug.less +154 -0
- data/vendor/assets/stylesheets/core/mixins/antialiasing.less +8 -0
- data/vendor/assets/stylesheets/core/mixins/clearing.less +27 -0
- data/vendor/assets/stylesheets/core/mixins/font-face.less +33 -0
- data/vendor/assets/stylesheets/core/mixins/media-queries.less +154 -0
- data/vendor/assets/stylesheets/core/mixins/momentum-scrolling.less +8 -0
- data/vendor/assets/stylesheets/core/mixins/text-truncate.less +9 -0
- data/vendor/assets/stylesheets/core/mixins/to-rem.less +76 -0
- data/vendor/assets/stylesheets/core/mixins/vertically-centered.less +9 -0
- data/vendor/assets/stylesheets/core/normalize.less +427 -0
- data/vendor/assets/stylesheets/core/reset.less +140 -0
- data/vendor/assets/stylesheets/core/variables.less +436 -0
- data/vendor/assets/stylesheets/layout/boxes.less +53 -0
- data/vendor/assets/stylesheets/layout/grids.less +614 -0
- data/vendor/assets/stylesheets/layout/wrappers.less +30 -0
- data/vendor/assets/stylesheets/objects/buttons.less +132 -0
- data/vendor/assets/stylesheets/objects/forms.less +61 -0
- data/vendor/assets/stylesheets/objects/lists.less +45 -0
- data/vendor/assets/stylesheets/objects/tables.less +116 -0
- data/vendor/assets/stylesheets/utilities/display.less +355 -0
- data/vendor/assets/stylesheets/utilities/floats.less +137 -0
- data/vendor/assets/stylesheets/utilities/font-sizes.less +269 -0
- data/vendor/assets/stylesheets/utilities/margins.less +1322 -0
- data/vendor/assets/stylesheets/utilities/paddings.less +1322 -0
- data/vendor/assets/stylesheets/utilities/positions.less +125 -0
- data/vendor/assets/stylesheets/utilities/text-alignment.less +127 -0
- data/vendor/assets/stylesheets/utilities/vertical-alignment.less +98 -0
- data/vendor/assets/stylesheets/utilities/visually-hidden.less +43 -0
- data/vendor/assets/stylesheets/utilities/widths.less +1455 -0
- data/vendor/assets/stylesheets/utilities/z-index.less +292 -0
- metadata +141 -0
@@ -0,0 +1,137 @@
|
|
1
|
+
/* ========================================================================== *\
|
2
|
+
Utilities -> Floats ($utilities-floats)
|
3
|
+
\* ========================================================================== */
|
4
|
+
|
5
|
+
//
|
6
|
+
// Floats
|
7
|
+
//
|
8
|
+
// f = float
|
9
|
+
// l = left
|
10
|
+
// r = right
|
11
|
+
// n = none
|
12
|
+
//
|
13
|
+
|
14
|
+
.fl {
|
15
|
+
float: left !important;
|
16
|
+
}
|
17
|
+
|
18
|
+
.fr {
|
19
|
+
float: right !important;
|
20
|
+
}
|
21
|
+
|
22
|
+
.fn {
|
23
|
+
float: none !important;
|
24
|
+
}
|
25
|
+
|
26
|
+
.screens({
|
27
|
+
.xs-fl {
|
28
|
+
float: left !important;
|
29
|
+
}
|
30
|
+
|
31
|
+
.xs-fr {
|
32
|
+
float: right !important;
|
33
|
+
}
|
34
|
+
|
35
|
+
.xs-fn {
|
36
|
+
float: none !important;
|
37
|
+
}
|
38
|
+
},{
|
39
|
+
.sm-fl {
|
40
|
+
float: left !important;
|
41
|
+
}
|
42
|
+
|
43
|
+
.sm-fr {
|
44
|
+
float: right !important;
|
45
|
+
}
|
46
|
+
|
47
|
+
.sm-fn {
|
48
|
+
float: none !important;
|
49
|
+
}
|
50
|
+
},{
|
51
|
+
.md-fl {
|
52
|
+
float: left !important;
|
53
|
+
}
|
54
|
+
|
55
|
+
.md-fr {
|
56
|
+
float: right !important;
|
57
|
+
}
|
58
|
+
|
59
|
+
.md-fn {
|
60
|
+
float: none !important;
|
61
|
+
}
|
62
|
+
},{
|
63
|
+
.lg-fl {
|
64
|
+
float: left !important;
|
65
|
+
}
|
66
|
+
|
67
|
+
.lg-fr {
|
68
|
+
float: right !important;
|
69
|
+
}
|
70
|
+
|
71
|
+
.lg-fn {
|
72
|
+
float: none !important;
|
73
|
+
}
|
74
|
+
},{
|
75
|
+
.xl-fl {
|
76
|
+
float: left !important;
|
77
|
+
}
|
78
|
+
|
79
|
+
.xl-fr {
|
80
|
+
float: right !important;
|
81
|
+
}
|
82
|
+
|
83
|
+
.xl-fn {
|
84
|
+
float: none !important;
|
85
|
+
}
|
86
|
+
},{
|
87
|
+
.xxl-fl {
|
88
|
+
float: left !important;
|
89
|
+
}
|
90
|
+
|
91
|
+
.xxl-fr {
|
92
|
+
float: right !important;
|
93
|
+
}
|
94
|
+
|
95
|
+
.xxl-fn {
|
96
|
+
float: none !important;
|
97
|
+
}
|
98
|
+
});
|
99
|
+
|
100
|
+
/**
|
101
|
+
* Clearfix
|
102
|
+
*
|
103
|
+
* 1. The use of `table` rather than `block` is only necessary if using
|
104
|
+
* `:before` to contain the top-margins of child elements.
|
105
|
+
* 2. The space content is one way to avoid an Opera bug when the
|
106
|
+
* `contenteditable` attribute is included anywhere else in the document.
|
107
|
+
* Otherwise it causes space to appear at the top and bottom of elements
|
108
|
+
* that are clearfixed.
|
109
|
+
*
|
110
|
+
* @link http://cbrac.co/1FT6aqC
|
111
|
+
*/
|
112
|
+
|
113
|
+
.cf {
|
114
|
+
&:before,
|
115
|
+
&:after {
|
116
|
+
display: table; // 1
|
117
|
+
content: " "; // 2
|
118
|
+
}
|
119
|
+
&:after {
|
120
|
+
clear: both;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
/**
|
125
|
+
* Clear floats with an extra markup element
|
126
|
+
*
|
127
|
+
* @link http://cbrac.co/SFv1Ua
|
128
|
+
*/
|
129
|
+
|
130
|
+
.clear {
|
131
|
+
display: block;
|
132
|
+
visibility: hidden;
|
133
|
+
clear: both;
|
134
|
+
overflow: hidden;
|
135
|
+
width: 0;
|
136
|
+
height: 0;
|
137
|
+
}
|
@@ -0,0 +1,269 @@
|
|
1
|
+
/* ========================================================================== *\
|
2
|
+
Utilities -> Font Sizes ($utilities-font-sizes)
|
3
|
+
\* ========================================================================== */
|
4
|
+
|
5
|
+
//
|
6
|
+
// fz = font-size
|
7
|
+
// --- = smallest
|
8
|
+
// -- = smaller
|
9
|
+
// - = small
|
10
|
+
// + = large
|
11
|
+
// ++ = larger
|
12
|
+
// +++ = largest
|
13
|
+
// 100 = 100%
|
14
|
+
// 0 = none
|
15
|
+
//
|
16
|
+
|
17
|
+
.fz--- {
|
18
|
+
.to-rem(font-size, @font-size-xxx-small, ~"!important");
|
19
|
+
}
|
20
|
+
|
21
|
+
.fz-- {
|
22
|
+
.to-rem(font-size, @font-size-xx-small, ~"!important");
|
23
|
+
}
|
24
|
+
|
25
|
+
.fz- {
|
26
|
+
.to-rem(font-size, @font-size-x-small, ~"!important");
|
27
|
+
}
|
28
|
+
|
29
|
+
.fz {
|
30
|
+
.to-rem(font-size, @font-size, ~"!important");
|
31
|
+
}
|
32
|
+
|
33
|
+
.fz\+ {
|
34
|
+
.to-rem(font-size, @font-size-x-large, ~"!important");
|
35
|
+
}
|
36
|
+
|
37
|
+
.fz\+\+ {
|
38
|
+
.to-rem(font-size, @font-size-xx-large, ~"!important");
|
39
|
+
}
|
40
|
+
|
41
|
+
.fz\+\+\+ {
|
42
|
+
.to-rem(font-size, @font-size-xxx-large, ~"!important");
|
43
|
+
}
|
44
|
+
|
45
|
+
.fz100 {
|
46
|
+
font-size: @font-size-100 !important;
|
47
|
+
}
|
48
|
+
|
49
|
+
.fz0 {
|
50
|
+
font-size: 0 !important;
|
51
|
+
}
|
52
|
+
|
53
|
+
.screens({
|
54
|
+
.xs-fz--- {
|
55
|
+
.to-rem(font-size, @font-size-xxx-small, ~"!important");
|
56
|
+
}
|
57
|
+
|
58
|
+
.xs-fz-- {
|
59
|
+
.to-rem(font-size, @font-size-xx-small, ~"!important");
|
60
|
+
}
|
61
|
+
|
62
|
+
.xs-fz- {
|
63
|
+
.to-rem(font-size, @font-size-x-small, ~"!important");
|
64
|
+
}
|
65
|
+
|
66
|
+
.xs-fz {
|
67
|
+
.to-rem(font-size, @font-size, ~"!important");
|
68
|
+
}
|
69
|
+
|
70
|
+
.xs-fz\+ {
|
71
|
+
.to-rem(font-size, @font-size-x-large, ~"!important");
|
72
|
+
}
|
73
|
+
|
74
|
+
.xs-fz\+\+ {
|
75
|
+
.to-rem(font-size, @font-size-xx-large, ~"!important");
|
76
|
+
}
|
77
|
+
|
78
|
+
.xs-fz\+\+\+ {
|
79
|
+
.to-rem(font-size, @font-size-xxx-large, ~"!important");
|
80
|
+
}
|
81
|
+
|
82
|
+
.xs-fz100 {
|
83
|
+
font-size: @font-size-100 !important;
|
84
|
+
}
|
85
|
+
|
86
|
+
.xs-fz0 {
|
87
|
+
font-size: 0 !important;
|
88
|
+
}
|
89
|
+
},{
|
90
|
+
.sm-fz--- {
|
91
|
+
.to-rem(font-size, @font-size-xxx-small, ~"!important");
|
92
|
+
}
|
93
|
+
|
94
|
+
.sm-fz-- {
|
95
|
+
.to-rem(font-size, @font-size-xx-small, ~"!important");
|
96
|
+
}
|
97
|
+
|
98
|
+
.sm-fz- {
|
99
|
+
.to-rem(font-size, @font-size-x-small, ~"!important");
|
100
|
+
}
|
101
|
+
|
102
|
+
.sm-fz {
|
103
|
+
.to-rem(font-size, @font-size, ~"!important");
|
104
|
+
}
|
105
|
+
|
106
|
+
.sm-fz\+ {
|
107
|
+
.to-rem(font-size, @font-size-x-large, ~"!important");
|
108
|
+
}
|
109
|
+
|
110
|
+
.sm-fz\+\+ {
|
111
|
+
.to-rem(font-size, @font-size-xx-large, ~"!important");
|
112
|
+
}
|
113
|
+
|
114
|
+
.sm-fz\+\+\+ {
|
115
|
+
.to-rem(font-size, @font-size-xxx-large, ~"!important");
|
116
|
+
}
|
117
|
+
|
118
|
+
.sm-fz100 {
|
119
|
+
font-size: @font-size-100 !important;
|
120
|
+
}
|
121
|
+
|
122
|
+
.sm-fz0 {
|
123
|
+
font-size: 0 !important;
|
124
|
+
}
|
125
|
+
},{
|
126
|
+
.md-fz--- {
|
127
|
+
.to-rem(font-size, @font-size-xxx-small, ~"!important");
|
128
|
+
}
|
129
|
+
|
130
|
+
.md-fz-- {
|
131
|
+
.to-rem(font-size, @font-size-xx-small, ~"!important");
|
132
|
+
}
|
133
|
+
|
134
|
+
.md-fz- {
|
135
|
+
.to-rem(font-size, @font-size-x-small, ~"!important");
|
136
|
+
}
|
137
|
+
|
138
|
+
.md-fz {
|
139
|
+
.to-rem(font-size, @font-size, ~"!important");
|
140
|
+
}
|
141
|
+
|
142
|
+
.md-fz\+ {
|
143
|
+
.to-rem(font-size, @font-size-x-large, ~"!important");
|
144
|
+
}
|
145
|
+
|
146
|
+
.md-fz\+\+ {
|
147
|
+
.to-rem(font-size, @font-size-xx-large, ~"!important");
|
148
|
+
}
|
149
|
+
|
150
|
+
.md-fz\+\+\+ {
|
151
|
+
.to-rem(font-size, @font-size-xxx-large, ~"!important");
|
152
|
+
}
|
153
|
+
|
154
|
+
.md-fz100 {
|
155
|
+
font-size: @font-size-100 !important;
|
156
|
+
}
|
157
|
+
|
158
|
+
.md-fz0 {
|
159
|
+
font-size: 0 !important;
|
160
|
+
}
|
161
|
+
},{
|
162
|
+
.lg-fz--- {
|
163
|
+
.to-rem(font-size, @font-size-xxx-small, ~"!important");
|
164
|
+
}
|
165
|
+
|
166
|
+
.lg-fz-- {
|
167
|
+
.to-rem(font-size, @font-size-xx-small, ~"!important");
|
168
|
+
}
|
169
|
+
|
170
|
+
.lg-fz- {
|
171
|
+
.to-rem(font-size, @font-size-x-small, ~"!important");
|
172
|
+
}
|
173
|
+
|
174
|
+
.lg-fz {
|
175
|
+
.to-rem(font-size, @font-size, ~"!important");
|
176
|
+
}
|
177
|
+
|
178
|
+
.lg-fz\+ {
|
179
|
+
.to-rem(font-size, @font-size-x-large, ~"!important");
|
180
|
+
}
|
181
|
+
|
182
|
+
.lg-fz\+\+ {
|
183
|
+
.to-rem(font-size, @font-size-xx-large, ~"!important");
|
184
|
+
}
|
185
|
+
|
186
|
+
.lg-fz\+\+\+ {
|
187
|
+
.to-rem(font-size, @font-size-xxx-large, ~"!important");
|
188
|
+
}
|
189
|
+
|
190
|
+
.lg-fz100 {
|
191
|
+
font-size: @font-size-100 !important;
|
192
|
+
}
|
193
|
+
|
194
|
+
.lg-fz0 {
|
195
|
+
font-size: 0 !important;
|
196
|
+
}
|
197
|
+
},{
|
198
|
+
.xl-fz--- {
|
199
|
+
.to-rem(font-size, @font-size-xxx-small, ~"!important");
|
200
|
+
}
|
201
|
+
|
202
|
+
.xl-fz-- {
|
203
|
+
.to-rem(font-size, @font-size-xx-small, ~"!important");
|
204
|
+
}
|
205
|
+
|
206
|
+
.xl-fz- {
|
207
|
+
.to-rem(font-size, @font-size-x-small, ~"!important");
|
208
|
+
}
|
209
|
+
|
210
|
+
.xl-fz {
|
211
|
+
.to-rem(font-size, @font-size, ~"!important");
|
212
|
+
}
|
213
|
+
|
214
|
+
.xl-fz\+ {
|
215
|
+
.to-rem(font-size, @font-size-x-large, ~"!important");
|
216
|
+
}
|
217
|
+
|
218
|
+
.xl-fz\+\+ {
|
219
|
+
.to-rem(font-size, @font-size-xx-large, ~"!important");
|
220
|
+
}
|
221
|
+
|
222
|
+
.xl-fz\+\+\+ {
|
223
|
+
.to-rem(font-size, @font-size-xxx-large, ~"!important");
|
224
|
+
}
|
225
|
+
|
226
|
+
.xl-fz100 {
|
227
|
+
font-size: @font-size-100 !important;
|
228
|
+
}
|
229
|
+
|
230
|
+
.xl-fz0 {
|
231
|
+
font-size: 0 !important;
|
232
|
+
}
|
233
|
+
},{
|
234
|
+
.xxl-fz--- {
|
235
|
+
.to-rem(font-size, @font-size-xxx-small, ~"!important");
|
236
|
+
}
|
237
|
+
|
238
|
+
.xxl-fz-- {
|
239
|
+
.to-rem(font-size, @font-size-xx-small, ~"!important");
|
240
|
+
}
|
241
|
+
|
242
|
+
.xxl-fz- {
|
243
|
+
.to-rem(font-size, @font-size-x-small, ~"!important");
|
244
|
+
}
|
245
|
+
|
246
|
+
.xxl-fz {
|
247
|
+
.to-rem(font-size, @font-size, ~"!important");
|
248
|
+
}
|
249
|
+
|
250
|
+
.xxl-fz\+ {
|
251
|
+
.to-rem(font-size, @font-size-x-large, ~"!important");
|
252
|
+
}
|
253
|
+
|
254
|
+
.xxl-fz\+\+ {
|
255
|
+
.to-rem(font-size, @font-size-xx-large, ~"!important");
|
256
|
+
}
|
257
|
+
|
258
|
+
.xxl-fz\+\+\+ {
|
259
|
+
.to-rem(font-size, @font-size-xxx-large, ~"!important");
|
260
|
+
}
|
261
|
+
|
262
|
+
.xxl-fz100 {
|
263
|
+
font-size: @font-size-100 !important;
|
264
|
+
}
|
265
|
+
|
266
|
+
.xxl-fz0 {
|
267
|
+
font-size: 0 !important;
|
268
|
+
}
|
269
|
+
});
|
@@ -0,0 +1,1322 @@
|
|
1
|
+
/* ========================================================================== *\
|
2
|
+
Utilities -> Margins ($utilities-margins)
|
3
|
+
\* ========================================================================== */
|
4
|
+
|
5
|
+
//
|
6
|
+
// m = margin
|
7
|
+
// t = top
|
8
|
+
// r = right
|
9
|
+
// b = bottom
|
10
|
+
// l = left
|
11
|
+
// h = horizontal
|
12
|
+
// v = vertical
|
13
|
+
// -- = quarter
|
14
|
+
// - = half
|
15
|
+
// + = double
|
16
|
+
// ++ = quadruple
|
17
|
+
// 0 = none
|
18
|
+
//
|
19
|
+
|
20
|
+
// Whole
|
21
|
+
.m {
|
22
|
+
.to-rem(margin, @spacing-base, ~"!important");
|
23
|
+
}
|
24
|
+
|
25
|
+
.mt {
|
26
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
27
|
+
}
|
28
|
+
|
29
|
+
.mr {
|
30
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
31
|
+
}
|
32
|
+
|
33
|
+
.mb {
|
34
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
35
|
+
}
|
36
|
+
|
37
|
+
.ml {
|
38
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
39
|
+
}
|
40
|
+
|
41
|
+
.mh {
|
42
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
43
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
44
|
+
}
|
45
|
+
|
46
|
+
.mv {
|
47
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
48
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
49
|
+
}
|
50
|
+
|
51
|
+
// Quarter (--)
|
52
|
+
.m-- {
|
53
|
+
.to-rem(margin, @spacing-fourth, ~"!important");
|
54
|
+
}
|
55
|
+
|
56
|
+
.mt-- {
|
57
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
58
|
+
}
|
59
|
+
|
60
|
+
.mr-- {
|
61
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
62
|
+
}
|
63
|
+
|
64
|
+
.mb-- {
|
65
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
66
|
+
}
|
67
|
+
|
68
|
+
.ml-- {
|
69
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
70
|
+
}
|
71
|
+
|
72
|
+
.mh-- {
|
73
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
74
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
75
|
+
}
|
76
|
+
|
77
|
+
.mv-- {
|
78
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
79
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
80
|
+
}
|
81
|
+
|
82
|
+
// Half (-)
|
83
|
+
.m- {
|
84
|
+
.to-rem(margin, @spacing-half, ~"!important");
|
85
|
+
}
|
86
|
+
|
87
|
+
.mt- {
|
88
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
89
|
+
}
|
90
|
+
|
91
|
+
.mr- {
|
92
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
93
|
+
}
|
94
|
+
|
95
|
+
.mb- {
|
96
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
97
|
+
}
|
98
|
+
|
99
|
+
.ml- {
|
100
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
101
|
+
}
|
102
|
+
|
103
|
+
.mh- {
|
104
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
105
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
106
|
+
}
|
107
|
+
|
108
|
+
.mv- {
|
109
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
110
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
111
|
+
}
|
112
|
+
|
113
|
+
// Double (+)
|
114
|
+
.m\+ {
|
115
|
+
.to-rem(margin, @spacing-double, ~"!important");
|
116
|
+
}
|
117
|
+
|
118
|
+
.mt\+ {
|
119
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
120
|
+
}
|
121
|
+
|
122
|
+
.mr\+ {
|
123
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
124
|
+
}
|
125
|
+
|
126
|
+
.mb\+ {
|
127
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
128
|
+
}
|
129
|
+
|
130
|
+
.ml\+ {
|
131
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
132
|
+
}
|
133
|
+
|
134
|
+
.mh\+ {
|
135
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
136
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
137
|
+
}
|
138
|
+
|
139
|
+
.mv\+ {
|
140
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
141
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
142
|
+
}
|
143
|
+
|
144
|
+
// Quadruple (++)
|
145
|
+
.m\+\+ {
|
146
|
+
.to-rem(margin, @spacing-quadruple, ~"!important");
|
147
|
+
}
|
148
|
+
|
149
|
+
.mt\+\+ {
|
150
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
151
|
+
}
|
152
|
+
|
153
|
+
.mr\+\+ {
|
154
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
155
|
+
}
|
156
|
+
|
157
|
+
.mb\+\+ {
|
158
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
159
|
+
}
|
160
|
+
|
161
|
+
.ml\+\+ {
|
162
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
163
|
+
}
|
164
|
+
|
165
|
+
.mh\+\+ {
|
166
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
167
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
168
|
+
}
|
169
|
+
|
170
|
+
.mv\+\+ {
|
171
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
172
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
173
|
+
}
|
174
|
+
|
175
|
+
// None (0)
|
176
|
+
.m0 {
|
177
|
+
.to-rem(margin, @spacing-none, ~"!important");
|
178
|
+
}
|
179
|
+
|
180
|
+
.mt0 {
|
181
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
182
|
+
}
|
183
|
+
|
184
|
+
.mr0 {
|
185
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
186
|
+
}
|
187
|
+
|
188
|
+
.mb0 {
|
189
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
190
|
+
}
|
191
|
+
|
192
|
+
.ml0 {
|
193
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
194
|
+
}
|
195
|
+
|
196
|
+
.mh0 {
|
197
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
198
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
199
|
+
}
|
200
|
+
|
201
|
+
.mv0 {
|
202
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
203
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
204
|
+
}
|
205
|
+
|
206
|
+
.screens({
|
207
|
+
// Whole
|
208
|
+
.xs-m {
|
209
|
+
.to-rem(margin, @spacing-base, ~"!important");
|
210
|
+
}
|
211
|
+
|
212
|
+
.xs-mt {
|
213
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
214
|
+
}
|
215
|
+
|
216
|
+
.xs-mr {
|
217
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
218
|
+
}
|
219
|
+
|
220
|
+
.xs-mb {
|
221
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
222
|
+
}
|
223
|
+
|
224
|
+
.xs-ml {
|
225
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
226
|
+
}
|
227
|
+
|
228
|
+
.xs-mh {
|
229
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
230
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
231
|
+
}
|
232
|
+
|
233
|
+
.xs-mv {
|
234
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
235
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
236
|
+
}
|
237
|
+
|
238
|
+
// Quarter (--)
|
239
|
+
.xs-m-- {
|
240
|
+
.to-rem(margin, @spacing-fourth, ~"!important");
|
241
|
+
}
|
242
|
+
|
243
|
+
.xs-mt-- {
|
244
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
245
|
+
}
|
246
|
+
|
247
|
+
.xs-mr-- {
|
248
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
249
|
+
}
|
250
|
+
|
251
|
+
.xs-mb-- {
|
252
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
253
|
+
}
|
254
|
+
|
255
|
+
.xs-ml-- {
|
256
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
257
|
+
}
|
258
|
+
|
259
|
+
.xs-mh-- {
|
260
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
261
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
262
|
+
}
|
263
|
+
|
264
|
+
.xs-mv-- {
|
265
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
266
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
267
|
+
}
|
268
|
+
|
269
|
+
// Half (-)
|
270
|
+
.xs-m- {
|
271
|
+
.to-rem(margin, @spacing-half, ~"!important");
|
272
|
+
}
|
273
|
+
|
274
|
+
.xs-mt- {
|
275
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
276
|
+
}
|
277
|
+
|
278
|
+
.xs-mr- {
|
279
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
280
|
+
}
|
281
|
+
|
282
|
+
.xs-mb- {
|
283
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
284
|
+
}
|
285
|
+
|
286
|
+
.xs-ml- {
|
287
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
288
|
+
}
|
289
|
+
|
290
|
+
.xs-mh- {
|
291
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
292
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
293
|
+
}
|
294
|
+
|
295
|
+
.xs-mv- {
|
296
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
297
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
298
|
+
}
|
299
|
+
|
300
|
+
// Double (+)
|
301
|
+
.xs-m\+ {
|
302
|
+
.to-rem(margin, @spacing-double, ~"!important");
|
303
|
+
}
|
304
|
+
|
305
|
+
.xs-mt\+ {
|
306
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
307
|
+
}
|
308
|
+
|
309
|
+
.xs-mr\+ {
|
310
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
311
|
+
}
|
312
|
+
|
313
|
+
.xs-mb\+ {
|
314
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
315
|
+
}
|
316
|
+
|
317
|
+
.xs-ml\+ {
|
318
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
319
|
+
}
|
320
|
+
|
321
|
+
.xs-mh\+ {
|
322
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
323
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
324
|
+
}
|
325
|
+
|
326
|
+
.xs-mv\+ {
|
327
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
328
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
329
|
+
}
|
330
|
+
|
331
|
+
// Quadruple (++)
|
332
|
+
.xs-m\+\+ {
|
333
|
+
.to-rem(margin, @spacing-quadruple, ~"!important");
|
334
|
+
}
|
335
|
+
|
336
|
+
.xs-mt\+\+ {
|
337
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
338
|
+
}
|
339
|
+
|
340
|
+
.xs-mr\+\+ {
|
341
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
342
|
+
}
|
343
|
+
|
344
|
+
.xs-mb\+\+ {
|
345
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
346
|
+
}
|
347
|
+
|
348
|
+
.xs-ml\+\+ {
|
349
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
350
|
+
}
|
351
|
+
|
352
|
+
.xs-mh\+\+ {
|
353
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
354
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
355
|
+
}
|
356
|
+
|
357
|
+
.xs-mv\+\+ {
|
358
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
359
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
360
|
+
}
|
361
|
+
|
362
|
+
// None (0)
|
363
|
+
.xs-m0 {
|
364
|
+
.to-rem(margin, @spacing-none, ~"!important");
|
365
|
+
}
|
366
|
+
|
367
|
+
.xs-mt0 {
|
368
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
369
|
+
}
|
370
|
+
|
371
|
+
.xs-mr0 {
|
372
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
373
|
+
}
|
374
|
+
|
375
|
+
.xs-mb0 {
|
376
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
377
|
+
}
|
378
|
+
|
379
|
+
.xs-ml0 {
|
380
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
381
|
+
}
|
382
|
+
|
383
|
+
.xs-mh0 {
|
384
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
385
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
386
|
+
}
|
387
|
+
|
388
|
+
.xs-mv0 {
|
389
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
390
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
391
|
+
}
|
392
|
+
},{
|
393
|
+
// Whole
|
394
|
+
.sm-m {
|
395
|
+
.to-rem(margin, @spacing-base, ~"!important");
|
396
|
+
}
|
397
|
+
|
398
|
+
.sm-mt {
|
399
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
400
|
+
}
|
401
|
+
|
402
|
+
.sm-mr {
|
403
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
404
|
+
}
|
405
|
+
|
406
|
+
.sm-mb {
|
407
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
408
|
+
}
|
409
|
+
|
410
|
+
.sm-ml {
|
411
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
412
|
+
}
|
413
|
+
|
414
|
+
.sm-mh {
|
415
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
416
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
417
|
+
}
|
418
|
+
|
419
|
+
.sm-mv {
|
420
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
421
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
422
|
+
}
|
423
|
+
|
424
|
+
// Quarter (--)
|
425
|
+
.sm-m-- {
|
426
|
+
.to-rem(margin, @spacing-fourth, ~"!important");
|
427
|
+
}
|
428
|
+
|
429
|
+
.sm-mt-- {
|
430
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
431
|
+
}
|
432
|
+
|
433
|
+
.sm-mr-- {
|
434
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
435
|
+
}
|
436
|
+
|
437
|
+
.sm-mb-- {
|
438
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
439
|
+
}
|
440
|
+
|
441
|
+
.sm-ml-- {
|
442
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
443
|
+
}
|
444
|
+
|
445
|
+
.sm-mh-- {
|
446
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
447
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
448
|
+
}
|
449
|
+
|
450
|
+
.sm-mv-- {
|
451
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
452
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
453
|
+
}
|
454
|
+
|
455
|
+
// Half (-)
|
456
|
+
.sm-m- {
|
457
|
+
.to-rem(margin, @spacing-half, ~"!important");
|
458
|
+
}
|
459
|
+
|
460
|
+
.sm-mt- {
|
461
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
462
|
+
}
|
463
|
+
|
464
|
+
.sm-mr- {
|
465
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
466
|
+
}
|
467
|
+
|
468
|
+
.sm-mb- {
|
469
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
470
|
+
}
|
471
|
+
|
472
|
+
.sm-ml- {
|
473
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
474
|
+
}
|
475
|
+
|
476
|
+
.sm-mh- {
|
477
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
478
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
479
|
+
}
|
480
|
+
|
481
|
+
.sm-mv- {
|
482
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
483
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
484
|
+
}
|
485
|
+
|
486
|
+
// Double (+)
|
487
|
+
.sm-m\+ {
|
488
|
+
.to-rem(margin, @spacing-double, ~"!important");
|
489
|
+
}
|
490
|
+
|
491
|
+
.sm-mt\+ {
|
492
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
493
|
+
}
|
494
|
+
|
495
|
+
.sm-mr\+ {
|
496
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
497
|
+
}
|
498
|
+
|
499
|
+
.sm-mb\+ {
|
500
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
501
|
+
}
|
502
|
+
|
503
|
+
.sm-ml\+ {
|
504
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
505
|
+
}
|
506
|
+
|
507
|
+
.sm-mh\+ {
|
508
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
509
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
510
|
+
}
|
511
|
+
|
512
|
+
.sm-mv\+ {
|
513
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
514
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
515
|
+
}
|
516
|
+
|
517
|
+
// Quadruple (++)
|
518
|
+
.sm-m\+\+ {
|
519
|
+
.to-rem(margin, @spacing-quadruple, ~"!important");
|
520
|
+
}
|
521
|
+
|
522
|
+
.sm-mt\+\+ {
|
523
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
524
|
+
}
|
525
|
+
|
526
|
+
.sm-mr\+\+ {
|
527
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
528
|
+
}
|
529
|
+
|
530
|
+
.sm-mb\+\+ {
|
531
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
532
|
+
}
|
533
|
+
|
534
|
+
.sm-ml\+\+ {
|
535
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
536
|
+
}
|
537
|
+
|
538
|
+
.sm-mh\+\+ {
|
539
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
540
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
541
|
+
}
|
542
|
+
|
543
|
+
.sm-mv\+\+ {
|
544
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
545
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
546
|
+
}
|
547
|
+
|
548
|
+
// None (0)
|
549
|
+
.sm-m0 {
|
550
|
+
.to-rem(margin, @spacing-none, ~"!important");
|
551
|
+
}
|
552
|
+
|
553
|
+
.sm-mt0 {
|
554
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
555
|
+
}
|
556
|
+
|
557
|
+
.sm-mr0 {
|
558
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
559
|
+
}
|
560
|
+
|
561
|
+
.sm-mb0 {
|
562
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
563
|
+
}
|
564
|
+
|
565
|
+
.sm-ml0 {
|
566
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
567
|
+
}
|
568
|
+
|
569
|
+
.sm-mh0 {
|
570
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
571
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
572
|
+
}
|
573
|
+
|
574
|
+
.sm-mv0 {
|
575
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
576
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
577
|
+
}
|
578
|
+
},{
|
579
|
+
// Whole
|
580
|
+
.md-m {
|
581
|
+
.to-rem(margin, @spacing-base, ~"!important");
|
582
|
+
}
|
583
|
+
|
584
|
+
.md-mt {
|
585
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
586
|
+
}
|
587
|
+
|
588
|
+
.md-mr {
|
589
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
590
|
+
}
|
591
|
+
|
592
|
+
.md-mb {
|
593
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
594
|
+
}
|
595
|
+
|
596
|
+
.md-ml {
|
597
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
598
|
+
}
|
599
|
+
|
600
|
+
.md-mh {
|
601
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
602
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
603
|
+
}
|
604
|
+
|
605
|
+
.md-mv {
|
606
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
607
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
608
|
+
}
|
609
|
+
|
610
|
+
// Quarter (--)
|
611
|
+
.md-m-- {
|
612
|
+
.to-rem(margin, @spacing-fourth, ~"!important");
|
613
|
+
}
|
614
|
+
|
615
|
+
.md-mt-- {
|
616
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
617
|
+
}
|
618
|
+
|
619
|
+
.md-mr-- {
|
620
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
621
|
+
}
|
622
|
+
|
623
|
+
.md-mb-- {
|
624
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
625
|
+
}
|
626
|
+
|
627
|
+
.md-ml-- {
|
628
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
629
|
+
}
|
630
|
+
|
631
|
+
.md-mh-- {
|
632
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
633
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
634
|
+
}
|
635
|
+
|
636
|
+
.md-mv-- {
|
637
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
638
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
639
|
+
}
|
640
|
+
|
641
|
+
// Half (-)
|
642
|
+
.md-m- {
|
643
|
+
.to-rem(margin, @spacing-half, ~"!important");
|
644
|
+
}
|
645
|
+
|
646
|
+
.md-mt- {
|
647
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
648
|
+
}
|
649
|
+
|
650
|
+
.md-mr- {
|
651
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
652
|
+
}
|
653
|
+
|
654
|
+
.md-mb- {
|
655
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
656
|
+
}
|
657
|
+
|
658
|
+
.md-ml- {
|
659
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
660
|
+
}
|
661
|
+
|
662
|
+
.md-mh- {
|
663
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
664
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
665
|
+
}
|
666
|
+
|
667
|
+
.md-mv- {
|
668
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
669
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
670
|
+
}
|
671
|
+
|
672
|
+
// Double (+)
|
673
|
+
.md-m\+ {
|
674
|
+
.to-rem(margin, @spacing-double, ~"!important");
|
675
|
+
}
|
676
|
+
|
677
|
+
.md-mt\+ {
|
678
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
679
|
+
}
|
680
|
+
|
681
|
+
.md-mr\+ {
|
682
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
683
|
+
}
|
684
|
+
|
685
|
+
.md-mb\+ {
|
686
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
687
|
+
}
|
688
|
+
|
689
|
+
.md-ml\+ {
|
690
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
691
|
+
}
|
692
|
+
|
693
|
+
.md-mh\+ {
|
694
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
695
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
696
|
+
}
|
697
|
+
|
698
|
+
.md-mv\+ {
|
699
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
700
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
701
|
+
}
|
702
|
+
|
703
|
+
// Quadruple (++)
|
704
|
+
.md-m\+\+ {
|
705
|
+
.to-rem(margin, @spacing-quadruple, ~"!important");
|
706
|
+
}
|
707
|
+
|
708
|
+
.md-mt\+\+ {
|
709
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
710
|
+
}
|
711
|
+
|
712
|
+
.md-mr\+\+ {
|
713
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
714
|
+
}
|
715
|
+
|
716
|
+
.md-mb\+\+ {
|
717
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
718
|
+
}
|
719
|
+
|
720
|
+
.md-ml\+\+ {
|
721
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
722
|
+
}
|
723
|
+
|
724
|
+
.md-mh\+\+ {
|
725
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
726
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
727
|
+
}
|
728
|
+
|
729
|
+
.md-mv\+\+ {
|
730
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
731
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
732
|
+
}
|
733
|
+
|
734
|
+
// None (0)
|
735
|
+
.md-m0 {
|
736
|
+
.to-rem(margin, @spacing-none, ~"!important");
|
737
|
+
}
|
738
|
+
|
739
|
+
.md-mt0 {
|
740
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
741
|
+
}
|
742
|
+
|
743
|
+
.md-mr0 {
|
744
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
745
|
+
}
|
746
|
+
|
747
|
+
.md-mb0 {
|
748
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
749
|
+
}
|
750
|
+
|
751
|
+
.md-ml0 {
|
752
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
753
|
+
}
|
754
|
+
|
755
|
+
.md-mh0 {
|
756
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
757
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
758
|
+
}
|
759
|
+
|
760
|
+
.md-mv0 {
|
761
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
762
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
763
|
+
}
|
764
|
+
},{
|
765
|
+
// Whole
|
766
|
+
.lg-m {
|
767
|
+
.to-rem(margin, @spacing-base, ~"!important");
|
768
|
+
}
|
769
|
+
|
770
|
+
.lg-mt {
|
771
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
772
|
+
}
|
773
|
+
|
774
|
+
.lg-mr {
|
775
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
776
|
+
}
|
777
|
+
|
778
|
+
.lg-mb {
|
779
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
780
|
+
}
|
781
|
+
|
782
|
+
.lg-ml {
|
783
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
784
|
+
}
|
785
|
+
|
786
|
+
.lg-mh {
|
787
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
788
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
789
|
+
}
|
790
|
+
|
791
|
+
.lg-mv {
|
792
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
793
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
794
|
+
}
|
795
|
+
|
796
|
+
// Quarter (--)
|
797
|
+
.lg-m-- {
|
798
|
+
.to-rem(margin, @spacing-fourth, ~"!important");
|
799
|
+
}
|
800
|
+
|
801
|
+
.lg-mt-- {
|
802
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
803
|
+
}
|
804
|
+
|
805
|
+
.lg-mr-- {
|
806
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
807
|
+
}
|
808
|
+
|
809
|
+
.lg-mb-- {
|
810
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
811
|
+
}
|
812
|
+
|
813
|
+
.lg-ml-- {
|
814
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
815
|
+
}
|
816
|
+
|
817
|
+
.lg-mh-- {
|
818
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
819
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
820
|
+
}
|
821
|
+
|
822
|
+
.lg-mv-- {
|
823
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
824
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
825
|
+
}
|
826
|
+
|
827
|
+
// Half (-)
|
828
|
+
.lg-m- {
|
829
|
+
.to-rem(margin, @spacing-half, ~"!important");
|
830
|
+
}
|
831
|
+
|
832
|
+
.lg-mt- {
|
833
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
834
|
+
}
|
835
|
+
|
836
|
+
.lg-mr- {
|
837
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
838
|
+
}
|
839
|
+
|
840
|
+
.lg-mb- {
|
841
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
842
|
+
}
|
843
|
+
|
844
|
+
.lg-ml- {
|
845
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
846
|
+
}
|
847
|
+
|
848
|
+
.lg-mh- {
|
849
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
850
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
851
|
+
}
|
852
|
+
|
853
|
+
.lg-mv- {
|
854
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
855
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
856
|
+
}
|
857
|
+
|
858
|
+
// Double (+)
|
859
|
+
.lg-m\+ {
|
860
|
+
.to-rem(margin, @spacing-double, ~"!important");
|
861
|
+
}
|
862
|
+
|
863
|
+
.lg-mt\+ {
|
864
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
865
|
+
}
|
866
|
+
|
867
|
+
.lg-mr\+ {
|
868
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
869
|
+
}
|
870
|
+
|
871
|
+
.lg-mb\+ {
|
872
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
873
|
+
}
|
874
|
+
|
875
|
+
.lg-ml\+ {
|
876
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
877
|
+
}
|
878
|
+
|
879
|
+
.lg-mh\+ {
|
880
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
881
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
882
|
+
}
|
883
|
+
|
884
|
+
.lg-mv\+ {
|
885
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
886
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
887
|
+
}
|
888
|
+
|
889
|
+
// Quadruple (++)
|
890
|
+
.lg-m\+\+ {
|
891
|
+
.to-rem(margin, @spacing-quadruple, ~"!important");
|
892
|
+
}
|
893
|
+
|
894
|
+
.lg-mt\+\+ {
|
895
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
896
|
+
}
|
897
|
+
|
898
|
+
.lg-mr\+\+ {
|
899
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
900
|
+
}
|
901
|
+
|
902
|
+
.lg-mb\+\+ {
|
903
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
904
|
+
}
|
905
|
+
|
906
|
+
.lg-ml\+\+ {
|
907
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
908
|
+
}
|
909
|
+
|
910
|
+
.lg-mh\+\+ {
|
911
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
912
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
913
|
+
}
|
914
|
+
|
915
|
+
.lg-mv\+\+ {
|
916
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
917
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
918
|
+
}
|
919
|
+
|
920
|
+
// None (0)
|
921
|
+
.lg-m0 {
|
922
|
+
.to-rem(margin, @spacing-none, ~"!important");
|
923
|
+
}
|
924
|
+
|
925
|
+
.lg-mt0 {
|
926
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
927
|
+
}
|
928
|
+
|
929
|
+
.lg-mr0 {
|
930
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
931
|
+
}
|
932
|
+
|
933
|
+
.lg-mb0 {
|
934
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
935
|
+
}
|
936
|
+
|
937
|
+
.lg-ml0 {
|
938
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
939
|
+
}
|
940
|
+
|
941
|
+
.lg-mh0 {
|
942
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
943
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
944
|
+
}
|
945
|
+
|
946
|
+
.lg-mv0 {
|
947
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
948
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
949
|
+
}
|
950
|
+
},{
|
951
|
+
// Whole
|
952
|
+
.xl-m {
|
953
|
+
.to-rem(margin, @spacing-base, ~"!important");
|
954
|
+
}
|
955
|
+
|
956
|
+
.xl-mt {
|
957
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
958
|
+
}
|
959
|
+
|
960
|
+
.xl-mr {
|
961
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
962
|
+
}
|
963
|
+
|
964
|
+
.xl-mb {
|
965
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
966
|
+
}
|
967
|
+
|
968
|
+
.xl-ml {
|
969
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
970
|
+
}
|
971
|
+
|
972
|
+
.xl-mh {
|
973
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
974
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
975
|
+
}
|
976
|
+
|
977
|
+
.xl-mv {
|
978
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
979
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
980
|
+
}
|
981
|
+
|
982
|
+
// Quarter (--)
|
983
|
+
.xl-m-- {
|
984
|
+
.to-rem(margin, @spacing-fourth, ~"!important");
|
985
|
+
}
|
986
|
+
|
987
|
+
.xl-mt-- {
|
988
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
989
|
+
}
|
990
|
+
|
991
|
+
.xl-mr-- {
|
992
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
993
|
+
}
|
994
|
+
|
995
|
+
.xl-mb-- {
|
996
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
997
|
+
}
|
998
|
+
|
999
|
+
.xl-ml-- {
|
1000
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
.xl-mh-- {
|
1004
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
1005
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
.xl-mv-- {
|
1009
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
1010
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
// Half (-)
|
1014
|
+
.xl-m- {
|
1015
|
+
.to-rem(margin, @spacing-half, ~"!important");
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
.xl-mt- {
|
1019
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
1020
|
+
}
|
1021
|
+
|
1022
|
+
.xl-mr- {
|
1023
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
.xl-mb- {
|
1027
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
.xl-ml- {
|
1031
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
.xl-mh- {
|
1035
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
1036
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
.xl-mv- {
|
1040
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
1041
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
// Double (+)
|
1045
|
+
.xl-m\+ {
|
1046
|
+
.to-rem(margin, @spacing-double, ~"!important");
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.xl-mt\+ {
|
1050
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
.xl-mr\+ {
|
1054
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.xl-mb\+ {
|
1058
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
.xl-ml\+ {
|
1062
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
.xl-mh\+ {
|
1066
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
1067
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
1068
|
+
}
|
1069
|
+
|
1070
|
+
.xl-mv\+ {
|
1071
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
1072
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
// Quadruple (++)
|
1076
|
+
.xl-m\+\+ {
|
1077
|
+
.to-rem(margin, @spacing-quadruple, ~"!important");
|
1078
|
+
}
|
1079
|
+
|
1080
|
+
.xl-mt\+\+ {
|
1081
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
.xl-mr\+\+ {
|
1085
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.xl-mb\+\+ {
|
1089
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
.xl-ml\+\+ {
|
1093
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
1094
|
+
}
|
1095
|
+
|
1096
|
+
.xl-mh\+\+ {
|
1097
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
1098
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
.xl-mv\+\+ {
|
1102
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
1103
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
// None (0)
|
1107
|
+
.xl-m0 {
|
1108
|
+
.to-rem(margin, @spacing-none, ~"!important");
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
.xl-mt0 {
|
1112
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
1113
|
+
}
|
1114
|
+
|
1115
|
+
.xl-mr0 {
|
1116
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
.xl-mb0 {
|
1120
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
.xl-ml0 {
|
1124
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
.xl-mh0 {
|
1128
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
1129
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
.xl-mv0 {
|
1133
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
1134
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
1135
|
+
}
|
1136
|
+
},{
|
1137
|
+
// Whole
|
1138
|
+
.xxl-m {
|
1139
|
+
.to-rem(margin, @spacing-base, ~"!important");
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
.xxl-mt {
|
1143
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
1144
|
+
}
|
1145
|
+
|
1146
|
+
.xxl-mr {
|
1147
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
.xxl-mb {
|
1151
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
.xxl-ml {
|
1155
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
.xxl-mh {
|
1159
|
+
.to-rem(margin-right, @spacing-base, ~"!important");
|
1160
|
+
.to-rem(margin-left, @spacing-base, ~"!important");
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
.xxl-mv {
|
1164
|
+
.to-rem(margin-top, @spacing-base, ~"!important");
|
1165
|
+
.to-rem(margin-bottom, @spacing-base, ~"!important");
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
// Quarter (--)
|
1169
|
+
.xxl-m-- {
|
1170
|
+
.to-rem(margin, @spacing-fourth, ~"!important");
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
.xxl-mt-- {
|
1174
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
.xxl-mr-- {
|
1178
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
.xxl-mb-- {
|
1182
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
.xxl-ml-- {
|
1186
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
.xxl-mh-- {
|
1190
|
+
.to-rem(margin-right, @spacing-fourth, ~"!important");
|
1191
|
+
.to-rem(margin-left, @spacing-fourth, ~"!important");
|
1192
|
+
}
|
1193
|
+
|
1194
|
+
.xxl-mv-- {
|
1195
|
+
.to-rem(margin-top, @spacing-fourth, ~"!important");
|
1196
|
+
.to-rem(margin-bottom, @spacing-fourth, ~"!important");
|
1197
|
+
}
|
1198
|
+
|
1199
|
+
// Half (-)
|
1200
|
+
.xxl-m- {
|
1201
|
+
.to-rem(margin, @spacing-half, ~"!important");
|
1202
|
+
}
|
1203
|
+
|
1204
|
+
.xxl-mt- {
|
1205
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
.xxl-mr- {
|
1209
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
.xxl-mb- {
|
1213
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
.xxl-ml- {
|
1217
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
1218
|
+
}
|
1219
|
+
|
1220
|
+
.xxl-mh- {
|
1221
|
+
.to-rem(margin-right, @spacing-half, ~"!important");
|
1222
|
+
.to-rem(margin-left, @spacing-half, ~"!important");
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
.xxl-mv- {
|
1226
|
+
.to-rem(margin-top, @spacing-half, ~"!important");
|
1227
|
+
.to-rem(margin-bottom, @spacing-half, ~"!important");
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
// Double (+)
|
1231
|
+
.xxl-m\+ {
|
1232
|
+
.to-rem(margin, @spacing-double, ~"!important");
|
1233
|
+
}
|
1234
|
+
|
1235
|
+
.xxl-mt\+ {
|
1236
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
1237
|
+
}
|
1238
|
+
|
1239
|
+
.xxl-mr\+ {
|
1240
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
.xxl-mb\+ {
|
1244
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
.xxl-ml\+ {
|
1248
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
.xxl-mh\+ {
|
1252
|
+
.to-rem(margin-right, @spacing-double, ~"!important");
|
1253
|
+
.to-rem(margin-left, @spacing-double, ~"!important");
|
1254
|
+
}
|
1255
|
+
|
1256
|
+
.xxl-mv\+ {
|
1257
|
+
.to-rem(margin-top, @spacing-double, ~"!important");
|
1258
|
+
.to-rem(margin-bottom, @spacing-double, ~"!important");
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
// Quadruple (++)
|
1262
|
+
.xxl-m\+\+ {
|
1263
|
+
.to-rem(margin, @spacing-quadruple, ~"!important");
|
1264
|
+
}
|
1265
|
+
|
1266
|
+
.xxl-mt\+\+ {
|
1267
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
1268
|
+
}
|
1269
|
+
|
1270
|
+
.xxl-mr\+\+ {
|
1271
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
1272
|
+
}
|
1273
|
+
|
1274
|
+
.xxl-mb\+\+ {
|
1275
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
1276
|
+
}
|
1277
|
+
|
1278
|
+
.xxl-ml\+\+ {
|
1279
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
1280
|
+
}
|
1281
|
+
|
1282
|
+
.xxl-mh\+\+ {
|
1283
|
+
.to-rem(margin-right, @spacing-quadruple, ~"!important");
|
1284
|
+
.to-rem(margin-left, @spacing-quadruple, ~"!important");
|
1285
|
+
}
|
1286
|
+
|
1287
|
+
.xxl-mv\+\+ {
|
1288
|
+
.to-rem(margin-top, @spacing-quadruple, ~"!important");
|
1289
|
+
.to-rem(margin-bottom, @spacing-quadruple, ~"!important");
|
1290
|
+
}
|
1291
|
+
|
1292
|
+
// None (0)
|
1293
|
+
.xxl-m0 {
|
1294
|
+
.to-rem(margin, @spacing-none, ~"!important");
|
1295
|
+
}
|
1296
|
+
|
1297
|
+
.xxl-mt0 {
|
1298
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
.xxl-mr0 {
|
1302
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
1303
|
+
}
|
1304
|
+
|
1305
|
+
.xxl-mb0 {
|
1306
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
.xxl-ml0 {
|
1310
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
.xxl-mh0 {
|
1314
|
+
.to-rem(margin-right, @spacing-none, ~"!important");
|
1315
|
+
.to-rem(margin-left, @spacing-none, ~"!important");
|
1316
|
+
}
|
1317
|
+
|
1318
|
+
.xxl-mv0 {
|
1319
|
+
.to-rem(margin-top, @spacing-none, ~"!important");
|
1320
|
+
.to-rem(margin-bottom, @spacing-none, ~"!important");
|
1321
|
+
}
|
1322
|
+
});
|