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.
Files changed (43) hide show
  1. checksums.yaml +15 -0
  2. data/README.md +44 -9
  3. data/stylesheets/_default-styles.scss +309 -138
  4. data/stylesheets/_functions.scss +67 -4
  5. data/stylesheets/_normalize.scss +39 -513
  6. data/stylesheets/_rapido.scss +17 -8
  7. data/stylesheets/_susy.scss +2 -5
  8. data/stylesheets/components/_alerts.scss +39 -5
  9. data/stylesheets/components/_breadcrumbs.scss +21 -4
  10. data/stylesheets/components/_button-groups.scss +42 -17
  11. data/stylesheets/components/_buttons.scss +69 -29
  12. data/stylesheets/components/_captions.scss +38 -19
  13. data/stylesheets/components/_close.scss +14 -3
  14. data/stylesheets/components/_dropdowns.scss +76 -28
  15. data/stylesheets/components/_forms.scss +477 -350
  16. data/stylesheets/components/_grids.scss +86 -0
  17. data/stylesheets/components/_labels.scss +26 -4
  18. data/stylesheets/components/_modals.scss +122 -38
  19. data/stylesheets/components/_navs.scss +51 -21
  20. data/stylesheets/components/_pager.scss +55 -10
  21. data/stylesheets/components/_pagination.scss +40 -25
  22. data/stylesheets/components/_responsive-navs.scss +141 -28
  23. data/stylesheets/components/_sliders.scss +45 -26
  24. data/stylesheets/components/_tables.scss +43 -16
  25. data/stylesheets/components/_tabs.scss +47 -9
  26. data/stylesheets/components/_type.scss +139 -73
  27. data/stylesheets/settings/_base.scss +73 -27
  28. data/stylesheets/settings/_colors.scss +43 -16
  29. data/stylesheets/settings/_components.scss +102 -43
  30. data/stylesheets/settings/_dimensions.scss +273 -92
  31. data/stylesheets/settings/_effects.scss +20 -12
  32. data/stylesheets/styleguide.md +33 -0
  33. data/stylesheets/utilities/_animations.scss +150 -129
  34. data/stylesheets/utilities/_debug.scss +29 -3
  35. data/stylesheets/utilities/_helper-classes.scss +135 -18
  36. data/stylesheets/utilities/_icon-fonts.scss +77 -80
  37. data/stylesheets/utilities/_mixins.scss +385 -63
  38. metadata +6 -13
  39. data/stylesheets/components/config.rb +0 -8
  40. data/stylesheets/settings/config.rb +0 -8
  41. data/stylesheets/utilities/_media-queries.scss +0 -50
  42. data/stylesheets/utilities/_sprites.scss +0 -22
  43. data/stylesheets/utilities/config.rb +0 -8
@@ -1,12 +1,18 @@
1
- // ====================================================================================================================
2
- // SCAFFOLDING
3
- // ====================================================================================================================
1
+ /* ====================================================================================================================
2
+
3
+ Type
4
+
5
+ Styleguide 19
6
+
7
+ ==================================================================================================================== */
4
8
 
5
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
6
9
  // Base
7
10
  // --------------------------------------------------------------------------------------------------------------------
8
11
 
9
- *, *:before, *:after {@include box-sizing(border-box); outline: none;}
12
+ *, *:before, *:after {
13
+ @include box-sizing(border-box);
14
+ outline: none;
15
+ }
10
16
 
11
17
  html {
12
18
  @if $responsive-font-size {
@@ -27,67 +33,70 @@ body {
27
33
  margin: 0;
28
34
  font-family: $base-font-family;
29
35
  color: $text-color;
30
-
31
36
  }
32
37
 
33
38
  img {max-width: 100%;}
34
39
 
35
40
  a, button, textarea, input { outline: none; }
36
41
 
37
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
38
42
  // Links
39
43
  // --------------------------------------------------------------------------------------------------------------------
44
+
40
45
  a {
41
46
  color: $link-color;
42
47
  text-decoration: none;
43
- }
44
- a:hover,
45
- a:focus {
46
- color: $link-color-hover;
47
- text-decoration: none;
48
+
49
+ &:hover,
50
+ &:focus {
51
+ color: $link-color-hover;
52
+ text-decoration: none;
53
+ }
54
+
48
55
  }
49
56
 
50
57
 
51
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
52
- // Body text
53
- // --------------------------------------------------------------------------------------------------------------------
58
+ /* --------------------------------------------------------------------------------------------------------------------
59
+
60
+ Body text
54
61
 
55
- p { margin: 0 0 rhythm(1);}
62
+ Markup:
63
+ <p class="lead">Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
64
+ <p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta gravida at eget metus.</p>
65
+ <small><p>Tight pants next level keffiyeh. Photo booth beard raw denim letterpress vegan messenger bag stumptown.</small>
56
66
 
57
- .lead { @include adjust-font-size-to($h4-size); }
67
+ Styleguide 19.1
58
68
 
59
- .muted { color: $gray; }
69
+ -------------------------------------------------------------------------------------------------------------------- */
60
70
 
61
- .pull-left { float: left; }
62
- .pull-right { float: right; }
63
- .clearfix { @include clearfix; }
64
71
 
72
+ p { margin: 0 0 rhythm(1);}
65
73
 
66
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
67
74
  // Emphasis & misc
68
75
  // --------------------------------------------------------------------------------------------------------------------
69
76
 
70
- small { @include adjust-font-size-to($milli-size); }
77
+ small { @include adjust-font-size-to($milli-size); }
71
78
 
72
- strong { font-weight: bold; }
73
- em { font-style: italic; }
74
- cite { font-style: normal; }
79
+ strong { font-weight: bold; }
80
+ em { font-style: italic; }
81
+ cite { font-style: normal; }
75
82
 
76
- .text-left { text-align: left; }
77
- .text-right { text-align: right; }
78
- .text-center { text-align: center; }
83
+ /* --------------------------------------------------------------------------------------------------------------------
79
84
 
85
+ Headings
80
86
 
81
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
82
- // Headings
83
- // --------------------------------------------------------------------------------------------------------------------
87
+ Markup:
88
+ <h1>h1. This is a very large header.</h1>
89
+ <h2>h2. This is a large header.</h2>
90
+ <h3>h3. This is a medium header.</h3>
91
+ <h4>h4. This is a moderate header.</h4>
92
+ <h5>h5. This is a small header. h1.</h5>
93
+ <h6>h6. This is a tiny header. h1.</h6>
94
+
95
+ Styleguide 19.2
96
+
97
+ -------------------------------------------------------------------------------------------------------------------- */
84
98
 
85
- h1,
86
- h2,
87
- h3,
88
- h4,
89
- h5,
90
- h6 {
99
+ h1, h2, h3, h4, h5, h6 {
91
100
  margin: 0 0 rhythm();
92
101
  text-rendering: optimizelegibility;
93
102
  font-family: $titles-font-family;
@@ -100,46 +109,59 @@ h6 {
100
109
  }
101
110
 
102
111
  h1, .h1 {
103
- @include adjust-font-size-to($h1-size);
112
+ @include adjust-font-size-to($h1-size, $h1-line-height);
104
113
  @extend %h1 !optional;
105
114
  }
106
115
 
107
116
  h2, .h2 {
108
- @include adjust-font-size-to($h2-size);
117
+ @include adjust-font-size-to($h2-size, $h2-line-height);
109
118
  @extend %h2 !optional;
110
119
  }
111
120
 
112
121
  h3, .h3 {
113
- @include adjust-font-size-to($h3-size);
122
+ @include adjust-font-size-to($h3-size, $h3-line-height);
114
123
  @extend %h3 !optional;
115
124
  }
116
125
 
117
126
  h4, .h4 {
118
- @include adjust-font-size-to($h4-size);
127
+ @include adjust-font-size-to($h4-size, $h4-line-height);
119
128
  @extend %h4 !optional;
120
129
  }
121
130
 
122
131
  h5, .h5 {
123
- @include adjust-font-size-to($h5-size);
132
+ @include adjust-font-size-to($h5-size, $h5-line-height);
124
133
  @extend %h5 !optional;
125
134
  }
126
135
 
127
136
  h6, .h6 {
128
- @include adjust-font-size-to($h6-size);
137
+ @include adjust-font-size-to($h6-size, $h6-line-height);
129
138
  @extend %h6 !optional;
130
139
  }
131
140
 
132
-
133
-
134
141
  h1 small { @include adjust-font-size-to($h3-size); }
135
142
  h2 small { @include adjust-font-size-to($h4-size); }
136
143
  h3 small { @include adjust-font-size-to($h5-size); }
137
144
  h4 small { @include adjust-font-size-to($h6-size); }
138
145
 
146
+ /* --------------------------------------------------------------------------------------------------------------------
139
147
 
140
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
141
- // Lists
142
- // --------------------------------------------------------------------------------------------------------------------
148
+ Lists
149
+
150
+ Markup:
151
+ <ul>
152
+ <li>Unordered list item</li>
153
+ <li>Unordered list item</li>
154
+ <li>Unordered list item</li>
155
+ </ul>
156
+ <ol>
157
+ <li>Ordered list item</li>
158
+ <li>Ordered list item</li>
159
+ <li>Ordered list item</li>
160
+ </ol>
161
+
162
+ Styleguide 19.3
163
+
164
+ -------------------------------------------------------------------------------------------------------------------- */
143
165
 
144
166
  .list_style_none, .list-style-none {
145
167
  padding-left: 0;
@@ -148,18 +170,18 @@ h4 small { @include adjust-font-size-to($h6-size); }
148
170
  }
149
171
 
150
172
  // Unordered and Ordered lists
151
- // --------------------------------------------------------------------------------------------------------------------
173
+
152
174
  ul, ol {
153
175
  padding: 0;
154
176
  margin: 0 0 rhythm(1) 25px;
155
177
  }
178
+
156
179
  ul ul,
157
180
  ul ol,
158
181
  ol ol,
159
182
  ol ul {
160
183
  margin-bottom: 0;
161
184
  }
162
- li {}
163
185
 
164
186
  ul.unstyled,
165
187
  ol.unstyled {
@@ -178,31 +200,61 @@ ol.inline {
178
200
  }
179
201
  }
180
202
 
181
- // Description lists
182
- // --------------------------------------------------------------------------------------------------------------------
183
- dl { margin-bottom: rhythm(1); }
184
- dt,
185
- dd { line-height: rhythm(1); }
186
- dt { font-weight: bold; }
187
- dd { margin-left: rhythm(.5); }
203
+ /* --------------------------------------------------------------------------------------------------------------------
204
+
205
+ Definition lists
206
+
207
+ Markup:
208
+ <dl>
209
+ <dt>Rock Hammer</dt>
210
+ <dd>A geologist’s hammer, rock hammer, rock pick or geological pick is a hammer used for splitting and breaking rocks.</dd>
211
+ </dl>
212
+
213
+ Styleguide 19.4
214
+
215
+ -------------------------------------------------------------------------------------------------------------------- */
216
+
217
+ dl { margin-bottom: rhythm(1); }
218
+ dt, dd { }
219
+ dt { font-weight: bold; }
220
+ dd { margin-left: 0; }
221
+
222
+ /* --------------------------------------------------------------------------------------------------------------------
188
223
 
224
+ Horizontal definition list
225
+
226
+ Markup:
227
+ <dl class="dl-horizontal">
228
+ <dt>Rock Hammer</dt>
229
+ <dd>A geologist’s hammer, rock hammer, rock pick or geological pick is a hammer used for splitting and breaking rocks.</dd>
230
+ </dl>
231
+
232
+ Styleguide 19.4.1
233
+
234
+ -------------------------------------------------------------------------------------------------------------------- */
189
235
 
190
236
  .dl-horizontal {
191
- @extend .clearfix;
192
- dt {
193
- float: left;
194
- width: em($horizontal-offset) - 20;
195
- clear: left;
196
- text-align: right;
197
- @include text-overflow();
198
- }
199
-
200
- dd { margin-left: em($horizontal-offset); }
237
+ @extend .clearfix;
238
+ dt {
239
+ @include text-overflow();
240
+ clear: left;
241
+ float: left;
242
+ text-align: right;
243
+ width: em($horizontal-offset) - 20;
244
+ }
245
+
246
+ dd { padding-left: em($horizontal-offset); }
201
247
  }
202
248
 
203
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
204
- // MISC
205
- // --------------------------------------------------------------------------------------------------------------------
249
+ /* --------------------------------------------------------------------------------------------------------------------
250
+
251
+ Horizontal line
252
+
253
+ Markup: <hr />
254
+
255
+ Styleguide 19.5
256
+
257
+ -------------------------------------------------------------------------------------------------------------------- */
206
258
 
207
259
  hr {
208
260
  margin: rhythm(1) 0;
@@ -212,6 +264,7 @@ hr {
212
264
 
213
265
  // Abbreviations and acronyms
214
266
  // --------------------------------------------------------------------------------------------------------------------
267
+
215
268
  abbr[title],
216
269
  abbr[data-original-title] {
217
270
  cursor: help;
@@ -222,8 +275,20 @@ abbr.initialism {
222
275
  text-transform: uppercase;
223
276
  }
224
277
 
225
- // Blockquotes
226
- // --------------------------------------------------------------------------------------------------------------------
278
+ /* --------------------------------------------------------------------------------------------------------------------
279
+
280
+ Blockquotes
281
+
282
+ Markup:
283
+ <blockquote>
284
+ <p>A geologist’s hammer, rock hammer, rock pick or geological pick is a hammer used for splitting and breaking rocks.</p>
285
+ <small><cite>Rock Hammer</cite></small>
286
+ </blockquote>
287
+
288
+ Styleguide 19.6
289
+
290
+ -------------------------------------------------------------------------------------------------------------------- */
291
+
227
292
  blockquote {
228
293
  padding: 0 0 0 rhythm(1);
229
294
  margin: 0;
@@ -274,6 +339,7 @@ blockquote:after {
274
339
 
275
340
  // Addresses
276
341
  // --------------------------------------------------------------------------------------------------------------------
342
+
277
343
  address {
278
344
  display: block;
279
345
  margin-bottom: rhythm(1);
@@ -1,39 +1,85 @@
1
- // ====================================================================================================================
2
- // BASE Settings
3
- // ====================================================================================================================
1
+ /* ====================================================================================================================
4
2
 
5
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
6
- // Debug Mode
7
- // --------------------------------------------------------------------------------------------------------------------
3
+ Base Settings
8
4
 
9
- $debug-mode: false !default;
10
- $default-styles: true !default;
5
+ Styleguide 25
11
6
 
12
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
13
- // Text body size
14
- // --------------------------------------------------------------------------------------------------------------------
7
+ ==================================================================================================================== */
15
8
 
16
- $base-font-size: 14px !default;
17
- $base-line-height: 20px !default;
18
- $round-to-nearest-half-line: true !default;
9
+ /* --------------------------------------------------------------------------------------------------------------------
19
10
 
20
- // Change text size with media query
21
- $responsive-font-size: lap-and-up $base-font-size, palm 16px !default;
11
+ Debug Mode
22
12
 
23
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
24
- // Font families
25
- // --------------------------------------------------------------------------------------------------------------------
13
+ $debug-mode: false # Enable debug mode
14
+ $default-styles: true # Use default styles in _default-styles.scss
26
15
 
27
- $font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
28
- $font-serif: Georgia, "Times New Roman", Times, serif !default;
29
- $font-mono: Monaco, Menlo, Consolas, "Courier New", monospace !default;
16
+ Styleguide 25.1
30
17
 
31
- $base-font-family: $font-sans !default;
32
- $titles-font-family: $font-sans !default;
18
+ -------------------------------------------------------------------------------------------------------------------- */
19
+
20
+ $debug-mode: false !default;
21
+ $default-styles: true !default;
22
+
23
+
24
+ /* --------------------------------------------------------------------------------------------------------------------
25
+
26
+ Text body size
27
+
28
+ $base-font-size: 14px # Default text size to use on body text
29
+ $base-line-height: $base-font-size * 1.5 # Default line-height
30
+ $round-to-nearest-half-line: true # Round the line height for the adjust-font-size-to mixin
31
+
32
+ Change text size with media query. On media query `lap-and-up` (tablet and desktop) use the default text size,
33
+ on `palm` (smartphone) change the base size to 16px, it will be automatically converted to percentage to mantain em proportions.
34
+
35
+ $responsive-font-size: lap-and-up $base-font-size, palm 16px
36
+
37
+ Styleguide 25.2
38
+
39
+ -------------------------------------------------------------------------------------------------------------------- */
40
+
41
+ $base-font-size: 14px !default;
42
+ $base-line-height: $base-font-size * 1.5 !default;
43
+ $round-to-nearest-half-line: true !default;
44
+
45
+ $responsive-font-size: lap-and-up $base-font-size, palm 16px !default;
46
+
47
+
48
+ /* --------------------------------------------------------------------------------------------------------------------
49
+
50
+ Font families
51
+
52
+ $font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif
53
+ $font-serif: Georgia, "Times New Roman", Times, serif
54
+ $font-mono: Monaco, Menlo, Consolas, "Courier New", monospace
55
+
56
+ $base-font-family: $font-sans # Default font family for body text
57
+ $titles-font-family: $font-sans # Default font family for titles
58
+
59
+ Styleguide 25.3
60
+
61
+ -------------------------------------------------------------------------------------------------------------------- */
62
+
63
+ $font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
64
+ $font-serif: Georgia, "Times New Roman", Times, serif !default;
65
+ $font-mono: Monaco, Menlo, Consolas, "Courier New", monospace !default;
66
+
67
+ $base-font-family: $font-sans !default;
68
+ $titles-font-family: $font-sans !default;
69
+
70
+
71
+ /* --------------------------------------------------------------------------------------------------------------------
72
+
73
+ em()
74
+
75
+ To convert `PX` to `EM` using the `$base-font-size` as font size.
76
+
77
+ width: em(20px);
78
+
79
+ Styleguide 24.1
80
+
81
+ -------------------------------------------------------------------------------------------------------------------- */
33
82
 
34
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
35
- // Convert to Ems
36
- // --------------------------------------------------------------------------------------------------------------------
37
83
  @function em($to-size, $from-size: $base-font-size) {
38
84
  @return ($to-size / $from-size) + 0em;
39
85
  }
@@ -1,16 +1,43 @@
1
- // ====================================================================================================================
2
- // BASE COLORS
3
- // ====================================================================================================================
4
-
5
- $black: #000;
6
- $grayDarker: lighten($black, 15);
7
- $grayDark: lighten($black, 30);
8
- $gray: lighten($black, 60);
9
- $grayLight: lighten($black, 85);
10
- $grayLighter: lighten($black, 95);
11
- $white: lighten($black, 100);
12
-
13
- $text-color: #333 !default;
14
-
15
- $link-color: #0066cc !default;
16
- $link-color-hover: darken($link-color, 10%) !default;
1
+ /* ====================================================================================================================
2
+
3
+ Base Colors
4
+
5
+ Used for scaffolding
6
+
7
+ $black: #000
8
+ $grayDarker: lighten($black, 15)
9
+ $grayDark: lighten($black, 30)
10
+ $gray: lighten($black, 60)
11
+ $grayLight: lighten($black, 85)
12
+ $grayLighter: lighten($black, 95)
13
+ $white: #fff
14
+
15
+ Styleguide 26
16
+
17
+ ==================================================================================================================== */
18
+
19
+ $black: #000;
20
+ $grayDarker: lighten($black, 15);
21
+ $grayDark: lighten($black, 30);
22
+ $gray: lighten($black, 60);
23
+ $grayLight: lighten($black, 85);
24
+ $grayLighter: lighten($black, 95);
25
+ $white: lighten($black, 100);
26
+
27
+ /* --------------------------------------------------------------------------------------------------------------------
28
+
29
+ Default colors
30
+
31
+ $text-color: #333
32
+
33
+ $link-color: #0066cc
34
+ $link-color-hover: darken($link-color, 10%)
35
+
36
+ Styleguide 26.1
37
+
38
+ -------------------------------------------------------------------------------------------------------------------- */
39
+
40
+ $text-color: #333 !default;
41
+
42
+ $link-color: #0066cc !default;
43
+ $link-color-hover: darken($link-color, 10) !default;
@@ -1,43 +1,102 @@
1
- // ====================================================================================================================
2
- // ENABLE COMPONENTS
3
- // ====================================================================================================================
4
-
5
- $alerts: true !default;
6
- $breadcrumbs: true !default;
7
- $button-groups: true !default;
8
- $buttons: true !default;
9
- $captions: true !default;
10
- $close: true !default;
11
- $dropdowns: true !default;
12
-
13
- $forms: true !default;
14
- $forms-append: true !default;
15
- $forms-grid: true !default;
16
- $forms-aligned: true !default;
17
- $forms-inline: true !default;
18
-
19
- $navs: true !default;
20
- $navs-responsive: true !default;
21
- $pager: true !default;
22
- $pagination: true !default;
23
- $labels: true !default;
24
- $tables: true !default;
25
-
26
- $tabs: true !default;
27
- $slider: true !default;
28
- $modal: true !default;
29
- $modal-buttons: true !default;
30
- $modal-thumbs: true !default;
31
-
32
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
33
- // Icon Fonts
34
- // --------------------------------------------------------------------------------------------------------------------
35
- $use-fontawesome: true !default;
36
-
37
- $use-brandico: false !default;
38
- $use-entypo: false !default;
39
- $use-fontelico: false !default;
40
- $use-maki: false !default;
41
- $use-openweb-icons: false !default;
42
- $use-typicons: false !default;
43
- $use-zocial: false !default;
1
+ /* ====================================================================================================================
2
+
3
+ Base Components
4
+
5
+ Enable or disable components, so you can have in the css only what you need.
6
+
7
+ $alerts: true # components/_alerts.scss
8
+ $breadcrumbs: true # components/_breadcrumbs.scss
9
+ $button-groups: true # components/_button-group.scss
10
+ $buttons: true # components/_buttons.scss
11
+ $captions: true # components/_captions.scss
12
+ $close: true # components/_close.scss
13
+ $dropdowns: true # components/_dropdowns.scss
14
+ $forms: true # components/_forms.scss
15
+ $forms-aligned: true # components/_forms.scss
16
+ $forms-append: true # components/_forms.scss
17
+ $forms-grid: true # components/_forms.scss
18
+ $forms-inline: true # components/_forms.scss
19
+ $grids: true # components/_grids.scss
20
+ $grids-helpers: true # components/_grids.scss
21
+ $labels: true # components/_labels.scss
22
+ $modal: true # components/_modal.scss
23
+ $modal-buttons: true # components/_modal.scss
24
+ $modal-thumbs: true # components/_modal.scss
25
+ $navs-responsive: true # components/_navs-responsiv.scss
26
+ $navs: true # components/_navs.scss
27
+ $pager: true # components/_pager.scss
28
+ $pagination: true # components/_pagination.scss
29
+ $slider: true # components/_slider.scss
30
+ $sprites: true # components/_sprites.scss
31
+ $tables: true # components/_tables.scss
32
+ $tabs: true # components/_tabs.scss
33
+
34
+ $width-helper-classes: true # "Elements width" helper class
35
+
36
+ Styleguide 27
37
+
38
+ ==================================================================================================================== */
39
+
40
+ $alerts: true !default;
41
+ $breadcrumbs: true !default;
42
+ $button-groups: true !default;
43
+ $buttons: true !default;
44
+ $captions: true !default;
45
+ $close: true !default;
46
+ $dropdowns: true !default;
47
+
48
+ $forms: true !default;
49
+ $forms-append: true !default;
50
+ $forms-grid: true !default;
51
+ $forms-aligned: true !default;
52
+ $forms-inline: true !default;
53
+
54
+ $grids: true !default;
55
+ $grids-helpers: true !default;
56
+
57
+ $labels: true !default;
58
+ $navs-responsive: true !default;
59
+ $navs: true !default;
60
+ $pager: true !default;
61
+ $pagination: true !default;
62
+ $tables: true !default;
63
+
64
+ $tabs: true !default;
65
+ $slider: true !default;
66
+ $modal: true !default;
67
+ $modal-buttons: true !default;
68
+ $modal-thumbs: true !default;
69
+
70
+ $sprites: true !default;
71
+ $width-helper-classes: true !default;
72
+
73
+ /* --------------------------------------------------------------------------------------------------------------------
74
+
75
+ Icon Fonts
76
+
77
+ Icon Fonts ready to use with the mixin `icon-font`.
78
+ Font files are not required, is used the [We Love Icon Fonts](http://weloveiconfonts.com/) CDN.
79
+
80
+ $use-fontawesome: true # http://fortawesome.github.io/Font-Awesome/
81
+
82
+ $use-brandico: false # http://fontello.github.io/brandico.font/demo.html
83
+ $use-entypo: false # http://www.entypo.com/
84
+ $use-fontelico: false # https://github.com/fontello/fontelico.font
85
+ $use-maki: false # http://www.mapbox.com/maki/
86
+ $use-openweb-icons: false # http://pfefferle.github.io/openwebicons/
87
+ $use-typicons: false # http://typicons.com/
88
+ $use-zocial: false # http://zocial.smcllns.com/
89
+
90
+ Styleguide 27.1
91
+
92
+ -------------------------------------------------------------------------------------------------------------------- */
93
+
94
+ $use-fontawesome: true !default;
95
+
96
+ $use-brandico: false !default;
97
+ $use-entypo: false !default;
98
+ $use-fontelico: false !default;
99
+ $use-maki: false !default;
100
+ $use-openweb-icons: false !default;
101
+ $use-typicons: false !default;
102
+ $use-zocial: false !default;