rapido-css 0.0.3 → 0.0.4
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 +15 -0
- data/README.md +44 -9
- data/stylesheets/_default-styles.scss +309 -138
- data/stylesheets/_functions.scss +67 -4
- data/stylesheets/_normalize.scss +39 -513
- data/stylesheets/_rapido.scss +17 -8
- data/stylesheets/_susy.scss +2 -5
- data/stylesheets/components/_alerts.scss +39 -5
- data/stylesheets/components/_breadcrumbs.scss +21 -4
- data/stylesheets/components/_button-groups.scss +42 -17
- data/stylesheets/components/_buttons.scss +69 -29
- data/stylesheets/components/_captions.scss +38 -19
- data/stylesheets/components/_close.scss +14 -3
- data/stylesheets/components/_dropdowns.scss +76 -28
- data/stylesheets/components/_forms.scss +477 -350
- data/stylesheets/components/_grids.scss +86 -0
- data/stylesheets/components/_labels.scss +26 -4
- data/stylesheets/components/_modals.scss +122 -38
- data/stylesheets/components/_navs.scss +51 -21
- data/stylesheets/components/_pager.scss +55 -10
- data/stylesheets/components/_pagination.scss +40 -25
- data/stylesheets/components/_responsive-navs.scss +141 -28
- data/stylesheets/components/_sliders.scss +45 -26
- data/stylesheets/components/_tables.scss +43 -16
- data/stylesheets/components/_tabs.scss +47 -9
- data/stylesheets/components/_type.scss +139 -73
- data/stylesheets/settings/_base.scss +73 -27
- data/stylesheets/settings/_colors.scss +43 -16
- data/stylesheets/settings/_components.scss +102 -43
- data/stylesheets/settings/_dimensions.scss +273 -92
- data/stylesheets/settings/_effects.scss +20 -12
- data/stylesheets/styleguide.md +33 -0
- data/stylesheets/utilities/_animations.scss +150 -129
- data/stylesheets/utilities/_debug.scss +29 -3
- data/stylesheets/utilities/_helper-classes.scss +135 -18
- data/stylesheets/utilities/_icon-fonts.scss +77 -80
- data/stylesheets/utilities/_mixins.scss +385 -63
- metadata +6 -13
- data/stylesheets/components/config.rb +0 -8
- data/stylesheets/settings/config.rb +0 -8
- data/stylesheets/utilities/_media-queries.scss +0 -50
- data/stylesheets/utilities/_sprites.scss +0 -22
- data/stylesheets/utilities/config.rb +0 -8
@@ -1,37 +1,70 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
display: table;
|
13
|
-
content: "";
|
14
|
-
line-height: 0;
|
15
|
-
}
|
16
|
-
&:after {
|
17
|
-
clear: both;
|
18
|
-
}
|
19
|
-
}
|
1
|
+
/* ====================================================================================================================
|
2
|
+
|
3
|
+
Mixins
|
4
|
+
|
5
|
+
Some of them are from Bootstrap, others are custom.
|
6
|
+
|
7
|
+
Styleguide 23
|
8
|
+
|
9
|
+
==================================================================================================================== */
|
10
|
+
|
11
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
20
12
|
|
13
|
+
Create a rectangle
|
21
14
|
|
15
|
+
@include size($height, $width);
|
22
16
|
|
17
|
+
* `$height`: Height of the rectangle
|
18
|
+
* `$width`: Width of the rectangle
|
19
|
+
|
20
|
+
Styleguide 23.1
|
21
|
+
|
22
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
23
23
|
|
24
|
-
// ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
25
|
-
// Shortcuts
|
26
|
-
// --------------------------------------------------------------------------------------------------------------------
|
27
24
|
@mixin size($height, $width) {
|
28
25
|
width: $width;
|
29
26
|
height: $height;
|
30
27
|
}
|
28
|
+
|
29
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
30
|
+
|
31
|
+
Create a square
|
32
|
+
|
33
|
+
@include square($size);
|
34
|
+
|
35
|
+
* `$size`: Dimension used both for width and height
|
36
|
+
|
37
|
+
Styleguide 23.2
|
38
|
+
|
39
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
40
|
+
|
31
41
|
@mixin square($size) {
|
32
42
|
@include size($size, $size);
|
33
43
|
}
|
34
44
|
|
45
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
46
|
+
|
47
|
+
Position an element
|
48
|
+
|
49
|
+
@include position ($position, $coordinates);
|
50
|
+
|
51
|
+
* `$position`: fixed, relative, absolute
|
52
|
+
* `$coordinates`: 0 = null, 0px or more is a value used in the css.
|
53
|
+
|
54
|
+
Example:
|
55
|
+
|
56
|
+
@include position (absolute, 0 0px 0px 0);
|
57
|
+
|
58
|
+
Become:
|
59
|
+
|
60
|
+
position: absolute;
|
61
|
+
right: 0px;
|
62
|
+
bottom: 0px;
|
63
|
+
|
64
|
+
Styleguide 23.3
|
65
|
+
|
66
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
67
|
+
|
35
68
|
@mixin position ($position: relative, $coordinates: 0 0 0 0) {
|
36
69
|
|
37
70
|
@if type-of($position) == list {
|
@@ -75,12 +108,43 @@
|
|
75
108
|
}
|
76
109
|
}
|
77
110
|
|
111
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
112
|
+
|
113
|
+
Center-block
|
114
|
+
|
115
|
+
@include center-block();
|
116
|
+
|
117
|
+
Become:
|
118
|
+
|
119
|
+
display: block;
|
120
|
+
margin-left: auto;
|
121
|
+
margin-right: auto;
|
122
|
+
|
123
|
+
Styleguide 23.4
|
124
|
+
|
125
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
126
|
+
|
78
127
|
@mixin center-block() {
|
79
128
|
display: block;
|
80
129
|
margin-left: auto;
|
81
130
|
margin-right: auto;
|
82
131
|
}
|
83
132
|
|
133
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
134
|
+
|
135
|
+
Center
|
136
|
+
|
137
|
+
Vertical and horizontal centering with absolute positioning, using the element size and negative margin.
|
138
|
+
|
139
|
+
@include center($width, $height);
|
140
|
+
|
141
|
+
* `$height`: Height of the element
|
142
|
+
* `$width`: Width of the element
|
143
|
+
|
144
|
+
Styleguide 23.5
|
145
|
+
|
146
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
147
|
+
|
84
148
|
@mixin center ($width, $height: null) {
|
85
149
|
@include position(absolute, 50% 0 0 50%);
|
86
150
|
margin-left: -($width / 2);
|
@@ -88,9 +152,38 @@
|
|
88
152
|
@else { margin-top: -($width / 2); }
|
89
153
|
}
|
90
154
|
|
91
|
-
|
92
|
-
|
93
|
-
|
155
|
+
|
156
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
157
|
+
|
158
|
+
Extend
|
159
|
+
|
160
|
+
When using SASS syntax.
|
161
|
+
|
162
|
+
+e(classname)
|
163
|
+
|
164
|
+
Styleguide 23.6
|
165
|
+
|
166
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
167
|
+
|
168
|
+
@mixin e($class) {
|
169
|
+
@if $class {
|
170
|
+
@extend .#{$class};
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
|
175
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
176
|
+
|
177
|
+
Placeholder
|
178
|
+
|
179
|
+
@include placeholder($color);
|
180
|
+
|
181
|
+
* `$color`: Set color of the placeholder of an input.
|
182
|
+
|
183
|
+
Styleguide 23.7
|
184
|
+
|
185
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
186
|
+
|
94
187
|
@mixin placeholder($color: $gray) {
|
95
188
|
&:-moz-placeholder {
|
96
189
|
color: $color;
|
@@ -103,11 +196,26 @@
|
|
103
196
|
}
|
104
197
|
}
|
105
198
|
|
106
|
-
@mixin tab-focus() {}
|
107
199
|
|
108
|
-
|
109
|
-
|
110
|
-
|
200
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
201
|
+
|
202
|
+
Text overflow
|
203
|
+
|
204
|
+
Wrap text with ellipsis (modern browsers only).
|
205
|
+
|
206
|
+
@include text-overflow();
|
207
|
+
|
208
|
+
Become
|
209
|
+
|
210
|
+
overflow: hidden;
|
211
|
+
text-overflow: ellipsis;
|
212
|
+
white-space: nowrap;
|
213
|
+
|
214
|
+
Styleguide 23.8
|
215
|
+
|
216
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
217
|
+
|
218
|
+
|
111
219
|
@mixin text-overflow() {
|
112
220
|
overflow: hidden;
|
113
221
|
text-overflow: ellipsis;
|
@@ -115,18 +223,25 @@
|
|
115
223
|
}
|
116
224
|
|
117
225
|
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
226
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
227
|
+
|
228
|
+
Triangle
|
229
|
+
|
230
|
+
Create a css-only triangle.
|
231
|
+
|
232
|
+
@include triangle($size, $color, $direction);
|
233
|
+
|
234
|
+
* `$size`: Width of the triangle
|
235
|
+
* `$color`: Color of the triangle
|
236
|
+
* `$direction`: There are available up, up-right, right, down-right, down, down-left, left, up-left
|
237
|
+
|
238
|
+
Styleguide 23.9
|
239
|
+
|
240
|
+
|
241
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
123
242
|
|
124
|
-
// ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
125
|
-
// Pseudo Elements
|
126
|
-
// --------------------------------------------------------------------------------------------------------------------
|
127
243
|
@mixin triangle ($size, $color, $direction) {
|
128
|
-
|
129
|
-
width: 0;
|
244
|
+
@include square(0);
|
130
245
|
|
131
246
|
@if ($direction == up) or ($direction == down) or ($direction == right) or ($direction == left) {
|
132
247
|
border-color: transparent;
|
@@ -136,9 +251,9 @@
|
|
136
251
|
@if $direction == up {
|
137
252
|
border-bottom-color: $color;
|
138
253
|
} @else if $direction == right {
|
139
|
-
border-left-color:
|
254
|
+
border-left-color: $color;
|
140
255
|
} @else if $direction == down {
|
141
|
-
border-top-color:
|
256
|
+
border-top-color: $color;
|
142
257
|
} @else if $direction == left {
|
143
258
|
border-right-color: $color;
|
144
259
|
}
|
@@ -165,7 +280,25 @@
|
|
165
280
|
}
|
166
281
|
}
|
167
282
|
|
168
|
-
|
283
|
+
|
284
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
285
|
+
|
286
|
+
Triangle with Borders
|
287
|
+
|
288
|
+
Add a css-only triangle width side borders, usefull for tooltips. For now only side triangles with border are suported.
|
289
|
+
|
290
|
+
@include triangle_border($size, $color, $border-color, $border-width, $direction);
|
291
|
+
|
292
|
+
* `$size`: Same as `square`
|
293
|
+
* `$color`: Color of the triangle
|
294
|
+
* `$border-color`: Border color of the triangle
|
295
|
+
* `$border-width`: Border width of the triangle
|
296
|
+
* `$direction`: left or right
|
297
|
+
|
298
|
+
Styleguide 23.10
|
299
|
+
|
300
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
301
|
+
|
169
302
|
@mixin triangle_border($size, $color, $border-color, $border-width, $direction) {
|
170
303
|
|
171
304
|
$border-width-fix: '';
|
@@ -201,10 +334,20 @@
|
|
201
334
|
}
|
202
335
|
}
|
203
336
|
|
337
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
338
|
+
|
339
|
+
Text inset shadow
|
340
|
+
|
341
|
+
@include text-inset-shadow($bg, $textcolor, $contrast);
|
342
|
+
|
343
|
+
* `$bg`: Background color of the text
|
344
|
+
* `$textcolor`: Color of the text
|
345
|
+
* `$contrast`: How much stronger the inset will be
|
346
|
+
|
347
|
+
Styleguide 23.11
|
348
|
+
|
349
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
204
350
|
|
205
|
-
// ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
206
|
-
// Colors
|
207
|
-
// --------------------------------------------------------------------------------------------------------------------
|
208
351
|
@mixin text-inset-shadow($bg: #fff, $textcolor: #054d4a, $contrast: #f43059) {
|
209
352
|
$shadow: darken($textcolor, 30%);
|
210
353
|
|
@@ -212,19 +355,55 @@
|
|
212
355
|
text-shadow: 1px 5px 7px $bg, 0 0 0 rgba($shadow,.8);
|
213
356
|
}
|
214
357
|
|
358
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
359
|
+
|
360
|
+
Alpha Color
|
361
|
+
|
362
|
+
Alpha color with ie full opacity fallback (for IE)
|
363
|
+
|
364
|
+
@include alpha-color($color, $alpha, $attribute);
|
365
|
+
|
366
|
+
* `$color`: Base HEX color
|
367
|
+
* `$alpha`: Opacity
|
368
|
+
* `$attribute`: On what attribute
|
369
|
+
|
370
|
+
Example
|
371
|
+
|
372
|
+
@include alpha-color(#000, .5, color);
|
373
|
+
|
374
|
+
Become
|
375
|
+
|
376
|
+
color: #000;
|
377
|
+
color: rgba(0,0,0,.5);
|
378
|
+
|
379
|
+
Styleguide 23.12
|
380
|
+
|
381
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
382
|
+
|
215
383
|
@mixin alpha-color($color: #fff, $alpha: .5, $attribute: background) {
|
216
384
|
@if $attribute == color {
|
217
385
|
color: $color;
|
218
386
|
color: rgba($color, $alpha);
|
219
387
|
} @else {
|
220
|
-
#{$attribute}
|
221
|
-
#{$attribute}
|
388
|
+
#{$attribute}: $color;
|
389
|
+
#{$attribute}: rgba($color, $alpha);
|
222
390
|
}
|
223
391
|
}
|
224
392
|
|
225
|
-
|
226
|
-
|
227
|
-
|
393
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
394
|
+
|
395
|
+
Keyframes support
|
396
|
+
|
397
|
+
Used for creating custom animations.
|
398
|
+
|
399
|
+
@include keyframes($name);
|
400
|
+
|
401
|
+
* `$name`: Name of the keyframe
|
402
|
+
|
403
|
+
Styleguide 23.13
|
404
|
+
|
405
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
406
|
+
|
228
407
|
@mixin keyframes($name) {
|
229
408
|
@-webkit-keyframes #{$name} {
|
230
409
|
@content;
|
@@ -242,10 +421,18 @@
|
|
242
421
|
}
|
243
422
|
}
|
244
423
|
|
424
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
425
|
+
|
426
|
+
Nav divider
|
427
|
+
|
428
|
+
@include nav-divider($top $bottom);
|
245
429
|
|
246
|
-
|
247
|
-
|
248
|
-
|
430
|
+
* `$top`: Color of the top border
|
431
|
+
* `$bottom`: Color of the bottom border
|
432
|
+
|
433
|
+
Styleguide 23.14
|
434
|
+
|
435
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
249
436
|
|
250
437
|
@mixin nav-divider($top: #e5e5e5, $bottom: false) {
|
251
438
|
*width: 100%;
|
@@ -261,9 +448,21 @@
|
|
261
448
|
@if $bottom { border-bottom: 1px solid $bottom; }
|
262
449
|
}
|
263
450
|
|
264
|
-
|
265
|
-
|
266
|
-
|
451
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
452
|
+
|
453
|
+
Comicbook Shadow
|
454
|
+
|
455
|
+
@include shadow-comicbook($padding $color $size $distance);
|
456
|
+
|
457
|
+
* `$padding`: Border color
|
458
|
+
* `$color`: Color of the shadow
|
459
|
+
* `$size`: Size of the shadow
|
460
|
+
* `$distance`: Distance of the shadow from the image
|
461
|
+
|
462
|
+
Styleguide 23.15
|
463
|
+
|
464
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
465
|
+
|
267
466
|
@mixin shadow-comicbook($padding: 5px, $color: #bbb, $size: 15px, $distance: 10px) {
|
268
467
|
|
269
468
|
$lightColor: lighten($color, 8);
|
@@ -298,21 +497,144 @@
|
|
298
497
|
}
|
299
498
|
}
|
300
499
|
|
500
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
501
|
+
|
502
|
+
Icon Fonts
|
503
|
+
|
504
|
+
Use the unicode character from an icon font to insert it wherever you want.
|
505
|
+
|
506
|
+
@include icon-font($char $font);
|
507
|
+
|
508
|
+
* `$char`: Unicode of the character †
|
509
|
+
* `$font`: What font to use ‡
|
510
|
+
|
511
|
+
† For example for: `` use `xf000`
|
512
|
+
|
513
|
+
‡ Fonts available: Fontawesome, Brandico, Entypo, Fontelico, Maki, Openweb-icons, Typicons, Zocial
|
514
|
+
|
515
|
+
|
516
|
+
Styleguide 23.16
|
517
|
+
|
518
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
301
519
|
|
302
|
-
// ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
303
|
-
// Icon Fonts
|
304
|
-
// --------------------------------------------------------------------------------------------------------------------
|
305
520
|
@mixin icon-font($char: '\f013', $font: 'FontAwesome') {
|
306
521
|
display: inline-block;
|
307
522
|
font-family: $font;
|
308
523
|
content: "#{$char}";
|
309
524
|
}
|
310
525
|
|
526
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
527
|
+
|
528
|
+
Media Queries
|
529
|
+
|
530
|
+
Add media queries to css width simple naming convention.
|
531
|
+
|
532
|
+
@include media(<$media>) {...};
|
533
|
+
|
534
|
+
You can set the start/and with of each step from usins the variables `$lap-start`, `$desk-start`, `$desk-end`.
|
535
|
+
|
536
|
+
* `$media`:
|
537
|
+
* `palm`: Only Palm
|
538
|
+
* `lap`: Only Lap
|
539
|
+
* `lap-and-up`: Lap + Desktop
|
540
|
+
* `portable`: Lap + Palm
|
541
|
+
* `desk`: Only Desktop
|
542
|
+
|
543
|
+
Styleguide 23.17
|
544
|
+
|
545
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
546
|
+
|
547
|
+
@mixin media($media-query){
|
548
|
+
|
549
|
+
@if $media-query == palm { // Palm only
|
550
|
+
@media only screen and (max-width:$palm-end) {
|
551
|
+
@content;
|
552
|
+
}
|
553
|
+
}
|
554
|
+
|
555
|
+
@elseif $media-query == lap{ // Lap only
|
556
|
+
@media only screen and (min-width:$lap-start) and (max-width:$lap-end) {
|
557
|
+
@content;
|
558
|
+
}
|
559
|
+
}
|
560
|
+
|
561
|
+
@elseif $media-query == lap-and-up{ // Lap + Dektop
|
562
|
+
@media only screen and (min-width:$lap-start) {
|
563
|
+
@content;
|
564
|
+
}
|
565
|
+
}
|
566
|
+
|
567
|
+
@elseif $media-query == portable{ // Palm + Lap
|
568
|
+
@media only screen and (max-width:$lap-end) {
|
569
|
+
@content;
|
570
|
+
}
|
571
|
+
}
|
572
|
+
|
573
|
+
@elseif $media-query == desk{ // Desktop only
|
574
|
+
@media only screen and (min-width:$desk-start) {
|
575
|
+
@content;
|
576
|
+
}
|
577
|
+
}
|
578
|
+
|
579
|
+
@else {
|
580
|
+
@content;
|
581
|
+
}
|
582
|
+
|
583
|
+
}
|
584
|
+
|
585
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
586
|
+
|
587
|
+
Sprites
|
588
|
+
|
589
|
+
Rapido use the compass' [Sprites Mixin](http://compass-style.org/help/tutorials/spriting/) that make including sprites easily both in the html and directly in the css,
|
590
|
+
for more info see the full documentation from the link.
|
591
|
+
|
592
|
+
First you need to add to your scss file an import to import all of the seperate icons that will be compiled in a single image.
|
593
|
+
For example if you have a folder named `icons` inside the main `images` folder add this line:
|
594
|
+
|
595
|
+
@import "icons/*.png";
|
596
|
+
|
597
|
+
Then add you have two options:
|
598
|
+
|
599
|
+
Add the sprite in the html with (where `icon_name` is the filename of the icon). .s` is the standard class the must be used with all sprites images.
|
600
|
+
|
601
|
+
<a href="#"><i class="s icons-icon_name"></i> Link</a>
|
602
|
+
|
603
|
+
Or via `@include` from the scss:
|
604
|
+
|
605
|
+
a:before {
|
606
|
+
@include sprite(icon_name)
|
607
|
+
}
|
608
|
+
|
609
|
+
The result is the same.
|
610
|
+
|
611
|
+
Styleguide 23.18
|
612
|
+
|
613
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
614
|
+
|
615
|
+
@mixin sprite($name) {
|
616
|
+
@extend .s;
|
617
|
+
@extend .s-#{$name};
|
618
|
+
}
|
619
|
+
|
620
|
+
/* --------------------------------------------------------------------------------------------------------------------
|
621
|
+
|
622
|
+
Responsive grid
|
623
|
+
|
624
|
+
@include columns ($cols, $cols-container, $omega, $nth-omega, $remove-omega, $from, $media, $highlight-omega);
|
625
|
+
|
626
|
+
* `$cols`: How many columns
|
627
|
+
* `$cols-container`: Columns of the container (default: $total-columns)
|
628
|
+
* `$omega`: Bolean, us if is the last column
|
629
|
+
* `$nth-omega`: If is a multi-row grid list use nth to apply omega to each element at the end of each row (example: `3n` to use omega every 3th element )
|
630
|
+
* `$remove-omega`: Remove omega on previously applied omega (ignore it)
|
631
|
+
* `$from`: Direction, left or right
|
632
|
+
* `$media`: Media query to to use, for responsive grids
|
633
|
+
* `$highlight-omega`: Bolean, used for debugging nth
|
634
|
+
|
635
|
+
Styleguide 23.19
|
311
636
|
|
312
|
-
|
313
|
-
// GRID
|
314
|
-
// --------------------------------------------------------------------------------------------------------------------
|
315
|
-
// @include columns( $cols, $cols-container: $total-columns, $omega: false, $nth-omega: false, $remove-omega: false, $from: left, $media: all, $highlight-omega: false );
|
637
|
+
-------------------------------------------------------------------------------------------------------------------- */
|
316
638
|
|
317
639
|
@mixin columns (
|
318
640
|
$cols,
|
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rapido-css
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.4
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Raffaele Rasini
|
@@ -14,7 +13,6 @@ dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: compass
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ! '>='
|
20
18
|
- !ruby/object:Gem::Version
|
@@ -22,7 +20,6 @@ dependencies:
|
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ! '>='
|
28
25
|
- !ruby/object:Gem::Version
|
@@ -49,6 +46,7 @@ files:
|
|
49
46
|
- stylesheets/components/_close.scss
|
50
47
|
- stylesheets/components/_dropdowns.scss
|
51
48
|
- stylesheets/components/_forms.scss
|
49
|
+
- stylesheets/components/_grids.scss
|
52
50
|
- stylesheets/components/_labels.scss
|
53
51
|
- stylesheets/components/_modals.scss
|
54
52
|
- stylesheets/components/_navs.scss
|
@@ -59,14 +57,13 @@ files:
|
|
59
57
|
- stylesheets/components/_tables.scss
|
60
58
|
- stylesheets/components/_tabs.scss
|
61
59
|
- stylesheets/components/_type.scss
|
62
|
-
- stylesheets/components/config.rb
|
63
60
|
- stylesheets/config.rb
|
64
61
|
- stylesheets/settings/_base.scss
|
65
62
|
- stylesheets/settings/_colors.scss
|
66
63
|
- stylesheets/settings/_components.scss
|
67
64
|
- stylesheets/settings/_dimensions.scss
|
68
65
|
- stylesheets/settings/_effects.scss
|
69
|
-
- stylesheets/
|
66
|
+
- stylesheets/styleguide.md
|
70
67
|
- stylesheets/susy/_susy_background.scss
|
71
68
|
- stylesheets/susy/_susy_functions.scss
|
72
69
|
- stylesheets/susy/_susy_grid.scss
|
@@ -81,34 +78,30 @@ files:
|
|
81
78
|
- stylesheets/utilities/_debug.scss
|
82
79
|
- stylesheets/utilities/_helper-classes.scss
|
83
80
|
- stylesheets/utilities/_icon-fonts.scss
|
84
|
-
- stylesheets/utilities/_media-queries.scss
|
85
81
|
- stylesheets/utilities/_mixins.scss
|
86
|
-
- stylesheets/utilities/_sprites.scss
|
87
|
-
- stylesheets/utilities/config.rb
|
88
82
|
- templates/project/manifest.rb
|
89
83
|
- templates/project/screen.scss
|
90
84
|
homepage: https://github.com/raffone/rapido
|
91
85
|
licenses: []
|
86
|
+
metadata: {}
|
92
87
|
post_install_message:
|
93
88
|
rdoc_options: []
|
94
89
|
require_paths:
|
95
90
|
- lib
|
96
91
|
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
-
none: false
|
98
92
|
requirements:
|
99
93
|
- - ! '>='
|
100
94
|
- !ruby/object:Gem::Version
|
101
95
|
version: '0'
|
102
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
|
-
none: false
|
104
97
|
requirements:
|
105
98
|
- - ! '>='
|
106
99
|
- !ruby/object:Gem::Version
|
107
100
|
version: '0'
|
108
101
|
requirements: []
|
109
102
|
rubyforge_project:
|
110
|
-
rubygems_version:
|
103
|
+
rubygems_version: 2.0.7
|
111
104
|
signing_key:
|
112
|
-
specification_version:
|
105
|
+
specification_version: 4
|
113
106
|
summary: a quick bootstrap prototyping framework
|
114
107
|
test_files: []
|