droidcss 1.0.6 → 1.0.7
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/CHANGELOG.MD +3 -0
- data/lib/droidcss/version.rb +1 -1
- data/vendor/assets/stylesheets/droidcss/partials/grid.scss +15 -12
- data/vendor/assets/stylesheets/droidcss.css +144 -144
- metadata +34 -51
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2413fedef4c09cba871a75c07402cda36ec4373f
|
4
|
+
data.tar.gz: 2c71acd022098cc21da244515e1fd1c91977418a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 01fd1bba2f2d6a8dec9f735970f8e320d8490f1069af9b4b62e5786f05890e7c431cff3e071670638a4c6d37170cc5d7c48564f4955d8d41f3590e5ba6b4865b
|
7
|
+
data.tar.gz: 3673d360104b74f9f3be851b470c2beb1658f111f68876ffece80ce37d6d5d7e062251d05d3ce727bfc40f72616679d52851f8c502ce4e769ca6f3f2b9d48169
|
data/CHANGELOG.MD
CHANGED
data/lib/droidcss/version.rb
CHANGED
@@ -59,11 +59,12 @@ $column-width: 6 !default; // Column width
|
|
59
59
|
@for $i from 1 through $columns-count {
|
60
60
|
$num: $i;
|
61
61
|
$content-width: $num * $gutter-width * $column-width + ($num - 1) * 2 * $gutter-width; // (column number * gutter width * (column width in px + current step - 1) * 2 * gutter width)
|
62
|
+
$content-width-offset: $content-width + 3 * $gutter-width;
|
62
63
|
.grid-#{$num} { width: $content-width; }
|
63
|
-
.prefix-#{$num} { margin-left: $content-width; }
|
64
|
-
.suffix-#{$num} { margin-right: $content-width; }
|
65
|
-
.push-#{$num} { left: $content-width; }
|
66
|
-
.pull-#{$num} { left: -$content-width; }
|
64
|
+
.prefix-#{$num} { margin-left: $content-width-offset; }
|
65
|
+
.suffix-#{$num} { margin-right: $content-width-offset; }
|
66
|
+
.push-#{$num} { left: $content-width-offset; }
|
67
|
+
.pull-#{$num} { left: -$content-width-offset; }
|
67
68
|
}
|
68
69
|
|
69
70
|
/* DESKTOP SUPPORT */
|
@@ -90,11 +91,12 @@ $column-width: 6 !default; // Column width
|
|
90
91
|
@for $i from 1 through $columns-count {
|
91
92
|
$num: $i;
|
92
93
|
$content-width: $num * $gutter-width * $column-width + ($num - 1) * 2 * $gutter-width; // (column number * gutter width * (column width in px + current step - 1) * 2 * gutter width)
|
94
|
+
$content-width-offset: $content-width + 3 * $gutter-width;
|
93
95
|
.grid-tablet-#{$num} { width: $content-width; }
|
94
|
-
.prefix-tablet-#{$num} { margin-left: $content-width; }
|
95
|
-
.suffix-tablet-#{$num} { margin-right: $content-width; }
|
96
|
-
.push-tablet-#{$num} { left: $content-width; }
|
97
|
-
.pull-tablet-#{$num} { left: -$content-width; }
|
96
|
+
.prefix-tablet-#{$num} { margin-left: $content-width-offset; }
|
97
|
+
.suffix-tablet-#{$num} { margin-right: $content-width-offset; }
|
98
|
+
.push-tablet-#{$num} { left: $content-width-offset; }
|
99
|
+
.pull-tablet-#{$num} { left: -$content-width-offset; }
|
98
100
|
}
|
99
101
|
}
|
100
102
|
|
@@ -113,10 +115,11 @@ $column-width: 6 !default; // Column width
|
|
113
115
|
@for $i from 1 through $columns-count {
|
114
116
|
$num: $i;
|
115
117
|
$content-width: $num * $gutter-width * $column-width + ($num - 1) * 2 * $gutter-width; // (column number * gutter width * (column width in px + current step - 1) * 2 * gutter width)
|
118
|
+
$content-width-offset: $content-width + 3 * $gutter-width;
|
116
119
|
.grid-mobile-#{$num} { width: $content-width; }
|
117
|
-
.prefix-mobile-#{$num} { margin-left: $content-width; }
|
118
|
-
.suffix-mobile-#{$num} { margin-right: $content-width; }
|
119
|
-
.push-mobile-#{$num} { left: $content-width; }
|
120
|
-
.pull-mobile-#{$num} { left: -$content-width; }
|
120
|
+
.prefix-mobile-#{$num} { margin-left: $content-width-offset; }
|
121
|
+
.suffix-mobile-#{$num} { margin-right: $content-width-offset; }
|
122
|
+
.push-mobile-#{$num} { left: $content-width-offset; }
|
123
|
+
.pull-mobile-#{$num} { left: -$content-width-offset; }
|
121
124
|
}
|
122
125
|
}
|
@@ -261,19 +261,19 @@ nav ul li {
|
|
261
261
|
}
|
262
262
|
|
263
263
|
.prefix-1 {
|
264
|
-
margin-left:
|
264
|
+
margin-left: 9.375%;
|
265
265
|
}
|
266
266
|
|
267
267
|
.suffix-1 {
|
268
|
-
margin-right:
|
268
|
+
margin-right: 9.375%;
|
269
269
|
}
|
270
270
|
|
271
271
|
.push-1 {
|
272
|
-
left:
|
272
|
+
left: 9.375%;
|
273
273
|
}
|
274
274
|
|
275
275
|
.pull-1 {
|
276
|
-
left: -
|
276
|
+
left: -9.375%;
|
277
277
|
}
|
278
278
|
|
279
279
|
.grid-2 {
|
@@ -281,19 +281,19 @@ nav ul li {
|
|
281
281
|
}
|
282
282
|
|
283
283
|
.prefix-2 {
|
284
|
-
margin-left:
|
284
|
+
margin-left: 17.70833%;
|
285
285
|
}
|
286
286
|
|
287
287
|
.suffix-2 {
|
288
|
-
margin-right:
|
288
|
+
margin-right: 17.70833%;
|
289
289
|
}
|
290
290
|
|
291
291
|
.push-2 {
|
292
|
-
left:
|
292
|
+
left: 17.70833%;
|
293
293
|
}
|
294
294
|
|
295
295
|
.pull-2 {
|
296
|
-
left: -
|
296
|
+
left: -17.70833%;
|
297
297
|
}
|
298
298
|
|
299
299
|
.grid-3 {
|
@@ -301,19 +301,19 @@ nav ul li {
|
|
301
301
|
}
|
302
302
|
|
303
303
|
.prefix-3 {
|
304
|
-
margin-left:
|
304
|
+
margin-left: 26.04167%;
|
305
305
|
}
|
306
306
|
|
307
307
|
.suffix-3 {
|
308
|
-
margin-right:
|
308
|
+
margin-right: 26.04167%;
|
309
309
|
}
|
310
310
|
|
311
311
|
.push-3 {
|
312
|
-
left:
|
312
|
+
left: 26.04167%;
|
313
313
|
}
|
314
314
|
|
315
315
|
.pull-3 {
|
316
|
-
left: -
|
316
|
+
left: -26.04167%;
|
317
317
|
}
|
318
318
|
|
319
319
|
.grid-4 {
|
@@ -321,19 +321,19 @@ nav ul li {
|
|
321
321
|
}
|
322
322
|
|
323
323
|
.prefix-4 {
|
324
|
-
margin-left:
|
324
|
+
margin-left: 34.375%;
|
325
325
|
}
|
326
326
|
|
327
327
|
.suffix-4 {
|
328
|
-
margin-right:
|
328
|
+
margin-right: 34.375%;
|
329
329
|
}
|
330
330
|
|
331
331
|
.push-4 {
|
332
|
-
left:
|
332
|
+
left: 34.375%;
|
333
333
|
}
|
334
334
|
|
335
335
|
.pull-4 {
|
336
|
-
left: -
|
336
|
+
left: -34.375%;
|
337
337
|
}
|
338
338
|
|
339
339
|
.grid-5 {
|
@@ -341,19 +341,19 @@ nav ul li {
|
|
341
341
|
}
|
342
342
|
|
343
343
|
.prefix-5 {
|
344
|
-
margin-left:
|
344
|
+
margin-left: 42.70833%;
|
345
345
|
}
|
346
346
|
|
347
347
|
.suffix-5 {
|
348
|
-
margin-right:
|
348
|
+
margin-right: 42.70833%;
|
349
349
|
}
|
350
350
|
|
351
351
|
.push-5 {
|
352
|
-
left:
|
352
|
+
left: 42.70833%;
|
353
353
|
}
|
354
354
|
|
355
355
|
.pull-5 {
|
356
|
-
left: -
|
356
|
+
left: -42.70833%;
|
357
357
|
}
|
358
358
|
|
359
359
|
.grid-6 {
|
@@ -361,19 +361,19 @@ nav ul li {
|
|
361
361
|
}
|
362
362
|
|
363
363
|
.prefix-6 {
|
364
|
-
margin-left:
|
364
|
+
margin-left: 51.04167%;
|
365
365
|
}
|
366
366
|
|
367
367
|
.suffix-6 {
|
368
|
-
margin-right:
|
368
|
+
margin-right: 51.04167%;
|
369
369
|
}
|
370
370
|
|
371
371
|
.push-6 {
|
372
|
-
left:
|
372
|
+
left: 51.04167%;
|
373
373
|
}
|
374
374
|
|
375
375
|
.pull-6 {
|
376
|
-
left: -
|
376
|
+
left: -51.04167%;
|
377
377
|
}
|
378
378
|
|
379
379
|
.grid-7 {
|
@@ -381,19 +381,19 @@ nav ul li {
|
|
381
381
|
}
|
382
382
|
|
383
383
|
.prefix-7 {
|
384
|
-
margin-left:
|
384
|
+
margin-left: 59.375%;
|
385
385
|
}
|
386
386
|
|
387
387
|
.suffix-7 {
|
388
|
-
margin-right:
|
388
|
+
margin-right: 59.375%;
|
389
389
|
}
|
390
390
|
|
391
391
|
.push-7 {
|
392
|
-
left:
|
392
|
+
left: 59.375%;
|
393
393
|
}
|
394
394
|
|
395
395
|
.pull-7 {
|
396
|
-
left: -
|
396
|
+
left: -59.375%;
|
397
397
|
}
|
398
398
|
|
399
399
|
.grid-8 {
|
@@ -401,19 +401,19 @@ nav ul li {
|
|
401
401
|
}
|
402
402
|
|
403
403
|
.prefix-8 {
|
404
|
-
margin-left:
|
404
|
+
margin-left: 67.70833%;
|
405
405
|
}
|
406
406
|
|
407
407
|
.suffix-8 {
|
408
|
-
margin-right:
|
408
|
+
margin-right: 67.70833%;
|
409
409
|
}
|
410
410
|
|
411
411
|
.push-8 {
|
412
|
-
left:
|
412
|
+
left: 67.70833%;
|
413
413
|
}
|
414
414
|
|
415
415
|
.pull-8 {
|
416
|
-
left: -
|
416
|
+
left: -67.70833%;
|
417
417
|
}
|
418
418
|
|
419
419
|
.grid-9 {
|
@@ -421,19 +421,19 @@ nav ul li {
|
|
421
421
|
}
|
422
422
|
|
423
423
|
.prefix-9 {
|
424
|
-
margin-left:
|
424
|
+
margin-left: 76.04167%;
|
425
425
|
}
|
426
426
|
|
427
427
|
.suffix-9 {
|
428
|
-
margin-right:
|
428
|
+
margin-right: 76.04167%;
|
429
429
|
}
|
430
430
|
|
431
431
|
.push-9 {
|
432
|
-
left:
|
432
|
+
left: 76.04167%;
|
433
433
|
}
|
434
434
|
|
435
435
|
.pull-9 {
|
436
|
-
left: -
|
436
|
+
left: -76.04167%;
|
437
437
|
}
|
438
438
|
|
439
439
|
.grid-10 {
|
@@ -441,19 +441,19 @@ nav ul li {
|
|
441
441
|
}
|
442
442
|
|
443
443
|
.prefix-10 {
|
444
|
-
margin-left:
|
444
|
+
margin-left: 84.375%;
|
445
445
|
}
|
446
446
|
|
447
447
|
.suffix-10 {
|
448
|
-
margin-right:
|
448
|
+
margin-right: 84.375%;
|
449
449
|
}
|
450
450
|
|
451
451
|
.push-10 {
|
452
|
-
left:
|
452
|
+
left: 84.375%;
|
453
453
|
}
|
454
454
|
|
455
455
|
.pull-10 {
|
456
|
-
left: -
|
456
|
+
left: -84.375%;
|
457
457
|
}
|
458
458
|
|
459
459
|
.grid-11 {
|
@@ -461,19 +461,19 @@ nav ul li {
|
|
461
461
|
}
|
462
462
|
|
463
463
|
.prefix-11 {
|
464
|
-
margin-left:
|
464
|
+
margin-left: 92.70833%;
|
465
465
|
}
|
466
466
|
|
467
467
|
.suffix-11 {
|
468
|
-
margin-right:
|
468
|
+
margin-right: 92.70833%;
|
469
469
|
}
|
470
470
|
|
471
471
|
.push-11 {
|
472
|
-
left:
|
472
|
+
left: 92.70833%;
|
473
473
|
}
|
474
474
|
|
475
475
|
.pull-11 {
|
476
|
-
left: -
|
476
|
+
left: -92.70833%;
|
477
477
|
}
|
478
478
|
|
479
479
|
.grid-12 {
|
@@ -481,19 +481,19 @@ nav ul li {
|
|
481
481
|
}
|
482
482
|
|
483
483
|
.prefix-12 {
|
484
|
-
margin-left:
|
484
|
+
margin-left: 101.04167%;
|
485
485
|
}
|
486
486
|
|
487
487
|
.suffix-12 {
|
488
|
-
margin-right:
|
488
|
+
margin-right: 101.04167%;
|
489
489
|
}
|
490
490
|
|
491
491
|
.push-12 {
|
492
|
-
left:
|
492
|
+
left: 101.04167%;
|
493
493
|
}
|
494
494
|
|
495
495
|
.pull-12 {
|
496
|
-
left: -
|
496
|
+
left: -101.04167%;
|
497
497
|
}
|
498
498
|
|
499
499
|
/* DESKTOP SUPPORT */
|
@@ -519,19 +519,19 @@ nav ul li {
|
|
519
519
|
}
|
520
520
|
|
521
521
|
.prefix-tablet-1 {
|
522
|
-
margin-left:
|
522
|
+
margin-left: 9.375%;
|
523
523
|
}
|
524
524
|
|
525
525
|
.suffix-tablet-1 {
|
526
|
-
margin-right:
|
526
|
+
margin-right: 9.375%;
|
527
527
|
}
|
528
528
|
|
529
529
|
.push-tablet-1 {
|
530
|
-
left:
|
530
|
+
left: 9.375%;
|
531
531
|
}
|
532
532
|
|
533
533
|
.pull-tablet-1 {
|
534
|
-
left: -
|
534
|
+
left: -9.375%;
|
535
535
|
}
|
536
536
|
|
537
537
|
.grid-tablet-2 {
|
@@ -539,19 +539,19 @@ nav ul li {
|
|
539
539
|
}
|
540
540
|
|
541
541
|
.prefix-tablet-2 {
|
542
|
-
margin-left:
|
542
|
+
margin-left: 17.70833%;
|
543
543
|
}
|
544
544
|
|
545
545
|
.suffix-tablet-2 {
|
546
|
-
margin-right:
|
546
|
+
margin-right: 17.70833%;
|
547
547
|
}
|
548
548
|
|
549
549
|
.push-tablet-2 {
|
550
|
-
left:
|
550
|
+
left: 17.70833%;
|
551
551
|
}
|
552
552
|
|
553
553
|
.pull-tablet-2 {
|
554
|
-
left: -
|
554
|
+
left: -17.70833%;
|
555
555
|
}
|
556
556
|
|
557
557
|
.grid-tablet-3 {
|
@@ -559,19 +559,19 @@ nav ul li {
|
|
559
559
|
}
|
560
560
|
|
561
561
|
.prefix-tablet-3 {
|
562
|
-
margin-left:
|
562
|
+
margin-left: 26.04167%;
|
563
563
|
}
|
564
564
|
|
565
565
|
.suffix-tablet-3 {
|
566
|
-
margin-right:
|
566
|
+
margin-right: 26.04167%;
|
567
567
|
}
|
568
568
|
|
569
569
|
.push-tablet-3 {
|
570
|
-
left:
|
570
|
+
left: 26.04167%;
|
571
571
|
}
|
572
572
|
|
573
573
|
.pull-tablet-3 {
|
574
|
-
left: -
|
574
|
+
left: -26.04167%;
|
575
575
|
}
|
576
576
|
|
577
577
|
.grid-tablet-4 {
|
@@ -579,19 +579,19 @@ nav ul li {
|
|
579
579
|
}
|
580
580
|
|
581
581
|
.prefix-tablet-4 {
|
582
|
-
margin-left:
|
582
|
+
margin-left: 34.375%;
|
583
583
|
}
|
584
584
|
|
585
585
|
.suffix-tablet-4 {
|
586
|
-
margin-right:
|
586
|
+
margin-right: 34.375%;
|
587
587
|
}
|
588
588
|
|
589
589
|
.push-tablet-4 {
|
590
|
-
left:
|
590
|
+
left: 34.375%;
|
591
591
|
}
|
592
592
|
|
593
593
|
.pull-tablet-4 {
|
594
|
-
left: -
|
594
|
+
left: -34.375%;
|
595
595
|
}
|
596
596
|
|
597
597
|
.grid-tablet-5 {
|
@@ -599,19 +599,19 @@ nav ul li {
|
|
599
599
|
}
|
600
600
|
|
601
601
|
.prefix-tablet-5 {
|
602
|
-
margin-left:
|
602
|
+
margin-left: 42.70833%;
|
603
603
|
}
|
604
604
|
|
605
605
|
.suffix-tablet-5 {
|
606
|
-
margin-right:
|
606
|
+
margin-right: 42.70833%;
|
607
607
|
}
|
608
608
|
|
609
609
|
.push-tablet-5 {
|
610
|
-
left:
|
610
|
+
left: 42.70833%;
|
611
611
|
}
|
612
612
|
|
613
613
|
.pull-tablet-5 {
|
614
|
-
left: -
|
614
|
+
left: -42.70833%;
|
615
615
|
}
|
616
616
|
|
617
617
|
.grid-tablet-6 {
|
@@ -619,19 +619,19 @@ nav ul li {
|
|
619
619
|
}
|
620
620
|
|
621
621
|
.prefix-tablet-6 {
|
622
|
-
margin-left:
|
622
|
+
margin-left: 51.04167%;
|
623
623
|
}
|
624
624
|
|
625
625
|
.suffix-tablet-6 {
|
626
|
-
margin-right:
|
626
|
+
margin-right: 51.04167%;
|
627
627
|
}
|
628
628
|
|
629
629
|
.push-tablet-6 {
|
630
|
-
left:
|
630
|
+
left: 51.04167%;
|
631
631
|
}
|
632
632
|
|
633
633
|
.pull-tablet-6 {
|
634
|
-
left: -
|
634
|
+
left: -51.04167%;
|
635
635
|
}
|
636
636
|
|
637
637
|
.grid-tablet-7 {
|
@@ -639,19 +639,19 @@ nav ul li {
|
|
639
639
|
}
|
640
640
|
|
641
641
|
.prefix-tablet-7 {
|
642
|
-
margin-left:
|
642
|
+
margin-left: 59.375%;
|
643
643
|
}
|
644
644
|
|
645
645
|
.suffix-tablet-7 {
|
646
|
-
margin-right:
|
646
|
+
margin-right: 59.375%;
|
647
647
|
}
|
648
648
|
|
649
649
|
.push-tablet-7 {
|
650
|
-
left:
|
650
|
+
left: 59.375%;
|
651
651
|
}
|
652
652
|
|
653
653
|
.pull-tablet-7 {
|
654
|
-
left: -
|
654
|
+
left: -59.375%;
|
655
655
|
}
|
656
656
|
|
657
657
|
.grid-tablet-8 {
|
@@ -659,19 +659,19 @@ nav ul li {
|
|
659
659
|
}
|
660
660
|
|
661
661
|
.prefix-tablet-8 {
|
662
|
-
margin-left:
|
662
|
+
margin-left: 67.70833%;
|
663
663
|
}
|
664
664
|
|
665
665
|
.suffix-tablet-8 {
|
666
|
-
margin-right:
|
666
|
+
margin-right: 67.70833%;
|
667
667
|
}
|
668
668
|
|
669
669
|
.push-tablet-8 {
|
670
|
-
left:
|
670
|
+
left: 67.70833%;
|
671
671
|
}
|
672
672
|
|
673
673
|
.pull-tablet-8 {
|
674
|
-
left: -
|
674
|
+
left: -67.70833%;
|
675
675
|
}
|
676
676
|
|
677
677
|
.grid-tablet-9 {
|
@@ -679,19 +679,19 @@ nav ul li {
|
|
679
679
|
}
|
680
680
|
|
681
681
|
.prefix-tablet-9 {
|
682
|
-
margin-left:
|
682
|
+
margin-left: 76.04167%;
|
683
683
|
}
|
684
684
|
|
685
685
|
.suffix-tablet-9 {
|
686
|
-
margin-right:
|
686
|
+
margin-right: 76.04167%;
|
687
687
|
}
|
688
688
|
|
689
689
|
.push-tablet-9 {
|
690
|
-
left:
|
690
|
+
left: 76.04167%;
|
691
691
|
}
|
692
692
|
|
693
693
|
.pull-tablet-9 {
|
694
|
-
left: -
|
694
|
+
left: -76.04167%;
|
695
695
|
}
|
696
696
|
|
697
697
|
.grid-tablet-10 {
|
@@ -699,19 +699,19 @@ nav ul li {
|
|
699
699
|
}
|
700
700
|
|
701
701
|
.prefix-tablet-10 {
|
702
|
-
margin-left:
|
702
|
+
margin-left: 84.375%;
|
703
703
|
}
|
704
704
|
|
705
705
|
.suffix-tablet-10 {
|
706
|
-
margin-right:
|
706
|
+
margin-right: 84.375%;
|
707
707
|
}
|
708
708
|
|
709
709
|
.push-tablet-10 {
|
710
|
-
left:
|
710
|
+
left: 84.375%;
|
711
711
|
}
|
712
712
|
|
713
713
|
.pull-tablet-10 {
|
714
|
-
left: -
|
714
|
+
left: -84.375%;
|
715
715
|
}
|
716
716
|
|
717
717
|
.grid-tablet-11 {
|
@@ -719,19 +719,19 @@ nav ul li {
|
|
719
719
|
}
|
720
720
|
|
721
721
|
.prefix-tablet-11 {
|
722
|
-
margin-left:
|
722
|
+
margin-left: 92.70833%;
|
723
723
|
}
|
724
724
|
|
725
725
|
.suffix-tablet-11 {
|
726
|
-
margin-right:
|
726
|
+
margin-right: 92.70833%;
|
727
727
|
}
|
728
728
|
|
729
729
|
.push-tablet-11 {
|
730
|
-
left:
|
730
|
+
left: 92.70833%;
|
731
731
|
}
|
732
732
|
|
733
733
|
.pull-tablet-11 {
|
734
|
-
left: -
|
734
|
+
left: -92.70833%;
|
735
735
|
}
|
736
736
|
|
737
737
|
.grid-tablet-12 {
|
@@ -739,19 +739,19 @@ nav ul li {
|
|
739
739
|
}
|
740
740
|
|
741
741
|
.prefix-tablet-12 {
|
742
|
-
margin-left:
|
742
|
+
margin-left: 101.04167%;
|
743
743
|
}
|
744
744
|
|
745
745
|
.suffix-tablet-12 {
|
746
|
-
margin-right:
|
746
|
+
margin-right: 101.04167%;
|
747
747
|
}
|
748
748
|
|
749
749
|
.push-tablet-12 {
|
750
|
-
left:
|
750
|
+
left: 101.04167%;
|
751
751
|
}
|
752
752
|
|
753
753
|
.pull-tablet-12 {
|
754
|
-
left: -
|
754
|
+
left: -101.04167%;
|
755
755
|
}
|
756
756
|
}
|
757
757
|
/* MOBILE SUPPORT */
|
@@ -771,19 +771,19 @@ nav ul li {
|
|
771
771
|
}
|
772
772
|
|
773
773
|
.prefix-mobile-1 {
|
774
|
-
margin-left:
|
774
|
+
margin-left: 9.375%;
|
775
775
|
}
|
776
776
|
|
777
777
|
.suffix-mobile-1 {
|
778
|
-
margin-right:
|
778
|
+
margin-right: 9.375%;
|
779
779
|
}
|
780
780
|
|
781
781
|
.push-mobile-1 {
|
782
|
-
left:
|
782
|
+
left: 9.375%;
|
783
783
|
}
|
784
784
|
|
785
785
|
.pull-mobile-1 {
|
786
|
-
left: -
|
786
|
+
left: -9.375%;
|
787
787
|
}
|
788
788
|
|
789
789
|
.grid-mobile-2 {
|
@@ -791,19 +791,19 @@ nav ul li {
|
|
791
791
|
}
|
792
792
|
|
793
793
|
.prefix-mobile-2 {
|
794
|
-
margin-left:
|
794
|
+
margin-left: 17.70833%;
|
795
795
|
}
|
796
796
|
|
797
797
|
.suffix-mobile-2 {
|
798
|
-
margin-right:
|
798
|
+
margin-right: 17.70833%;
|
799
799
|
}
|
800
800
|
|
801
801
|
.push-mobile-2 {
|
802
|
-
left:
|
802
|
+
left: 17.70833%;
|
803
803
|
}
|
804
804
|
|
805
805
|
.pull-mobile-2 {
|
806
|
-
left: -
|
806
|
+
left: -17.70833%;
|
807
807
|
}
|
808
808
|
|
809
809
|
.grid-mobile-3 {
|
@@ -811,19 +811,19 @@ nav ul li {
|
|
811
811
|
}
|
812
812
|
|
813
813
|
.prefix-mobile-3 {
|
814
|
-
margin-left:
|
814
|
+
margin-left: 26.04167%;
|
815
815
|
}
|
816
816
|
|
817
817
|
.suffix-mobile-3 {
|
818
|
-
margin-right:
|
818
|
+
margin-right: 26.04167%;
|
819
819
|
}
|
820
820
|
|
821
821
|
.push-mobile-3 {
|
822
|
-
left:
|
822
|
+
left: 26.04167%;
|
823
823
|
}
|
824
824
|
|
825
825
|
.pull-mobile-3 {
|
826
|
-
left: -
|
826
|
+
left: -26.04167%;
|
827
827
|
}
|
828
828
|
|
829
829
|
.grid-mobile-4 {
|
@@ -831,19 +831,19 @@ nav ul li {
|
|
831
831
|
}
|
832
832
|
|
833
833
|
.prefix-mobile-4 {
|
834
|
-
margin-left:
|
834
|
+
margin-left: 34.375%;
|
835
835
|
}
|
836
836
|
|
837
837
|
.suffix-mobile-4 {
|
838
|
-
margin-right:
|
838
|
+
margin-right: 34.375%;
|
839
839
|
}
|
840
840
|
|
841
841
|
.push-mobile-4 {
|
842
|
-
left:
|
842
|
+
left: 34.375%;
|
843
843
|
}
|
844
844
|
|
845
845
|
.pull-mobile-4 {
|
846
|
-
left: -
|
846
|
+
left: -34.375%;
|
847
847
|
}
|
848
848
|
|
849
849
|
.grid-mobile-5 {
|
@@ -851,19 +851,19 @@ nav ul li {
|
|
851
851
|
}
|
852
852
|
|
853
853
|
.prefix-mobile-5 {
|
854
|
-
margin-left:
|
854
|
+
margin-left: 42.70833%;
|
855
855
|
}
|
856
856
|
|
857
857
|
.suffix-mobile-5 {
|
858
|
-
margin-right:
|
858
|
+
margin-right: 42.70833%;
|
859
859
|
}
|
860
860
|
|
861
861
|
.push-mobile-5 {
|
862
|
-
left:
|
862
|
+
left: 42.70833%;
|
863
863
|
}
|
864
864
|
|
865
865
|
.pull-mobile-5 {
|
866
|
-
left: -
|
866
|
+
left: -42.70833%;
|
867
867
|
}
|
868
868
|
|
869
869
|
.grid-mobile-6 {
|
@@ -871,19 +871,19 @@ nav ul li {
|
|
871
871
|
}
|
872
872
|
|
873
873
|
.prefix-mobile-6 {
|
874
|
-
margin-left:
|
874
|
+
margin-left: 51.04167%;
|
875
875
|
}
|
876
876
|
|
877
877
|
.suffix-mobile-6 {
|
878
|
-
margin-right:
|
878
|
+
margin-right: 51.04167%;
|
879
879
|
}
|
880
880
|
|
881
881
|
.push-mobile-6 {
|
882
|
-
left:
|
882
|
+
left: 51.04167%;
|
883
883
|
}
|
884
884
|
|
885
885
|
.pull-mobile-6 {
|
886
|
-
left: -
|
886
|
+
left: -51.04167%;
|
887
887
|
}
|
888
888
|
|
889
889
|
.grid-mobile-7 {
|
@@ -891,19 +891,19 @@ nav ul li {
|
|
891
891
|
}
|
892
892
|
|
893
893
|
.prefix-mobile-7 {
|
894
|
-
margin-left:
|
894
|
+
margin-left: 59.375%;
|
895
895
|
}
|
896
896
|
|
897
897
|
.suffix-mobile-7 {
|
898
|
-
margin-right:
|
898
|
+
margin-right: 59.375%;
|
899
899
|
}
|
900
900
|
|
901
901
|
.push-mobile-7 {
|
902
|
-
left:
|
902
|
+
left: 59.375%;
|
903
903
|
}
|
904
904
|
|
905
905
|
.pull-mobile-7 {
|
906
|
-
left: -
|
906
|
+
left: -59.375%;
|
907
907
|
}
|
908
908
|
|
909
909
|
.grid-mobile-8 {
|
@@ -911,19 +911,19 @@ nav ul li {
|
|
911
911
|
}
|
912
912
|
|
913
913
|
.prefix-mobile-8 {
|
914
|
-
margin-left:
|
914
|
+
margin-left: 67.70833%;
|
915
915
|
}
|
916
916
|
|
917
917
|
.suffix-mobile-8 {
|
918
|
-
margin-right:
|
918
|
+
margin-right: 67.70833%;
|
919
919
|
}
|
920
920
|
|
921
921
|
.push-mobile-8 {
|
922
|
-
left:
|
922
|
+
left: 67.70833%;
|
923
923
|
}
|
924
924
|
|
925
925
|
.pull-mobile-8 {
|
926
|
-
left: -
|
926
|
+
left: -67.70833%;
|
927
927
|
}
|
928
928
|
|
929
929
|
.grid-mobile-9 {
|
@@ -931,19 +931,19 @@ nav ul li {
|
|
931
931
|
}
|
932
932
|
|
933
933
|
.prefix-mobile-9 {
|
934
|
-
margin-left:
|
934
|
+
margin-left: 76.04167%;
|
935
935
|
}
|
936
936
|
|
937
937
|
.suffix-mobile-9 {
|
938
|
-
margin-right:
|
938
|
+
margin-right: 76.04167%;
|
939
939
|
}
|
940
940
|
|
941
941
|
.push-mobile-9 {
|
942
|
-
left:
|
942
|
+
left: 76.04167%;
|
943
943
|
}
|
944
944
|
|
945
945
|
.pull-mobile-9 {
|
946
|
-
left: -
|
946
|
+
left: -76.04167%;
|
947
947
|
}
|
948
948
|
|
949
949
|
.grid-mobile-10 {
|
@@ -951,19 +951,19 @@ nav ul li {
|
|
951
951
|
}
|
952
952
|
|
953
953
|
.prefix-mobile-10 {
|
954
|
-
margin-left:
|
954
|
+
margin-left: 84.375%;
|
955
955
|
}
|
956
956
|
|
957
957
|
.suffix-mobile-10 {
|
958
|
-
margin-right:
|
958
|
+
margin-right: 84.375%;
|
959
959
|
}
|
960
960
|
|
961
961
|
.push-mobile-10 {
|
962
|
-
left:
|
962
|
+
left: 84.375%;
|
963
963
|
}
|
964
964
|
|
965
965
|
.pull-mobile-10 {
|
966
|
-
left: -
|
966
|
+
left: -84.375%;
|
967
967
|
}
|
968
968
|
|
969
969
|
.grid-mobile-11 {
|
@@ -971,19 +971,19 @@ nav ul li {
|
|
971
971
|
}
|
972
972
|
|
973
973
|
.prefix-mobile-11 {
|
974
|
-
margin-left:
|
974
|
+
margin-left: 92.70833%;
|
975
975
|
}
|
976
976
|
|
977
977
|
.suffix-mobile-11 {
|
978
|
-
margin-right:
|
978
|
+
margin-right: 92.70833%;
|
979
979
|
}
|
980
980
|
|
981
981
|
.push-mobile-11 {
|
982
|
-
left:
|
982
|
+
left: 92.70833%;
|
983
983
|
}
|
984
984
|
|
985
985
|
.pull-mobile-11 {
|
986
|
-
left: -
|
986
|
+
left: -92.70833%;
|
987
987
|
}
|
988
988
|
|
989
989
|
.grid-mobile-12 {
|
@@ -991,18 +991,18 @@ nav ul li {
|
|
991
991
|
}
|
992
992
|
|
993
993
|
.prefix-mobile-12 {
|
994
|
-
margin-left:
|
994
|
+
margin-left: 101.04167%;
|
995
995
|
}
|
996
996
|
|
997
997
|
.suffix-mobile-12 {
|
998
|
-
margin-right:
|
998
|
+
margin-right: 101.04167%;
|
999
999
|
}
|
1000
1000
|
|
1001
1001
|
.push-mobile-12 {
|
1002
|
-
left:
|
1002
|
+
left: 101.04167%;
|
1003
1003
|
}
|
1004
1004
|
|
1005
1005
|
.pull-mobile-12 {
|
1006
|
-
left: -
|
1006
|
+
left: -101.04167%;
|
1007
1007
|
}
|
1008
1008
|
}
|
metadata
CHANGED
@@ -1,46 +1,36 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: droidcss
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
segments:
|
6
|
-
- 1
|
7
|
-
- 0
|
8
|
-
- 6
|
9
|
-
version: 1.0.6
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.7
|
10
5
|
platform: ruby
|
11
|
-
authors:
|
6
|
+
authors:
|
12
7
|
- Ilya Gorenburg
|
13
8
|
autorequire:
|
14
9
|
bindir: bin
|
15
10
|
cert_chain: []
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
dependencies:
|
20
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2013-10-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
21
14
|
name: sass
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
segments:
|
28
|
-
- 3
|
29
|
-
- 2
|
30
|
-
- 0
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
31
19
|
version: 3.2.0
|
32
20
|
type: :runtime
|
33
|
-
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.2.0
|
34
27
|
description: Small responsive framework
|
35
|
-
email:
|
28
|
+
email:
|
36
29
|
- ilya@droidlabs.pro
|
37
30
|
executables: []
|
38
|
-
|
39
31
|
extensions: []
|
40
|
-
|
41
32
|
extra_rdoc_files: []
|
42
|
-
|
43
|
-
files:
|
33
|
+
files:
|
44
34
|
- .gitignore
|
45
35
|
- CHANGELOG.MD
|
46
36
|
- LICENSE
|
@@ -67,35 +57,28 @@ files:
|
|
67
57
|
- vendor/assets/stylesheets/droidcss/partials/defaults.scss
|
68
58
|
- vendor/assets/stylesheets/droidcss/partials/grid.scss
|
69
59
|
- vendor/assets/stylesheets/droidcss/partials/reset.scss
|
70
|
-
has_rdoc: true
|
71
60
|
homepage: https://github.com/droidlabs/droidcss
|
72
|
-
licenses:
|
61
|
+
licenses:
|
73
62
|
- MIT
|
63
|
+
metadata: {}
|
74
64
|
post_install_message:
|
75
65
|
rdoc_options: []
|
76
|
-
|
77
|
-
require_paths:
|
66
|
+
require_paths:
|
78
67
|
- lib
|
79
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- -
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
segments:
|
91
|
-
- 0
|
92
|
-
version: "0"
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - '>='
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
93
78
|
requirements: []
|
94
|
-
|
95
79
|
rubyforge_project:
|
96
|
-
rubygems_version:
|
80
|
+
rubygems_version: 2.0.3
|
97
81
|
signing_key:
|
98
|
-
specification_version:
|
82
|
+
specification_version: 4
|
99
83
|
summary: Small responsive framework
|
100
84
|
test_files: []
|
101
|
-
|