flexbox-rails 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 379de3f19a9fcff7b6222cca45da739e5404a41415d04084394ad02368431ea6
4
- data.tar.gz: b3509d6c390285117fe5fbd7b276719e80378d47f3817d164625635d0c3e3f61
3
+ metadata.gz: a9ca48583d84baa8b615490019c5d9e10d1c95481c0a371e9303261e9f1196fb
4
+ data.tar.gz: 998848cf568e733c35c09f40ac76594fccb709850fc77e271ca4467197482197
5
5
  SHA512:
6
- metadata.gz: 47a07b234952b92b5401bfaa79d788b03570396d6aaf157733beb60a51cfa79c4d19d1482e5016e96b17482073d3e3a66d66840ef24120bfa4035034f3eb84d5
7
- data.tar.gz: ddb73e21572a08d5ce72258cdbcc3d4ba982558d2649c418026bb7138d2ec2d4a3e4c242646db250005edfa9fbbac303150048251b7852b836a2a98c2d0d48a7
6
+ metadata.gz: 847e86767372a16e37582944833917f92c498c2d279d4f1352a721ecbc873480f0cc1097fe074e691f645cbcbf135d1785aa4b8492385abf44858ac1149c12da
7
+ data.tar.gz: 3a26686d916e905e6a875c8691db04ec9178bd24fe59f0e23ffa342f3b493f394f83040e131e8f43bac3c79298d6d730c5b7095f0944441d47e071b5713e3156
@@ -1,3 +1,3 @@
1
1
  module Flexbox
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
@@ -0,0 +1,501 @@
1
+ /* height 1 to 100% h1 ... h100 */
2
+ .h1 {
3
+ height: 1% !important;
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ .h2 {
8
+ height: 2% !important;
9
+ box-sizing: border-box;
10
+ }
11
+
12
+ .h3 {
13
+ height: 3% !important;
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ .h4 {
18
+ height: 4% !important;
19
+ box-sizing: border-box;
20
+ }
21
+
22
+ .h5 {
23
+ height: 5% !important;
24
+ box-sizing: border-box;
25
+ }
26
+
27
+ .h6 {
28
+ height: 6% !important;
29
+ box-sizing: border-box;
30
+ }
31
+
32
+ .h7 {
33
+ height: 7% !important;
34
+ box-sizing: border-box;
35
+ }
36
+
37
+ .h8 {
38
+ height: 8% !important;
39
+ box-sizing: border-box;
40
+ }
41
+
42
+ .h9 {
43
+ height: 9% !important;
44
+ box-sizing: border-box;
45
+ }
46
+
47
+ .h10 {
48
+ height: 10% !important;
49
+ box-sizing: border-box;
50
+ }
51
+
52
+ .h11 {
53
+ height: 11% !important;
54
+ box-sizing: border-box;
55
+ }
56
+
57
+ .h12 {
58
+ height: 12% !important;
59
+ box-sizing: border-box;
60
+ }
61
+
62
+ .h13 {
63
+ height: 13% !important;
64
+ box-sizing: border-box;
65
+ }
66
+
67
+ .h14 {
68
+ height: 14% !important;
69
+ box-sizing: border-box;
70
+ }
71
+
72
+ .h15 {
73
+ height: 15% !important;
74
+ box-sizing: border-box;
75
+ }
76
+
77
+ .h16 {
78
+ height: 16% !important;
79
+ box-sizing: border-box;
80
+ }
81
+
82
+ .h17 {
83
+ height: 17% !important;
84
+ box-sizing: border-box;
85
+ }
86
+
87
+ .h18 {
88
+ height: 18% !important;
89
+ box-sizing: border-box;
90
+ }
91
+
92
+ .h19 {
93
+ height: 19% !important;
94
+ box-sizing: border-box;
95
+ }
96
+
97
+ .h20 {
98
+ height: 20% !important;
99
+ box-sizing: border-box;
100
+ }
101
+
102
+ .h21 {
103
+ height: 21% !important;
104
+ box-sizing: border-box;
105
+ }
106
+
107
+ .h22 {
108
+ height: 22% !important;
109
+ box-sizing: border-box;
110
+ }
111
+
112
+ .h23 {
113
+ height: 23% !important;
114
+ box-sizing: border-box;
115
+ }
116
+
117
+ .h24 {
118
+ height: 24% !important;
119
+ box-sizing: border-box;
120
+ }
121
+
122
+ .h25 {
123
+ height: 25% !important;
124
+ box-sizing: border-box;
125
+ }
126
+
127
+ .h26 {
128
+ height: 26% !important;
129
+ box-sizing: border-box;
130
+ }
131
+
132
+ .h27 {
133
+ height: 27% !important;
134
+ box-sizing: border-box;
135
+ }
136
+
137
+ .h28 {
138
+ height: 28% !important;
139
+ box-sizing: border-box;
140
+ }
141
+
142
+ .h29 {
143
+ height: 29% !important;
144
+ box-sizing: border-box;
145
+ }
146
+
147
+ .h30 {
148
+ height: 30% !important;
149
+ box-sizing: border-box;
150
+ }
151
+
152
+ .h31 {
153
+ height: 31% !important;
154
+ box-sizing: border-box;
155
+ }
156
+
157
+ .h32 {
158
+ height: 32% !important;
159
+ box-sizing: border-box;
160
+ }
161
+
162
+ .h33 {
163
+ height: 33% !important;
164
+ box-sizing: border-box;
165
+ }
166
+
167
+ .h34 {
168
+ height: 34% !important;
169
+ box-sizing: border-box;
170
+ }
171
+
172
+ .h35 {
173
+ height: 35% !important;
174
+ box-sizing: border-box;
175
+ }
176
+
177
+ .h36 {
178
+ height: 36% !important;
179
+ box-sizing: border-box;
180
+ }
181
+
182
+ .h37 {
183
+ height: 37% !important;
184
+ box-sizing: border-box;
185
+ }
186
+
187
+ .h38 {
188
+ height: 38% !important;
189
+ box-sizing: border-box;
190
+ }
191
+
192
+ .h39 {
193
+ height: 39% !important;
194
+ box-sizing: border-box;
195
+ }
196
+
197
+ .h40 {
198
+ height: 40% !important;
199
+ box-sizing: border-box;
200
+ }
201
+
202
+ .h41 {
203
+ height: 41% !important;
204
+ box-sizing: border-box;
205
+ }
206
+
207
+ .h42 {
208
+ height: 42% !important;
209
+ box-sizing: border-box;
210
+ }
211
+
212
+ .h43 {
213
+ height: 43% !important;
214
+ box-sizing: border-box;
215
+ }
216
+
217
+ .h44 {
218
+ height: 44% !important;
219
+ box-sizing: border-box;
220
+ }
221
+
222
+ .h45 {
223
+ height: 45% !important;
224
+ box-sizing: border-box;
225
+ }
226
+
227
+ .h46 {
228
+ height: 46% !important;
229
+ box-sizing: border-box;
230
+ }
231
+
232
+ .h47 {
233
+ height: 47% !important;
234
+ box-sizing: border-box;
235
+ }
236
+
237
+ .h48 {
238
+ height: 48% !important;
239
+ box-sizing: border-box;
240
+ }
241
+
242
+ .h49 {
243
+ height: 49% !important;
244
+ box-sizing: border-box;
245
+ }
246
+
247
+ .h50 {
248
+ height: 50% !important;
249
+ box-sizing: border-box;
250
+ }
251
+
252
+ .h51 {
253
+ height: 51% !important;
254
+ box-sizing: border-box;
255
+ }
256
+
257
+ .h52 {
258
+ height: 52% !important;
259
+ box-sizing: border-box;
260
+ }
261
+
262
+ .h53 {
263
+ height: 53% !important;
264
+ box-sizing: border-box;
265
+ }
266
+
267
+ .h54 {
268
+ height: 54% !important;
269
+ box-sizing: border-box;
270
+ }
271
+
272
+ .h55 {
273
+ height: 55% !important;
274
+ box-sizing: border-box;
275
+ }
276
+
277
+ .h56 {
278
+ height: 56% !important;
279
+ box-sizing: border-box;
280
+ }
281
+
282
+ .h57 {
283
+ height: 57% !important;
284
+ box-sizing: border-box;
285
+ }
286
+
287
+ .h58 {
288
+ height: 58% !important;
289
+ box-sizing: border-box;
290
+ }
291
+
292
+ .h59 {
293
+ height: 59% !important;
294
+ box-sizing: border-box;
295
+ }
296
+
297
+ .h60 {
298
+ height: 60% !important;
299
+ box-sizing: border-box;
300
+ }
301
+
302
+ .h61 {
303
+ height: 61% !important;
304
+ box-sizing: border-box;
305
+ }
306
+
307
+ .h62 {
308
+ height: 62% !important;
309
+ box-sizing: border-box;
310
+ }
311
+
312
+ .h63 {
313
+ height: 63% !important;
314
+ box-sizing: border-box;
315
+ }
316
+
317
+ .h64 {
318
+ height: 64% !important;
319
+ box-sizing: border-box;
320
+ }
321
+
322
+ .h65 {
323
+ height: 65% !important;
324
+ box-sizing: border-box;
325
+ }
326
+
327
+ .h66 {
328
+ height: 66% !important;
329
+ box-sizing: border-box;
330
+ }
331
+
332
+ .h67 {
333
+ height: 67% !important;
334
+ box-sizing: border-box;
335
+ }
336
+
337
+ .h68 {
338
+ height: 68% !important;
339
+ box-sizing: border-box;
340
+ }
341
+
342
+ .h69 {
343
+ height: 69% !important;
344
+ box-sizing: border-box;
345
+ }
346
+
347
+ .h70 {
348
+ height: 70% !important;
349
+ box-sizing: border-box;
350
+ }
351
+
352
+ .h71 {
353
+ height: 71% !important;
354
+ box-sizing: border-box;
355
+ }
356
+
357
+ .h72 {
358
+ height: 72% !important;
359
+ box-sizing: border-box;
360
+ }
361
+
362
+ .h73 {
363
+ height: 73% !important;
364
+ box-sizing: border-box;
365
+ }
366
+
367
+ .h74 {
368
+ height: 74% !important;
369
+ box-sizing: border-box;
370
+ }
371
+
372
+ .h75 {
373
+ height: 75% !important;
374
+ box-sizing: border-box;
375
+ }
376
+
377
+ .h76 {
378
+ height: 76% !important;
379
+ box-sizing: border-box;
380
+ }
381
+
382
+ .h77 {
383
+ height: 77% !important;
384
+ box-sizing: border-box;
385
+ }
386
+
387
+ .h78 {
388
+ height: 78% !important;
389
+ box-sizing: border-box;
390
+ }
391
+
392
+ .h79 {
393
+ height: 79% !important;
394
+ box-sizing: border-box;
395
+ }
396
+
397
+ .h80 {
398
+ height: 80% !important;
399
+ box-sizing: border-box;
400
+ }
401
+
402
+ .h81 {
403
+ height: 81% !important;
404
+ box-sizing: border-box;
405
+ }
406
+
407
+ .h82 {
408
+ height: 82% !important;
409
+ box-sizing: border-box;
410
+ }
411
+
412
+ .h83 {
413
+ height: 83% !important;
414
+ box-sizing: border-box;
415
+ }
416
+
417
+ .h84 {
418
+ height: 84% !important;
419
+ box-sizing: border-box;
420
+ }
421
+
422
+ .h85 {
423
+ height: 85% !important;
424
+ box-sizing: border-box;
425
+ }
426
+
427
+ .h86 {
428
+ height: 86% !important;
429
+ box-sizing: border-box;
430
+ }
431
+
432
+ .h87 {
433
+ height: 87% !important;
434
+ box-sizing: border-box;
435
+ }
436
+
437
+ .h88 {
438
+ height: 88% !important;
439
+ box-sizing: border-box;
440
+ }
441
+
442
+ .h89 {
443
+ height: 89% !important;
444
+ box-sizing: border-box;
445
+ }
446
+
447
+ .h90 {
448
+ height: 90% !important;
449
+ box-sizing: border-box;
450
+ }
451
+
452
+ .h91 {
453
+ height: 91% !important;
454
+ box-sizing: border-box;
455
+ }
456
+
457
+ .h92 {
458
+ height: 92% !important;
459
+ box-sizing: border-box;
460
+ }
461
+
462
+ .h93 {
463
+ height: 93% !important;
464
+ box-sizing: border-box;
465
+ }
466
+
467
+ .h94 {
468
+ height: 94% !important;
469
+ box-sizing: border-box;
470
+ }
471
+
472
+ .h95 {
473
+ height: 95% !important;
474
+ box-sizing: border-box;
475
+ }
476
+
477
+ .h96 {
478
+ height: 96% !important;
479
+ box-sizing: border-box;
480
+ }
481
+
482
+ .h97 {
483
+ height: 97% !important;
484
+ box-sizing: border-box;
485
+ }
486
+
487
+ .h98 {
488
+ height: 98% !important;
489
+ box-sizing: border-box;
490
+ }
491
+
492
+ .h99 {
493
+ height: 99% !important;
494
+ box-sizing: border-box;
495
+ }
496
+
497
+ .h100 {
498
+ height: 100% !important;
499
+ box-sizing: border-box;
500
+ }
501
+ /* end height 1 to 100% h1 ... h100 */