cardinal-rails 3.1.0.00

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/License.txt +21 -0
  3. data/README.md +39 -0
  4. data/lib/cardinal/rails.rb +8 -0
  5. data/lib/cardinal/rails/version.rb +5 -0
  6. data/vendor/assets/stylesheets/cardinal.less +83 -0
  7. data/vendor/assets/stylesheets/core/base/anchors.less +18 -0
  8. data/vendor/assets/stylesheets/core/base/blockquotes.less +45 -0
  9. data/vendor/assets/stylesheets/core/base/code.less +68 -0
  10. data/vendor/assets/stylesheets/core/base/embedded-content.less +89 -0
  11. data/vendor/assets/stylesheets/core/base/form-elements.less +130 -0
  12. data/vendor/assets/stylesheets/core/base/headings.less +50 -0
  13. data/vendor/assets/stylesheets/core/base/horizontal-rules.less +10 -0
  14. data/vendor/assets/stylesheets/core/base/lists.less +57 -0
  15. data/vendor/assets/stylesheets/core/base/print.less +69 -0
  16. data/vendor/assets/stylesheets/core/base/root.less +90 -0
  17. data/vendor/assets/stylesheets/core/base/selections.less +30 -0
  18. data/vendor/assets/stylesheets/core/base/tables.less +18 -0
  19. data/vendor/assets/stylesheets/core/base/text-elements.less +83 -0
  20. data/vendor/assets/stylesheets/core/debug.less +154 -0
  21. data/vendor/assets/stylesheets/core/mixins/antialiasing.less +8 -0
  22. data/vendor/assets/stylesheets/core/mixins/clearing.less +27 -0
  23. data/vendor/assets/stylesheets/core/mixins/font-face.less +33 -0
  24. data/vendor/assets/stylesheets/core/mixins/media-queries.less +154 -0
  25. data/vendor/assets/stylesheets/core/mixins/momentum-scrolling.less +8 -0
  26. data/vendor/assets/stylesheets/core/mixins/text-truncate.less +9 -0
  27. data/vendor/assets/stylesheets/core/mixins/to-rem.less +76 -0
  28. data/vendor/assets/stylesheets/core/mixins/vertically-centered.less +9 -0
  29. data/vendor/assets/stylesheets/core/normalize.less +427 -0
  30. data/vendor/assets/stylesheets/core/reset.less +140 -0
  31. data/vendor/assets/stylesheets/core/variables.less +436 -0
  32. data/vendor/assets/stylesheets/layout/boxes.less +53 -0
  33. data/vendor/assets/stylesheets/layout/grids.less +614 -0
  34. data/vendor/assets/stylesheets/layout/wrappers.less +30 -0
  35. data/vendor/assets/stylesheets/objects/buttons.less +132 -0
  36. data/vendor/assets/stylesheets/objects/forms.less +61 -0
  37. data/vendor/assets/stylesheets/objects/lists.less +45 -0
  38. data/vendor/assets/stylesheets/objects/tables.less +116 -0
  39. data/vendor/assets/stylesheets/utilities/display.less +355 -0
  40. data/vendor/assets/stylesheets/utilities/floats.less +137 -0
  41. data/vendor/assets/stylesheets/utilities/font-sizes.less +269 -0
  42. data/vendor/assets/stylesheets/utilities/margins.less +1322 -0
  43. data/vendor/assets/stylesheets/utilities/paddings.less +1322 -0
  44. data/vendor/assets/stylesheets/utilities/positions.less +125 -0
  45. data/vendor/assets/stylesheets/utilities/text-alignment.less +127 -0
  46. data/vendor/assets/stylesheets/utilities/vertical-alignment.less +98 -0
  47. data/vendor/assets/stylesheets/utilities/visually-hidden.less +43 -0
  48. data/vendor/assets/stylesheets/utilities/widths.less +1455 -0
  49. data/vendor/assets/stylesheets/utilities/z-index.less +292 -0
  50. metadata +141 -0
@@ -0,0 +1,125 @@
1
+ /* ========================================================================== *\
2
+ Utilities -> Positions ($utilities-positions)
3
+ \* ========================================================================== */
4
+
5
+ //
6
+ // pos = position
7
+ // a = absolute
8
+ // f = fixed
9
+ // r = relative
10
+ // s = static
11
+ //
12
+
13
+ .posa {
14
+ position: absolute !important;
15
+ }
16
+
17
+ .posf {
18
+ position: fixed !important;
19
+ }
20
+
21
+ .posr {
22
+ position: relative !important;
23
+ }
24
+
25
+ .poss {
26
+ position: static !important;
27
+ }
28
+
29
+ .screens({
30
+ .xs-posa {
31
+ position: absolute !important;
32
+ }
33
+
34
+ .xs-posf {
35
+ position: fixed !important;
36
+ }
37
+
38
+ .xs-posr {
39
+ position: relative !important;
40
+ }
41
+
42
+ .xs-poss {
43
+ position: static !important;
44
+ }
45
+ },{
46
+ .sm-posa {
47
+ position: absolute !important;
48
+ }
49
+
50
+ .sm-posf {
51
+ position: fixed !important;
52
+ }
53
+
54
+ .sm-posr {
55
+ position: relative !important;
56
+ }
57
+
58
+ .sm-poss {
59
+ position: static !important;
60
+ }
61
+ },{
62
+ .md-posa {
63
+ position: absolute !important;
64
+ }
65
+
66
+ .md-posf {
67
+ position: fixed !important;
68
+ }
69
+
70
+ .md-posr {
71
+ position: relative !important;
72
+ }
73
+
74
+ .md-poss {
75
+ position: static !important;
76
+ }
77
+ },{
78
+ .lg-posa {
79
+ position: absolute !important;
80
+ }
81
+
82
+ .lg-posf {
83
+ position: fixed !important;
84
+ }
85
+
86
+ .lg-posr {
87
+ position: relative !important;
88
+ }
89
+
90
+ .lg-poss {
91
+ position: static !important;
92
+ }
93
+ },{
94
+ .xl-posa {
95
+ position: absolute !important;
96
+ }
97
+
98
+ .xl-posf {
99
+ position: fixed !important;
100
+ }
101
+
102
+ .xl-posr {
103
+ position: relative !important;
104
+ }
105
+
106
+ .xl-poss {
107
+ position: static !important;
108
+ }
109
+ },{
110
+ .xxl-posa {
111
+ position: absolute !important;
112
+ }
113
+
114
+ .xxl-posf {
115
+ position: fixed !important;
116
+ }
117
+
118
+ .xxl-posr {
119
+ position: relative !important;
120
+ }
121
+
122
+ .xxl-poss {
123
+ position: static !important;
124
+ }
125
+ });
@@ -0,0 +1,127 @@
1
+ /* ========================================================================== *\
2
+ Utilities -> Text Alignment ($utilities-text-alignment)
3
+ \* ========================================================================== */
4
+
5
+ //
6
+ // Text alignment
7
+ //
8
+ // t = text-align
9
+ // l = left
10
+ // r = right
11
+ // c = center
12
+ // j = justify
13
+ //
14
+
15
+ .tl {
16
+ text-align: left !important;
17
+ }
18
+
19
+ .tr {
20
+ text-align: right !important;
21
+ }
22
+
23
+ .tc {
24
+ text-align: center !important;
25
+ }
26
+
27
+ .tj {
28
+ text-align: justify !important;
29
+ }
30
+
31
+ .screens({
32
+ .xs-tl {
33
+ text-align: left !important;
34
+ }
35
+
36
+ .xs-tr {
37
+ text-align: right !important;
38
+ }
39
+
40
+ .xs-tc {
41
+ text-align: center !important;
42
+ }
43
+
44
+ .xs-tj {
45
+ text-align: justify !important;
46
+ }
47
+ },{
48
+ .sm-tl {
49
+ text-align: left !important;
50
+ }
51
+
52
+ .sm-tr {
53
+ text-align: right !important;
54
+ }
55
+
56
+ .sm-tc {
57
+ text-align: center !important;
58
+ }
59
+
60
+ .sm-tj {
61
+ text-align: justify !important;
62
+ }
63
+ },{
64
+ .md-tl {
65
+ text-align: left !important;
66
+ }
67
+
68
+ .md-tr {
69
+ text-align: right !important;
70
+ }
71
+
72
+ .md-tc {
73
+ text-align: center !important;
74
+ }
75
+
76
+ .md-tj {
77
+ text-align: justify !important;
78
+ }
79
+ },{
80
+ .lg-tl {
81
+ text-align: left !important;
82
+ }
83
+
84
+ .lg-tr {
85
+ text-align: right !important;
86
+ }
87
+
88
+ .lg-tc {
89
+ text-align: center !important;
90
+ }
91
+
92
+ .lg-tj {
93
+ text-align: justify !important;
94
+ }
95
+ },{
96
+ .xl-tl {
97
+ text-align: left !important;
98
+ }
99
+
100
+ .xl-tr {
101
+ text-align: right !important;
102
+ }
103
+
104
+ .xl-tc {
105
+ text-align: center !important;
106
+ }
107
+
108
+ .xl-tj {
109
+ text-align: justify !important;
110
+ }
111
+ },{
112
+ .xxl-tl {
113
+ text-align: left !important;
114
+ }
115
+
116
+ .xxl-tr {
117
+ text-align: right !important;
118
+ }
119
+
120
+ .xxl-tc {
121
+ text-align: center !important;
122
+ }
123
+
124
+ .xxl-tj {
125
+ text-align: justify !important;
126
+ }
127
+ });
@@ -0,0 +1,98 @@
1
+ /* ========================================================================== *\
2
+ Utilities -> Vertical Alignment ($utilities-vertical-alignment)
3
+ \* ========================================================================== */
4
+
5
+ //
6
+ // Vertical alignment
7
+ //
8
+ // va = vertical-align
9
+ // t = top
10
+ // b = bottom
11
+ // m = middle
12
+ //
13
+
14
+ .vat {
15
+ vertical-align: top !important;
16
+ }
17
+
18
+ .vab {
19
+ vertical-align: bottom !important;
20
+ }
21
+
22
+ .vam {
23
+ vertical-align: middle !important;
24
+ }
25
+
26
+ .screens({
27
+ .xs-vat {
28
+ vertical-align: top !important;
29
+ }
30
+
31
+ .xs-vab {
32
+ vertical-align: bottom !important;
33
+ }
34
+
35
+ .xs-vam {
36
+ vertical-align: middle !important;
37
+ }
38
+ },{
39
+ .sm-vat {
40
+ vertical-align: top !important;
41
+ }
42
+
43
+ .sm-vab {
44
+ vertical-align: bottom !important;
45
+ }
46
+
47
+ .sm-vam {
48
+ vertical-align: middle !important;
49
+ }
50
+ },{
51
+ .md-vat {
52
+ vertical-align: top !important;
53
+ }
54
+
55
+ .md-vab {
56
+ vertical-align: bottom !important;
57
+ }
58
+
59
+ .md-vam {
60
+ vertical-align: middle !important;
61
+ }
62
+ },{
63
+ .lg-vat {
64
+ vertical-align: top !important;
65
+ }
66
+
67
+ .lg-vab {
68
+ vertical-align: bottom !important;
69
+ }
70
+
71
+ .lg-vam {
72
+ vertical-align: middle !important;
73
+ }
74
+ },{
75
+ .xl-vat {
76
+ vertical-align: top !important;
77
+ }
78
+
79
+ .xl-vab {
80
+ vertical-align: bottom !important;
81
+ }
82
+
83
+ .xl-vam {
84
+ vertical-align: middle !important;
85
+ }
86
+ },{
87
+ .xxl-vat {
88
+ vertical-align: top !important;
89
+ }
90
+
91
+ .xxl-vab {
92
+ vertical-align: bottom !important;
93
+ }
94
+
95
+ .xxl-vam {
96
+ vertical-align: middle !important;
97
+ }
98
+ });
@@ -0,0 +1,43 @@
1
+ /* ========================================================================== *\
2
+ Utilities -> Visually Hidden ($utilities-visually-hidden)
3
+ \* ========================================================================== */
4
+
5
+ //
6
+ // Visually Hidden
7
+ //
8
+ // vh = visually hidden
9
+ //
10
+
11
+ /**
12
+ * Hide only visually, but have it available for screenreaders.
13
+ *
14
+ * @link http://cbrac.co/TUcUgH
15
+ */
16
+
17
+ .vh {
18
+ position: absolute;
19
+ overflow: hidden;
20
+ clip: rect(0 0 0 0);
21
+ margin: -1px;
22
+ padding: 0;
23
+ width: 1px;
24
+ height: 1px;
25
+ border: 0;
26
+ }
27
+
28
+ /**
29
+ * Extends the `.vh` class to allow the element to be focusable when navigated
30
+ * to via the keyboard.
31
+ *
32
+ * @link http://cbrac.co/RR8gO6
33
+ */
34
+
35
+ .vh.focusable:active,
36
+ .vh.focusable:focus {
37
+ position: static;
38
+ overflow: visible;
39
+ clip: auto;
40
+ margin: 0;
41
+ width: auto;
42
+ height: auto;
43
+ }
@@ -0,0 +1,1455 @@
1
+ /* ========================================================================== *\
2
+ Utilities -> Widths ($utilities-widths)
3
+ \* ========================================================================== */
4
+
5
+
6
+ /* Auto */
7
+ .width-auto {
8
+ width: auto !important;
9
+ }
10
+
11
+ /* Whole */
12
+ [class~="1/1"],
13
+ .one-whole {
14
+ width: 100% !important;
15
+ }
16
+
17
+ /* Halves */
18
+ [class~="1/2"],
19
+ .one-half,
20
+ [class~="2/4"],
21
+ .two-fourths,
22
+ [class~="3/6"],
23
+ .three-sixths,
24
+ [class~="4/8"],
25
+ .four-eighths,
26
+ [class~="5/10"],
27
+ .five-tenths,
28
+ [class~="6/12"],
29
+ .six-twelfths {
30
+ width: 50% !important;
31
+ }
32
+
33
+ /* Thirds */
34
+ [class~="1/3"],
35
+ .one-third,
36
+ [class~="2/6"],
37
+ .two-sixths,
38
+ [class~="3/9"],
39
+ .three-ninths,
40
+ [class~="4/12"],
41
+ .four-twelfths {
42
+ width: 33.3333333% !important;
43
+ }
44
+
45
+ [class~="2/3"],
46
+ .two-thirds,
47
+ [class~="4/6"],
48
+ .four-sixths,
49
+ [class~="6/9"],
50
+ .six-ninths,
51
+ [class~="8/12"],
52
+ .eight-twelfths {
53
+ width: 66.6666666% !important;
54
+ }
55
+
56
+ /* Fourths */
57
+ [class~="1/4"],
58
+ .one-fourth,
59
+ [class~="2/8"],
60
+ .two-eighths,
61
+ [class~="3/12"],
62
+ .three-twelfths {
63
+ width: 25% !important;
64
+ }
65
+
66
+ [class~="3/4"],
67
+ .three-fourths,
68
+ [class~="6/8"],
69
+ .six-eighths,
70
+ [class~="9/12"],
71
+ .nine-twelfths {
72
+ width: 75% !important;
73
+ }
74
+
75
+ /* Fifths */
76
+ [class~="1/5"],
77
+ .one-fifth,
78
+ [class~="2/10"],
79
+ .two-tenths {
80
+ width: 20% !important;
81
+ }
82
+
83
+ [class~="2/5"],
84
+ .two-fifths,
85
+ [class~="4/10"],
86
+ .four-tenths {
87
+ width: 40% !important;
88
+ }
89
+
90
+ [class~="3/5"],
91
+ .three-fifths,
92
+ [class~="6/10"],
93
+ .six-tenths {
94
+ width: 60% !important;
95
+ }
96
+
97
+ [class~="4/5"],
98
+ .four-fifths,
99
+ [class~="8/10"],
100
+ .eight-tenths {
101
+ width: 80% !important;
102
+ }
103
+
104
+ /* Sixths */
105
+ [class~="1/6"],
106
+ .one-sixth,
107
+ [class~="2/12"],
108
+ .two-twelfths {
109
+ width: 16.6666666% !important;
110
+ }
111
+
112
+ [class~="5/6"],
113
+ .five-sixths,
114
+ [class~="10/12"],
115
+ .ten-twelfths {
116
+ width: 83.3333333% !important;
117
+ }
118
+
119
+ /* Eighths */
120
+ [class~="1/8"],
121
+ .one-eighth {
122
+ width: 12.5% !important;
123
+ }
124
+
125
+ [class~="3/8"],
126
+ .three-eighths {
127
+ width: 37.5% !important;
128
+ }
129
+
130
+ [class~="5/8"],
131
+ .five-eighths {
132
+ width: 62.5% !important;
133
+ }
134
+
135
+ [class~="7/8"],
136
+ .seven-eighths {
137
+ width: 87.5% !important;
138
+ }
139
+
140
+ /* Ninths */
141
+ [class~="1/9"],
142
+ .one-ninth {
143
+ width: 11.1111111% !important;
144
+ }
145
+
146
+ [class~="2/9"],
147
+ .two-ninths {
148
+ width: 22.2222222% !important;
149
+ }
150
+
151
+ [class~="4/9"],
152
+ .four-ninths {
153
+ width: 44.4444444% !important;
154
+ }
155
+
156
+ [class~="5/9"],
157
+ .five-ninths {
158
+ width: 55.5555555% !important;
159
+ }
160
+
161
+ [class~="7/9"],
162
+ .seven-ninths {
163
+ width: 77.7777777% !important;
164
+ }
165
+
166
+ [class~="8/9"],
167
+ .eight-ninths {
168
+ width: 88.8888888% !important;
169
+ }
170
+
171
+ /* Tenths */
172
+ [class~="1/10"],
173
+ .one-tenth {
174
+ width: 10% !important;
175
+ }
176
+
177
+ [class~="3/10"],
178
+ .three-tenths {
179
+ width: 30% !important;
180
+ }
181
+
182
+ [class~="7/10"],
183
+ .seven-tenths {
184
+ width: 70% !important;
185
+ }
186
+
187
+ [class~="9/10"],
188
+ .nine-tenths {
189
+ width: 90% !important;
190
+ }
191
+
192
+ /* Twelfths */
193
+ [class~="1/12"],
194
+ .one-twelfth {
195
+ width: 8.3333333% !important;
196
+ }
197
+
198
+ [class~="5/12"],
199
+ .five-twelfths {
200
+ width: 41.6666666% !important;
201
+ }
202
+
203
+ [class~="7/12"],
204
+ .seven-twelfths {
205
+ width: 58.3333333% !important;
206
+ }
207
+
208
+ [class~="11/12"],
209
+ .eleven-twelfths {
210
+ width: 91.6666666% !important;
211
+ }
212
+
213
+ .screens({
214
+ // Auto
215
+ .xs-width-auto {
216
+ width: auto !important;
217
+ }
218
+
219
+ // Whole
220
+ [class~="xs-1/1"],
221
+ .xs-one-whole {
222
+ width: 100% !important;
223
+ }
224
+
225
+ // Halves
226
+ [class~="xs-1/2"],
227
+ .xs-one-half,
228
+ [class~="xs-2/4"],
229
+ .xs-two-fourths,
230
+ [class~="xs-3/6"],
231
+ .xs-three-sixths,
232
+ [class~="xs-4/8"],
233
+ .xs-four-eighths,
234
+ [class~="xs-5/10"],
235
+ .xs-five-tenths,
236
+ [class~="xs-6/12"],
237
+ .xs-six-twelfths {
238
+ width: 50% !important;
239
+ }
240
+
241
+ // Thirds
242
+ [class~="xs-1/3"],
243
+ .xs-one-third,
244
+ [class~="xs-2/6"],
245
+ .xs-two-sixths,
246
+ [class~="xs-3/9"],
247
+ .xs-three-ninths,
248
+ [class~="xs-4/12"],
249
+ .xs-four-twelfths {
250
+ width: 33.3333333% !important;
251
+ }
252
+
253
+ [class~="xs-2/3"],
254
+ .xs-two-thirds,
255
+ [class~="xs-4/6"],
256
+ .xs-four-sixths,
257
+ [class~="xs-6/9"],
258
+ .xs-six-ninths,
259
+ [class~="xs-8/12"],
260
+ .xs-eight-twelfths {
261
+ width: 66.6666666% !important;
262
+ }
263
+
264
+ // Fourths
265
+ [class~="xs-1/4"],
266
+ .xs-one-fourth,
267
+ [class~="xs-2/8"],
268
+ .xs-two-eighths,
269
+ [class~="xs-3/12"],
270
+ .xs-three-twelfths {
271
+ width: 25% !important;
272
+ }
273
+
274
+ [class~="xs-3/4"],
275
+ .xs-three-fourths,
276
+ [class~="xs-6/8"],
277
+ .xs-six-eighths,
278
+ [class~="xs-9/12"],
279
+ .xs-nine-twelfths {
280
+ width: 75% !important;
281
+ }
282
+
283
+ // Fifths
284
+ [class~="xs-1/5"],
285
+ .xs-one-fifth,
286
+ [class~="xs-2/10"],
287
+ .xs-two-tenths {
288
+ width: 20% !important;
289
+ }
290
+
291
+ [class~="xs-2/5"],
292
+ .xs-two-fifths,
293
+ [class~="xs-4/10"],
294
+ .xs-four-tenths {
295
+ width: 40% !important;
296
+ }
297
+
298
+ [class~="xs-3/5"],
299
+ .xs-three-fifths,
300
+ [class~="xs-6/10"],
301
+ .xs-six-tenths {
302
+ width: 60% !important;
303
+ }
304
+
305
+ [class~="xs-4/5"],
306
+ .xs-four-fifths,
307
+ [class~="xs-8/10"],
308
+ .xs-eight-tenths {
309
+ width: 80% !important;
310
+ }
311
+
312
+ // Sixths
313
+ [class~="xs-1/6"],
314
+ .xs-one-sixth,
315
+ [class~="xs-2/12"],
316
+ .xs-two-twelfths {
317
+ width: 16.6666666% !important;
318
+ }
319
+
320
+ [class~="xs-5/6"],
321
+ .xs-five-sixths,
322
+ [class~="xs-10/12"],
323
+ .xs-ten-twelfths {
324
+ width: 83.3333333% !important;
325
+ }
326
+
327
+ // Eighths
328
+ [class~="xs-1/8"],
329
+ .xs-one-eighth {
330
+ width: 12.5% !important;
331
+ }
332
+
333
+ [class~="xs-3/8"],
334
+ .xs-three-eighths {
335
+ width: 37.5% !important;
336
+ }
337
+
338
+ [class~="xs-5/8"],
339
+ .xs-five-eighths {
340
+ width: 62.5% !important;
341
+ }
342
+
343
+ [class~="xs-7/8"],
344
+ .xs-seven-eighths {
345
+ width: 87.5% !important;
346
+ }
347
+
348
+ // Ninths
349
+ [class~="xs-1/9"],
350
+ .xs-one-ninth {
351
+ width: 11.1111111% !important;
352
+ }
353
+
354
+ [class~="xs-2/9"],
355
+ .xs-two-ninths {
356
+ width: 22.2222222% !important;
357
+ }
358
+
359
+ [class~="xs-4/9"],
360
+ .xs-four-ninths {
361
+ width: 44.4444444% !important;
362
+ }
363
+
364
+ [class~="xs-5/9"],
365
+ .xs-five-ninths {
366
+ width: 55.5555555% !important;
367
+ }
368
+
369
+ [class~="xs-7/9"],
370
+ .xs-seven-ninths {
371
+ width: 77.7777777% !important;
372
+ }
373
+
374
+ [class~="xs-8/9"],
375
+ .xs-eight-ninths {
376
+ width: 88.8888888% !important;
377
+ }
378
+
379
+ // Tenths
380
+ [class~="xs-1/10"],
381
+ .xs-one-tenth {
382
+ width: 10% !important;
383
+ }
384
+
385
+ [class~="xs-3/10"],
386
+ .xs-three-tenths {
387
+ width: 30% !important;
388
+ }
389
+
390
+ [class~="xs-7/10"],
391
+ .xs-seven-tenths {
392
+ width: 70% !important;
393
+ }
394
+
395
+ [class~="xs-9/10"],
396
+ .xs-nine-tenths {
397
+ width: 90% !important;
398
+ }
399
+
400
+ // Twelfths
401
+ [class~="xs-1/12"],
402
+ .xs-one-twelfth {
403
+ width: 8.3333333% !important;
404
+ }
405
+
406
+ [class~="xs-5/12"],
407
+ .xs-five-twelfths {
408
+ width: 41.6666666% !important;
409
+ }
410
+
411
+ [class~="xs-7/12"],
412
+ .xs-seven-twelfths {
413
+ width: 58.3333333% !important;
414
+ }
415
+
416
+ [class~="xs-11/12"],
417
+ .xs-eleven-twelfths {
418
+ width: 91.6666666% !important;
419
+ }
420
+ },{
421
+ // Auto
422
+ .sm-width-auto {
423
+ width: auto !important;
424
+ }
425
+
426
+ // Whole
427
+ [class~="sm-1/1"],
428
+ .sm-one-whole {
429
+ width: 100% !important;
430
+ }
431
+
432
+ // Halves
433
+ [class~="sm-1/2"],
434
+ .sm-one-half,
435
+ [class~="sm-2/4"],
436
+ .sm-two-fourths,
437
+ [class~="sm-3/6"],
438
+ .sm-three-sixths,
439
+ [class~="sm-4/8"],
440
+ .sm-four-eighths,
441
+ [class~="sm-5/10"],
442
+ .sm-five-tenths,
443
+ [class~="sm-6/12"],
444
+ .sm-six-twelfths {
445
+ width: 50% !important;
446
+ }
447
+
448
+ // Thirds
449
+ [class~="sm-1/3"],
450
+ .sm-one-third,
451
+ [class~="sm-2/6"],
452
+ .sm-two-sixths,
453
+ [class~="sm-3/9"],
454
+ .sm-three-ninths,
455
+ [class~="sm-4/12"],
456
+ .sm-four-twelfths {
457
+ width: 33.3333333% !important;
458
+ }
459
+
460
+ [class~="sm-2/3"],
461
+ .sm-two-thirds,
462
+ [class~="sm-4/6"],
463
+ .sm-four-sixths,
464
+ [class~="sm-6/9"],
465
+ .sm-six-ninths,
466
+ [class~="sm-8/12"],
467
+ .sm-eight-twelfths {
468
+ width: 66.6666666% !important;
469
+ }
470
+
471
+ // Fourths
472
+ [class~="sm-1/4"],
473
+ .sm-one-fourth,
474
+ [class~="sm-2/8"],
475
+ .sm-two-eighths,
476
+ [class~="sm-3/12"],
477
+ .sm-three-twelfths {
478
+ width: 25% !important;
479
+ }
480
+
481
+ [class~="sm-3/4"],
482
+ .sm-three-fourths,
483
+ [class~="sm-6/8"],
484
+ .sm-six-eighths,
485
+ [class~="sm-9/12"],
486
+ .sm-nine-twelfths {
487
+ width: 75% !important;
488
+ }
489
+
490
+ // Fifths
491
+ [class~="sm-1/5"],
492
+ .sm-one-fifth,
493
+ [class~="sm-2/10"],
494
+ .sm-two-tenths {
495
+ width: 20% !important;
496
+ }
497
+
498
+ [class~="sm-2/5"],
499
+ .sm-two-fifths,
500
+ [class~="sm-4/10"],
501
+ .sm-four-tenths {
502
+ width: 40% !important;
503
+ }
504
+
505
+ [class~="sm-3/5"],
506
+ .sm-three-fifths,
507
+ [class~="sm-6/10"],
508
+ .sm-six-tenths {
509
+ width: 60% !important;
510
+ }
511
+
512
+ [class~="sm-4/5"],
513
+ .sm-four-fifths,
514
+ [class~="sm-8/10"],
515
+ .sm-eight-tenths {
516
+ width: 80% !important;
517
+ }
518
+
519
+ // Sixths
520
+ [class~="sm-1/6"],
521
+ .sm-one-sixth,
522
+ [class~="sm-2/12"],
523
+ .sm-two-twelfths {
524
+ width: 16.6666666% !important;
525
+ }
526
+
527
+ [class~="sm-5/6"],
528
+ .sm-five-sixths,
529
+ [class~="sm-10/12"],
530
+ .sm-ten-twelfths {
531
+ width: 83.3333333% !important;
532
+ }
533
+
534
+ // Eighths
535
+ [class~="sm-1/8"],
536
+ .sm-one-eighth {
537
+ width: 12.5% !important;
538
+ }
539
+
540
+ [class~="sm-3/8"],
541
+ .sm-three-eighths {
542
+ width: 37.5% !important;
543
+ }
544
+
545
+ [class~="sm-5/8"],
546
+ .sm-five-eighths {
547
+ width: 62.5% !important;
548
+ }
549
+
550
+ [class~="sm-7/8"],
551
+ .sm-seven-eighths {
552
+ width: 87.5% !important;
553
+ }
554
+
555
+ // Ninths
556
+ [class~="sm-1/9"],
557
+ .sm-one-ninth {
558
+ width: 11.1111111% !important;
559
+ }
560
+
561
+ [class~="sm-2/9"],
562
+ .sm-two-ninths {
563
+ width: 22.2222222% !important;
564
+ }
565
+
566
+ [class~="sm-4/9"],
567
+ .sm-four-ninths {
568
+ width: 44.4444444% !important;
569
+ }
570
+
571
+ [class~="sm-5/9"],
572
+ .sm-five-ninths {
573
+ width: 55.5555555% !important;
574
+ }
575
+
576
+ [class~="sm-7/9"],
577
+ .sm-seven-ninths {
578
+ width: 77.7777777% !important;
579
+ }
580
+
581
+ [class~="sm-8/9"],
582
+ .sm-eight-ninths {
583
+ width: 88.8888888% !important;
584
+ }
585
+
586
+ // Tenths
587
+ [class~="sm-1/10"],
588
+ .sm-one-tenth {
589
+ width: 10% !important;
590
+ }
591
+
592
+ [class~="sm-3/10"],
593
+ .sm-three-tenths {
594
+ width: 30% !important;
595
+ }
596
+
597
+ [class~="sm-7/10"],
598
+ .sm-seven-tenths {
599
+ width: 70% !important;
600
+ }
601
+
602
+ [class~="sm-9/10"],
603
+ .sm-nine-tenths {
604
+ width: 90% !important;
605
+ }
606
+
607
+ // Twelfths
608
+ [class~="sm-1/12"],
609
+ .sm-one-twelfth {
610
+ width: 8.3333333% !important;
611
+ }
612
+
613
+ [class~="sm-5/12"],
614
+ .sm-five-twelfths {
615
+ width: 41.6666666% !important;
616
+ }
617
+
618
+ [class~="sm-7/12"],
619
+ .sm-seven-twelfths {
620
+ width: 58.3333333% !important;
621
+ }
622
+
623
+ [class~="sm-11/12"],
624
+ .sm-eleven-twelfths {
625
+ width: 91.6666666% !important;
626
+ }
627
+ },{
628
+ // Auto
629
+ .md-width-auto {
630
+ width: auto !important;
631
+ }
632
+
633
+ // Whole
634
+ [class~="md-1/1"],
635
+ .md-one-whole {
636
+ width: 100% !important;
637
+ }
638
+
639
+ // Halves
640
+ [class~="md-1/2"],
641
+ .md-one-half,
642
+ [class~="md-2/4"],
643
+ .md-two-fourths,
644
+ [class~="md-3/6"],
645
+ .md-three-sixths,
646
+ [class~="md-4/8"],
647
+ .md-four-eighths,
648
+ [class~="md-5/10"],
649
+ .md-five-tenths,
650
+ [class~="md-6/12"],
651
+ .md-six-twelfths {
652
+ width: 50% !important;
653
+ }
654
+
655
+ // Thirds
656
+ [class~="md-1/3"],
657
+ .md-one-third,
658
+ [class~="md-2/6"],
659
+ .md-two-sixths,
660
+ [class~="md-3/9"],
661
+ .md-three-ninths,
662
+ [class~="md-4/12"],
663
+ .md-four-twelfths {
664
+ width: 33.3333333% !important;
665
+ }
666
+
667
+ [class~="md-2/3"],
668
+ .md-two-thirds,
669
+ [class~="md-4/6"],
670
+ .md-four-sixths,
671
+ [class~="md-6/9"],
672
+ .md-six-ninths,
673
+ [class~="md-8/12"],
674
+ .md-eight-twelfths {
675
+ width: 66.6666666% !important;
676
+ }
677
+
678
+ // Fourths
679
+ [class~="md-1/4"],
680
+ .md-one-fourth,
681
+ [class~="md-2/8"],
682
+ .md-two-eighths,
683
+ [class~="md-3/12"],
684
+ .md-three-twelfths {
685
+ width: 25% !important;
686
+ }
687
+
688
+ [class~="md-3/4"],
689
+ .md-three-fourths,
690
+ [class~="md-6/8"],
691
+ .md-six-eighths,
692
+ [class~="md-9/12"],
693
+ .md-nine-twelfths {
694
+ width: 75% !important;
695
+ }
696
+
697
+ // Fifths
698
+ [class~="md-1/5"],
699
+ .md-one-fifth,
700
+ [class~="md-2/10"],
701
+ .md-two-tenths {
702
+ width: 20% !important;
703
+ }
704
+
705
+ [class~="md-2/5"],
706
+ .md-two-fifths,
707
+ [class~="md-4/10"],
708
+ .md-four-tenths {
709
+ width: 40% !important;
710
+ }
711
+
712
+ [class~="md-3/5"],
713
+ .md-three-fifths,
714
+ [class~="md-6/10"],
715
+ .md-six-tenths {
716
+ width: 60% !important;
717
+ }
718
+
719
+ [class~="md-4/5"],
720
+ .md-four-fifths,
721
+ [class~="md-8/10"],
722
+ .md-eight-tenths {
723
+ width: 80% !important;
724
+ }
725
+
726
+ // Sixths
727
+ [class~="md-1/6"],
728
+ .md-one-sixth,
729
+ [class~="md-2/12"],
730
+ .md-two-twelfths {
731
+ width: 16.6666666% !important;
732
+ }
733
+
734
+ [class~="md-5/6"],
735
+ .md-five-sixths,
736
+ [class~="md-10/12"],
737
+ .md-ten-twelfths {
738
+ width: 83.3333333% !important;
739
+ }
740
+
741
+ // Eighths
742
+ [class~="md-1/8"],
743
+ .md-one-eighth {
744
+ width: 12.5% !important;
745
+ }
746
+
747
+ [class~="md-3/8"],
748
+ .md-three-eighths {
749
+ width: 37.5% !important;
750
+ }
751
+
752
+ [class~="md-5/8"],
753
+ .md-five-eighths {
754
+ width: 62.5% !important;
755
+ }
756
+
757
+ [class~="md-7/8"],
758
+ .md-seven-eighths {
759
+ width: 87.5% !important;
760
+ }
761
+
762
+ // Ninths
763
+ [class~="md-1/9"],
764
+ .md-one-ninth {
765
+ width: 11.1111111% !important;
766
+ }
767
+
768
+ [class~="md-2/9"],
769
+ .md-two-ninths {
770
+ width: 22.2222222% !important;
771
+ }
772
+
773
+ [class~="md-4/9"],
774
+ .md-four-ninths {
775
+ width: 44.4444444% !important;
776
+ }
777
+
778
+ [class~="md-5/9"],
779
+ .md-five-ninths {
780
+ width: 55.5555555% !important;
781
+ }
782
+
783
+ [class~="md-7/9"],
784
+ .md-seven-ninths {
785
+ width: 77.7777777% !important;
786
+ }
787
+
788
+ [class~="md-8/9"],
789
+ .md-eight-ninths {
790
+ width: 88.8888888% !important;
791
+ }
792
+
793
+ // Tenths
794
+ [class~="md-1/10"],
795
+ .md-one-tenth {
796
+ width: 10% !important;
797
+ }
798
+
799
+ [class~="md-3/10"],
800
+ .md-three-tenths {
801
+ width: 30% !important;
802
+ }
803
+
804
+ [class~="md-7/10"],
805
+ .md-seven-tenths {
806
+ width: 70% !important;
807
+ }
808
+
809
+ [class~="md-9/10"],
810
+ .md-nine-tenths {
811
+ width: 90% !important;
812
+ }
813
+
814
+ // Twelfths
815
+ [class~="md-1/12"],
816
+ .md-one-twelfth {
817
+ width: 8.3333333% !important;
818
+ }
819
+
820
+ [class~="md-5/12"],
821
+ .md-five-twelfths {
822
+ width: 41.6666666% !important;
823
+ }
824
+
825
+ [class~="md-7/12"],
826
+ .md-seven-twelfths {
827
+ width: 58.3333333% !important;
828
+ }
829
+
830
+ [class~="md-11/12"],
831
+ .md-eleven-twelfths {
832
+ width: 91.6666666% !important;
833
+ }
834
+ },{
835
+ // Auto
836
+ .lg-width-auto {
837
+ width: auto !important;
838
+ }
839
+
840
+ // Whole
841
+ [class~="lg-1/1"],
842
+ .lg-one-whole {
843
+ width: 100% !important;
844
+ }
845
+
846
+ // Halves
847
+ [class~="lg-1/2"],
848
+ .lg-one-half,
849
+ [class~="lg-2/4"],
850
+ .lg-two-fourths,
851
+ [class~="lg-3/6"],
852
+ .lg-three-sixths,
853
+ [class~="lg-4/8"],
854
+ .lg-four-eighths,
855
+ [class~="lg-5/10"],
856
+ .lg-five-tenths,
857
+ [class~="lg-6/12"],
858
+ .lg-six-twelfths {
859
+ width: 50% !important;
860
+ }
861
+
862
+ // Thirds
863
+ [class~="lg-1/3"],
864
+ .lg-one-third,
865
+ [class~="lg-2/6"],
866
+ .lg-two-sixths,
867
+ [class~="lg-3/9"],
868
+ .lg-three-ninths,
869
+ [class~="lg-4/12"],
870
+ .lg-four-twelfths {
871
+ width: 33.3333333% !important;
872
+ }
873
+
874
+ [class~="lg-2/3"],
875
+ .lg-two-thirds,
876
+ [class~="lg-4/6"],
877
+ .lg-four-sixths,
878
+ [class~="lg-6/9"],
879
+ .lg-six-ninths,
880
+ [class~="lg-8/12"],
881
+ .lg-eight-twelfths {
882
+ width: 66.6666666% !important;
883
+ }
884
+
885
+ // Fourths
886
+ [class~="lg-1/4"],
887
+ .lg-one-fourth,
888
+ [class~="lg-2/8"],
889
+ .lg-two-eighths,
890
+ [class~="lg-3/12"],
891
+ .lg-three-twelfths {
892
+ width: 25% !important;
893
+ }
894
+
895
+ [class~="lg-3/4"],
896
+ .lg-three-fourths,
897
+ [class~="lg-6/8"],
898
+ .lg-six-eighths,
899
+ [class~="lg-9/12"],
900
+ .lg-nine-twelfths {
901
+ width: 75% !important;
902
+ }
903
+
904
+ // Fifths
905
+ [class~="lg-1/5"],
906
+ .lg-one-fifth,
907
+ [class~="lg-2/10"],
908
+ .lg-two-tenths {
909
+ width: 20% !important;
910
+ }
911
+
912
+ [class~="lg-2/5"],
913
+ .lg-two-fifths,
914
+ [class~="lg-4/10"],
915
+ .lg-four-tenths {
916
+ width: 40% !important;
917
+ }
918
+
919
+ [class~="lg-3/5"],
920
+ .lg-three-fifths,
921
+ [class~="lg-6/10"],
922
+ .lg-six-tenths {
923
+ width: 60% !important;
924
+ }
925
+
926
+ [class~="lg-4/5"],
927
+ .lg-four-fifths,
928
+ [class~="lg-8/10"],
929
+ .lg-eight-tenths {
930
+ width: 80% !important;
931
+ }
932
+
933
+ // Sixths
934
+ [class~="lg-1/6"],
935
+ .lg-one-sixth,
936
+ [class~="lg-2/12"],
937
+ .lg-two-twelfths {
938
+ width: 16.6666666% !important;
939
+ }
940
+
941
+ [class~="lg-5/6"],
942
+ .lg-five-sixths,
943
+ [class~="lg-10/12"],
944
+ .lg-ten-twelfths {
945
+ width: 83.3333333% !important;
946
+ }
947
+
948
+ // Eighths
949
+ [class~="lg-1/8"],
950
+ .lg-one-eighth {
951
+ width: 12.5% !important;
952
+ }
953
+
954
+ [class~="lg-3/8"],
955
+ .lg-three-eighths {
956
+ width: 37.5% !important;
957
+ }
958
+
959
+ [class~="lg-5/8"],
960
+ .lg-five-eighths {
961
+ width: 62.5% !important;
962
+ }
963
+
964
+ [class~="lg-7/8"],
965
+ .lg-seven-eighths {
966
+ width: 87.5% !important;
967
+ }
968
+
969
+ // Ninths
970
+ [class~="lg-1/9"],
971
+ .lg-one-ninth {
972
+ width: 11.1111111% !important;
973
+ }
974
+
975
+ [class~="lg-2/9"],
976
+ .lg-two-ninths {
977
+ width: 22.2222222% !important;
978
+ }
979
+
980
+ [class~="lg-4/9"],
981
+ .lg-four-ninths {
982
+ width: 44.4444444% !important;
983
+ }
984
+
985
+ [class~="lg-5/9"],
986
+ .lg-five-ninths {
987
+ width: 55.5555555% !important;
988
+ }
989
+
990
+ [class~="lg-7/9"],
991
+ .lg-seven-ninths {
992
+ width: 77.7777777% !important;
993
+ }
994
+
995
+ [class~="lg-8/9"],
996
+ .lg-eight-ninths {
997
+ width: 88.8888888% !important;
998
+ }
999
+
1000
+ // Tenths
1001
+ [class~="lg-1/10"],
1002
+ .lg-one-tenth {
1003
+ width: 10% !important;
1004
+ }
1005
+
1006
+ [class~="lg-3/10"],
1007
+ .lg-three-tenths {
1008
+ width: 30% !important;
1009
+ }
1010
+
1011
+ [class~="lg-7/10"],
1012
+ .lg-seven-tenths {
1013
+ width: 70% !important;
1014
+ }
1015
+
1016
+ [class~="lg-9/10"],
1017
+ .lg-nine-tenths {
1018
+ width: 90% !important;
1019
+ }
1020
+
1021
+ // Twelfths
1022
+ [class~="lg-1/12"],
1023
+ .lg-one-twelfth {
1024
+ width: 8.3333333% !important;
1025
+ }
1026
+
1027
+ [class~="lg-5/12"],
1028
+ .lg-five-twelfths {
1029
+ width: 41.6666666% !important;
1030
+ }
1031
+
1032
+ [class~="lg-7/12"],
1033
+ .lg-seven-twelfths {
1034
+ width: 58.3333333% !important;
1035
+ }
1036
+
1037
+ [class~="lg-11/12"],
1038
+ .lg-eleven-twelfths {
1039
+ width: 91.6666666% !important;
1040
+ }
1041
+ },{
1042
+ // Auto
1043
+ .xl-width-auto {
1044
+ width: auto !important;
1045
+ }
1046
+
1047
+ // Whole
1048
+ [class~="xl-1/1"],
1049
+ .xl-one-whole {
1050
+ width: 100% !important;
1051
+ }
1052
+
1053
+ // Halves
1054
+ [class~="xl-1/2"],
1055
+ .xl-one-half,
1056
+ [class~="xl-2/4"],
1057
+ .xl-two-fourths,
1058
+ [class~="xl-3/6"],
1059
+ .xl-three-sixths,
1060
+ [class~="xl-4/8"],
1061
+ .xl-four-eighths,
1062
+ [class~="xl-5/10"],
1063
+ .xl-five-tenths,
1064
+ [class~="xl-6/12"],
1065
+ .xl-six-twelfths {
1066
+ width: 50% !important;
1067
+ }
1068
+
1069
+ // Thirds
1070
+ [class~="xl-1/3"],
1071
+ .xl-one-third,
1072
+ [class~="xl-2/6"],
1073
+ .xl-two-sixths,
1074
+ [class~="xl-3/9"],
1075
+ .xl-three-ninths,
1076
+ [class~="xl-4/12"],
1077
+ .xl-four-twelfths {
1078
+ width: 33.3333333% !important;
1079
+ }
1080
+
1081
+ [class~="xl-2/3"],
1082
+ .xl-two-thirds,
1083
+ [class~="xl-4/6"],
1084
+ .xl-four-sixths,
1085
+ [class~="xl-6/9"],
1086
+ .xl-six-ninths,
1087
+ [class~="xl-8/12"],
1088
+ .xl-eight-twelfths {
1089
+ width: 66.6666666% !important;
1090
+ }
1091
+
1092
+ // Fourths
1093
+ [class~="xl-1/4"],
1094
+ .xl-one-fourth,
1095
+ [class~="xl-2/8"],
1096
+ .xl-two-eighths,
1097
+ [class~="xl-3/12"],
1098
+ .xl-three-twelfths {
1099
+ width: 25% !important;
1100
+ }
1101
+
1102
+ [class~="xl-3/4"],
1103
+ .xl-three-fourths,
1104
+ [class~="xl-6/8"],
1105
+ .xl-six-eighths,
1106
+ [class~="xl-9/12"],
1107
+ .xl-nine-twelfths {
1108
+ width: 75% !important;
1109
+ }
1110
+
1111
+ // Fifths
1112
+ [class~="xl-1/5"],
1113
+ .xl-one-fifth,
1114
+ [class~="xl-2/10"],
1115
+ .xl-two-tenths {
1116
+ width: 20% !important;
1117
+ }
1118
+
1119
+ [class~="xl-2/5"],
1120
+ .xl-two-fifths,
1121
+ [class~="xl-4/10"],
1122
+ .xl-four-tenths {
1123
+ width: 40% !important;
1124
+ }
1125
+
1126
+ [class~="xl-3/5"],
1127
+ .xl-three-fifths,
1128
+ [class~="xl-6/10"],
1129
+ .xl-six-tenths {
1130
+ width: 60% !important;
1131
+ }
1132
+
1133
+ [class~="xl-4/5"],
1134
+ .xl-four-fifths,
1135
+ [class~="xl-8/10"],
1136
+ .xl-eight-tenths {
1137
+ width: 80% !important;
1138
+ }
1139
+
1140
+ // Sixths
1141
+ [class~="xl-1/6"],
1142
+ .xl-one-sixth,
1143
+ [class~="xl-2/12"],
1144
+ .xl-two-twelfths {
1145
+ width: 16.6666666% !important;
1146
+ }
1147
+
1148
+ [class~="xl-5/6"],
1149
+ .xl-five-sixths,
1150
+ [class~="xl-10/12"],
1151
+ .xl-ten-twelfths {
1152
+ width: 83.3333333% !important;
1153
+ }
1154
+
1155
+ // Eighths
1156
+ [class~="xl-1/8"],
1157
+ .xl-one-eighth {
1158
+ width: 12.5% !important;
1159
+ }
1160
+
1161
+ [class~="xl-3/8"],
1162
+ .xl-three-eighths {
1163
+ width: 37.5% !important;
1164
+ }
1165
+
1166
+ [class~="xl-5/8"],
1167
+ .xl-five-eighths {
1168
+ width: 62.5% !important;
1169
+ }
1170
+
1171
+ [class~="xl-7/8"],
1172
+ .xl-seven-eighths {
1173
+ width: 87.5% !important;
1174
+ }
1175
+
1176
+ // Ninths
1177
+ [class~="xl-1/9"],
1178
+ .xl-one-ninth {
1179
+ width: 11.1111111% !important;
1180
+ }
1181
+
1182
+ [class~="xl-2/9"],
1183
+ .xl-two-ninths {
1184
+ width: 22.2222222% !important;
1185
+ }
1186
+
1187
+ [class~="xl-4/9"],
1188
+ .xl-four-ninths {
1189
+ width: 44.4444444% !important;
1190
+ }
1191
+
1192
+ [class~="xl-5/9"],
1193
+ .xl-five-ninths {
1194
+ width: 55.5555555% !important;
1195
+ }
1196
+
1197
+ [class~="xl-7/9"],
1198
+ .xl-seven-ninths {
1199
+ width: 77.7777777% !important;
1200
+ }
1201
+
1202
+ [class~="xl-8/9"],
1203
+ .xl-eight-ninths {
1204
+ width: 88.8888888% !important;
1205
+ }
1206
+
1207
+ // Tenths
1208
+ [class~="xl-1/10"],
1209
+ .xl-one-tenth {
1210
+ width: 10% !important;
1211
+ }
1212
+
1213
+ [class~="xl-3/10"],
1214
+ .xl-three-tenths {
1215
+ width: 30% !important;
1216
+ }
1217
+
1218
+ [class~="xl-7/10"],
1219
+ .xl-seven-tenths {
1220
+ width: 70% !important;
1221
+ }
1222
+
1223
+ [class~="xl-9/10"],
1224
+ .xl-nine-tenths {
1225
+ width: 90% !important;
1226
+ }
1227
+
1228
+ // Twelfths
1229
+ [class~="xl-1/12"],
1230
+ .xl-one-twelfth {
1231
+ width: 8.3333333% !important;
1232
+ }
1233
+
1234
+ [class~="xl-5/12"],
1235
+ .xl-five-twelfths {
1236
+ width: 41.6666666% !important;
1237
+ }
1238
+
1239
+ [class~="xl-7/12"],
1240
+ .xl-seven-twelfths {
1241
+ width: 58.3333333% !important;
1242
+ }
1243
+
1244
+ [class~="xl-11/12"],
1245
+ .xl-eleven-twelfths {
1246
+ width: 91.6666666% !important;
1247
+ }
1248
+ },{
1249
+ // Auto
1250
+ .xxl-width-auto {
1251
+ width: auto !important;
1252
+ }
1253
+
1254
+ // Whole
1255
+ [class~="xxl-1/1"],
1256
+ .xxl-one-whole {
1257
+ width: 100% !important;
1258
+ }
1259
+
1260
+ // Halves
1261
+ [class~="xxl-1/2"],
1262
+ .xxl-one-half,
1263
+ [class~="xxl-2/4"],
1264
+ .xxl-two-fourths,
1265
+ [class~="xxl-3/6"],
1266
+ .xxl-three-sixths,
1267
+ [class~="xxl-4/8"],
1268
+ .xxl-four-eighths,
1269
+ [class~="xxl-5/10"],
1270
+ .xxl-five-tenths,
1271
+ [class~="xxl-6/12"],
1272
+ .xxl-six-twelfths {
1273
+ width: 50% !important;
1274
+ }
1275
+
1276
+ // Thirds
1277
+ [class~="xxl-1/3"],
1278
+ .xxl-one-third,
1279
+ [class~="xxl-2/6"],
1280
+ .xxl-two-sixths,
1281
+ [class~="xxl-3/9"],
1282
+ .xxl-three-ninths,
1283
+ [class~="xxl-4/12"],
1284
+ .xxl-four-twelfths {
1285
+ width: 33.3333333% !important;
1286
+ }
1287
+
1288
+ [class~="xxl-2/3"],
1289
+ .xxl-two-thirds,
1290
+ [class~="xxl-4/6"],
1291
+ .xxl-four-sixths,
1292
+ [class~="xxl-6/9"],
1293
+ .xxl-six-ninths,
1294
+ [class~="xxl-8/12"],
1295
+ .xxl-eight-twelfths {
1296
+ width: 66.6666666% !important;
1297
+ }
1298
+
1299
+ // Fourths
1300
+ [class~="xxl-1/4"],
1301
+ .xxl-one-fourth,
1302
+ [class~="xxl-2/8"],
1303
+ .xxl-two-eighths,
1304
+ [class~="xxl-3/12"],
1305
+ .xxl-three-twelfths {
1306
+ width: 25% !important;
1307
+ }
1308
+
1309
+ [class~="xxl-3/4"],
1310
+ .xxl-three-fourths,
1311
+ [class~="xxl-6/8"],
1312
+ .xxl-six-eighths,
1313
+ [class~="xxl-9/12"],
1314
+ .xxl-nine-twelfths {
1315
+ width: 75% !important;
1316
+ }
1317
+
1318
+ // Fifths
1319
+ [class~="xxl-1/5"],
1320
+ .xxl-one-fifth,
1321
+ [class~="xxl-2/10"],
1322
+ .xxl-two-tenths {
1323
+ width: 20% !important;
1324
+ }
1325
+
1326
+ [class~="xxl-2/5"],
1327
+ .xxl-two-fifths,
1328
+ [class~="xxl-4/10"],
1329
+ .xxl-four-tenths {
1330
+ width: 40% !important;
1331
+ }
1332
+
1333
+ [class~="xxl-3/5"],
1334
+ .xxl-three-fifths,
1335
+ [class~="xxl-6/10"],
1336
+ .xxl-six-tenths {
1337
+ width: 60% !important;
1338
+ }
1339
+
1340
+ [class~="xxl-4/5"],
1341
+ .xxl-four-fifths,
1342
+ [class~="xxl-8/10"],
1343
+ .xxl-eight-tenths {
1344
+ width: 80% !important;
1345
+ }
1346
+
1347
+ // Sixths
1348
+ [class~="xxl-1/6"],
1349
+ .xxl-one-sixth,
1350
+ [class~="xxl-2/12"],
1351
+ .xxl-two-twelfths {
1352
+ width: 16.6666666% !important;
1353
+ }
1354
+
1355
+ [class~="xxl-5/6"],
1356
+ .xxl-five-sixths,
1357
+ [class~="xxl-10/12"],
1358
+ .xxl-ten-twelfths {
1359
+ width: 83.3333333% !important;
1360
+ }
1361
+
1362
+ // Eighths
1363
+ [class~="xxl-1/8"],
1364
+ .xxl-one-eighth {
1365
+ width: 12.5% !important;
1366
+ }
1367
+
1368
+ [class~="xxl-3/8"],
1369
+ .xxl-three-eighths {
1370
+ width: 37.5% !important;
1371
+ }
1372
+
1373
+ [class~="xxl-5/8"],
1374
+ .xxl-five-eighths {
1375
+ width: 62.5% !important;
1376
+ }
1377
+
1378
+ [class~="xxl-7/8"],
1379
+ .xxl-seven-eighths {
1380
+ width: 87.5% !important;
1381
+ }
1382
+
1383
+ // Ninths
1384
+ [class~="xxl-1/9"],
1385
+ .xxl-one-ninth {
1386
+ width: 11.1111111% !important;
1387
+ }
1388
+
1389
+ [class~="xxl-2/9"],
1390
+ .xxl-two-ninths {
1391
+ width: 22.2222222% !important;
1392
+ }
1393
+
1394
+ [class~="xxl-4/9"],
1395
+ .xxl-four-ninths {
1396
+ width: 44.4444444% !important;
1397
+ }
1398
+
1399
+ [class~="xxl-5/9"],
1400
+ .xxl-five-ninths {
1401
+ width: 55.5555555% !important;
1402
+ }
1403
+
1404
+ [class~="xxl-7/9"],
1405
+ .xxl-seven-ninths {
1406
+ width: 77.7777777% !important;
1407
+ }
1408
+
1409
+ [class~="xxl-8/9"],
1410
+ .xxl-eight-ninths {
1411
+ width: 88.8888888% !important;
1412
+ }
1413
+
1414
+ // Tenths
1415
+ [class~="xxl-1/10"],
1416
+ .xxl-one-tenth {
1417
+ width: 10% !important;
1418
+ }
1419
+
1420
+ [class~="xxl-3/10"],
1421
+ .xxl-three-tenths {
1422
+ width: 30% !important;
1423
+ }
1424
+
1425
+ [class~="xxl-7/10"],
1426
+ .xxl-seven-tenths {
1427
+ width: 70% !important;
1428
+ }
1429
+
1430
+ [class~="xxl-9/10"],
1431
+ .xxl-nine-tenths {
1432
+ width: 90% !important;
1433
+ }
1434
+
1435
+ // Twelfths
1436
+ [class~="xxl-1/12"],
1437
+ .xxl-one-twelfth {
1438
+ width: 8.3333333% !important;
1439
+ }
1440
+
1441
+ [class~="xxl-5/12"],
1442
+ .xxl-five-twelfths {
1443
+ width: 41.6666666% !important;
1444
+ }
1445
+
1446
+ [class~="xxl-7/12"],
1447
+ .xxl-seven-twelfths {
1448
+ width: 58.3333333% !important;
1449
+ }
1450
+
1451
+ [class~="xxl-11/12"],
1452
+ .xxl-eleven-twelfths {
1453
+ width: 91.6666666% !important;
1454
+ }
1455
+ });