rapido-css 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
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,6 +1,16 @@
1
+ /* ====================================================================================================================
2
+
3
+ Functions
4
+
5
+ For 99% of the framework I used Compass' and Susy's functions but I've made some for covering edge cases.
6
+
7
+ Styleguide 24
8
+
9
+ ==================================================================================================================== */
10
+
11
+ // Convert Easing from Transform to Transition
12
+ // --------------------------------------------------------------------------------------------------------------------
1
13
 
2
- // Conversione da Easing da Transform a Transition
3
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
4
14
  @function toBezier($easing) {
5
15
 
6
16
  @if $easing == linear { @return linear; }
@@ -40,11 +50,64 @@
40
50
  }
41
51
 
42
52
 
43
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
53
+ /* --------------------------------------------------------------------------------------------------------------------
54
+
55
+ neg()
56
+
57
+ Convert a value to negative.
58
+
59
+ Example:
60
+
61
+ left: neg(10em);
62
+
63
+ Become:
64
+
65
+ left: -10em
66
+
67
+ Styleguide 24.2
68
+
69
+ -------------------------------------------------------------------------------------------------------------------- */
70
+
71
+ @function neg($n) {
72
+ @return (0 - $n);
73
+ }
74
+
75
+ /* --------------------------------------------------------------------------------------------------------------------
76
+
77
+ rhythm_neg()
78
+
79
+ Create a negative `rhythm()` value. More info about the rhythm function: [
80
+ Vertical Rhythm](http://compass-style.org/reference/compass/typography/vertical_rhythm/#function-rhythm).
81
+
82
+ Example:
83
+
84
+ margin-left: rhythm_neg(1);
85
+
86
+ Become:
87
+
88
+ margin-left: -1.42857em;
89
+
90
+ Styleguide 24.3
91
+
92
+ -------------------------------------------------------------------------------------------------------------------- */
93
+
44
94
  @function rhythm_neg($i: 1) {
45
95
  @return -(rhythm($i));
46
96
  }
47
97
 
98
+
99
+ /* --------------------------------------------------------------------------------------------------------------------
100
+
101
+ space_neg()
102
+
103
+ Similar to `rhythm_neg()` but for Susy's `space()` function, more info:
104
+ [Susy Reference](http://susy.oddbird.net/guides/reference/#ref-space).
105
+
106
+ Styleguide 24.4
107
+
108
+ -------------------------------------------------------------------------------------------------------------------- */
109
+
48
110
  @function space_neg($w: 1, $c: 12) {
49
111
  @return -(space($w, $c));
50
- }
112
+ }
113
+
@@ -1,513 +1,39 @@
1
- // =============================================================================
2
- // Normalize.scss based on Nicolas Gallagher and Jonathan Neal's
3
- // normalize.css v2.1.0 | MIT License | git.io/normalize
4
- // =============================================================================
5
-
6
- // =============================================================================
7
- // Normalize.scss settings
8
- // =============================================================================
9
-
10
-
11
- // Set to true if you want to add support for IE6 and IE7
12
- // Notice: setting to true might render some elements
13
- // slightly differently than when set to false
14
- $legacy_support_for_ie: false !default; // Used also in Compass
15
-
16
-
17
- // Set the default font family here so you don't have to override it later
18
- $normalized_font_family: sans-serif !default;
19
-
20
- $normalize_headings: true !default;
21
-
22
- $h1_font_size: 2em !default;
23
- $h2_font_size: 1.5em !default;
24
- $h3_font_size: 1.17em !default;
25
- $h4_font_size: 1em !default;
26
- $h5_font_size: 0.83em !default;
27
- $h6_font_size: 0.75em !default;
28
-
29
- $h1_margin: 0.67em 0 !default;
30
- $h2_margin: 0.83em 0 !default;
31
- $h3_margin: 1em 0 !default;
32
- $h4_margin: 1.33em 0 !default;
33
- $h5_margin: 1.67em 0 !default;
34
- $h6_margin: 2.33em 0 !default;
35
-
36
- // =============================================================================
37
- // HTML5 display definitions
38
- // =============================================================================
39
-
40
- // Corrects block display not defined in IE6/7/8/9 & FF3
41
-
42
- article,
43
- aside,
44
- details,
45
- figcaption,
46
- figure,
47
- footer,
48
- header,
49
- hgroup,
50
- nav,
51
- section,
52
- summary {
53
- display: block;
54
- }
55
-
56
- // Corrects inline-block display not defined in IE6/7/8/9 & FF3
57
-
58
- audio,
59
- canvas,
60
- video {
61
- display: inline-block;
62
- @if $legacy_support_for_ie {
63
- *display: inline;
64
- *zoom: 1;
65
- }
66
- }
67
-
68
- // 1. Prevents modern browsers from displaying 'audio' without controls
69
- // 2. Remove excess height in iOS5 devices
70
-
71
- audio:not([controls]) {
72
- display: none; // 1
73
- height: 0; // 2
74
- }
75
-
76
- // Addresses styling for 'hidden' attribute not present in IE8/9
77
-
78
- [hidden] {
79
- display: none;
80
- }
81
-
82
- // =============================================================================
83
- // Base
84
- // =============================================================================
85
-
86
- // 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
87
- // http://clagnut.com/blog/348/#c790
88
- // 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
89
- // www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
90
-
91
- html {
92
- @if $legacy_support_for_ie {
93
- font-size: 100%; // 1
94
- }
95
- -webkit-text-size-adjust: 100%; // 2
96
- -ms-text-size-adjust: 100%; // 2
97
- }
98
-
99
- // Addresses font-family inconsistency between 'textarea' and other form elements.
100
-
101
- html,
102
- button,
103
- input,
104
- select,
105
- textarea {
106
- font-family: sans-serif;
107
- }
108
-
109
- // Addresses margins handled incorrectly in IE6/7
110
-
111
- body {
112
- margin: 0;
113
- }
114
-
115
- // =============================================================================
116
- // Links
117
- // =============================================================================
118
-
119
- // 1. Addresses outline displayed oddly in Chrome
120
- // 2. Improves readability when focused and also mouse hovered in all browsers
121
- // people.opera.com/patrickl/experiments/keyboard/test
122
-
123
- a {
124
-
125
- // 1
126
-
127
- &:focus {
128
- outline: thin dotted;
129
- }
130
-
131
- // 2
132
-
133
- &:hover,
134
- &:active {
135
- outline: 0;
136
- }
137
- }
138
-
139
- // =============================================================================
140
- // Typography
141
- // =============================================================================
142
-
143
- // Addresses font sizes and margins set differently in IE6/7
144
- // Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
145
-
146
- @if $normalize_headings == true {
147
- h1 {
148
- font-size: $h1_font_size;
149
- margin: $h1_margin;
150
- }
151
-
152
- h2 {
153
- font-size: $h2_font_size;
154
- margin: $h2_margin;
155
- }
156
-
157
- h3 {
158
- font-size: $h3_font_size;
159
- margin: $h3_margin;
160
- }
161
-
162
- h4 {
163
- font-size: $h4_font_size;
164
- margin: $h4_margin;
165
- }
166
-
167
- h5 {
168
- font-size: $h5_font_size;
169
- margin: $h5_margin;
170
- }
171
-
172
- h6 {
173
- font-size: $h6_font_size;
174
- margin: $h6_margin;
175
- }
176
- }
177
-
178
- // Addresses styling not present in IE 8/9, S5, Chrome
179
-
180
- abbr[title] {
181
- border-bottom: 1px dotted;
182
- }
183
-
184
- // Addresses style set to 'bolder' in FF3+, S4/5, Chrome
185
-
186
- b,
187
- strong {
188
- font-weight: bold;
189
- }
190
-
191
- @if $legacy_support_for_ie {
192
- blockquote {
193
- margin: 1em 40px;
194
- }
195
- }
196
-
197
- // Addresses styling not present in S5, Chrome
198
-
199
- dfn {
200
- font-style: italic;
201
- }
202
-
203
- // Addresses styling not present in IE6/7/8/9
204
-
205
- mark {
206
- background: #ff0;
207
- color: #000;
208
- }
209
-
210
- // Addresses margins set differently in IE6/7
211
- @if $legacy_support_for_ie {
212
- p,
213
- pre {
214
- margin: 1em 0;
215
- }
216
- }
217
-
218
- // Corrects font family set oddly in IE6, S4/5, Chrome
219
- // en.wikipedia.org/wiki/User:Davidgothberg/Test59
220
-
221
- code,
222
- kbd,
223
- pre,
224
- samp {
225
- font-family: monospace, serif;
226
- @if $legacy_support_for_ie {
227
- _font-family: 'courier new', monospace;
228
- }
229
- font-size: 1em;
230
- }
231
-
232
- // Improves readability of pre-formatted text in all browsers
233
-
234
- pre {
235
- white-space: pre;
236
- white-space: pre-wrap;
237
- word-wrap: break-word;
238
- }
239
-
240
- // Set consistent quote types.
241
-
242
- q {
243
- quotes: "\201C" "\201D" "\2018" "\2019";
244
- }
245
-
246
- // 1. Addresses CSS quotes not supported in IE6/7
247
- // 2. Addresses quote property not supported in S4
248
-
249
- // 1
250
- @if $legacy_support_for_ie {
251
- q {
252
- quotes: none;
253
- }
254
- }
255
-
256
- // 2
257
- q:before,
258
- q:after {
259
- content: '';
260
- content: none;
261
- }
262
-
263
- // Address inconsistent and variable font size in all browsers.
264
-
265
- small {
266
- font-size: 80%;
267
- }
268
-
269
- // Prevents sub and sup affecting line-height in all browsers
270
- // gist.github.com/413930
271
-
272
- sub,
273
- sup {
274
- font-size: 75%;
275
- line-height: 0;
276
- position: relative;
277
- vertical-align: baseline;
278
- }
279
-
280
- sup {
281
- top: -0.5em;
282
- }
283
-
284
- sub {
285
- bottom: -0.25em;
286
- }
287
-
288
- // =============================================================================
289
- // Lists
290
- // =============================================================================
291
-
292
- // Addresses margins set differently in IE6/7
293
- @if $legacy_support_for_ie {
294
- dl,
295
- menu,
296
- ol,
297
- ul {
298
- margin: 1em 0;
299
- }
300
- }
301
-
302
- @if $legacy_support_for_ie {
303
- dd {
304
- margin: 0 0 0 40px;
305
- }
306
- }
307
-
308
- // Addresses paddings set differently in IE6/7
309
- @if $legacy_support_for_ie {
310
- menu,
311
- ol,
312
- ul {
313
- padding: 0 0 0 40px;
314
- }
315
- }
316
-
317
- // Corrects list images handled incorrectly in IE7
318
-
319
- nav {
320
- ul,
321
- ol {
322
- @if $legacy_support_for_ie {
323
- list-style-image: none;
324
- }
325
- }
326
- }
327
-
328
- // =============================================================================
329
- // Embedded content
330
- // =============================================================================
331
-
332
- // 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
333
- // 2. Improves image quality when scaled in IE7
334
- // code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
335
-
336
- img {
337
- border: 0; // 1
338
- @if $legacy_support_for_ie {
339
- -ms-interpolation-mode: bicubic; // 2
340
- }
341
- }
342
-
343
- // Corrects overflow displayed oddly in IE9
344
-
345
- svg:not(:root) {
346
- overflow: hidden;
347
- }
348
-
349
- // =============================================================================
350
- // Figures
351
- // =============================================================================
352
-
353
- // Addresses margin not present in IE6/7/8/9, S5, O11
354
-
355
- figure {
356
- margin: 0;
357
- }
358
-
359
- // =============================================================================
360
- // Forms
361
- // =============================================================================
362
-
363
- // Corrects margin displayed oddly in IE6/7
364
- @if $legacy_support_for_ie {
365
- form {
366
- margin: 0;
367
- }
368
- }
369
-
370
- // Define consistent border, margin, and padding
371
-
372
- fieldset {
373
- border: 1px solid #c0c0c0;
374
- margin: 0 2px;
375
- padding: 0.35em 0.625em 0.75em;
376
- }
377
-
378
- // 1. Corrects color not being inherited in IE6/7/8/9
379
- // 2. Remove padding so people aren't caught out if they zero out fieldsets.
380
- // 3. Corrects text not wrapping in FF3
381
- // 4. Corrects alignment displayed oddly in IE6/7
382
-
383
- legend {
384
- border: 0; // 1
385
- padding: 0; // 2
386
- white-space: normal; // 3
387
- @if $legacy_support_for_ie {
388
- *margin-left: -7px; // 4
389
- }
390
- }
391
-
392
- // 1. Correct font family not being inherited in all browsers.
393
- // 2. Corrects font size not being inherited in all browsers
394
- // 3. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
395
- // 4. Improves appearance and consistency in all browsers
396
-
397
- button,
398
- input,
399
- select,
400
- textarea {
401
- font-family: inherit; // 1
402
- font-size: 100%; // 2
403
- margin: 0; // 3
404
- vertical-align: baseline; // 4
405
- @if $legacy_support_for_ie {
406
- *vertical-align: middle; // 4
407
- }
408
- }
409
-
410
- // Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
411
-
412
- button,
413
- input {
414
- line-height: normal;
415
- }
416
-
417
- // Address inconsistent `text-transform` inheritance for `button` and `select`.
418
- // All other form control elements do not inherit `text-transform` values.
419
- // Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
420
- // Correct `select` style inheritance in Firefox 4+ and Opera.
421
-
422
- button,
423
- select {
424
- text-transform: none;
425
- }
426
-
427
- // 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
428
- // and `video` controls
429
- // 2. Corrects inability to style clickable 'input' types in iOS
430
- // 3. Improves usability and consistency of cursor style between image-type
431
- // 'input' and others
432
- // 4. Removes inner spacing in IE7 without affecting normal text inputs
433
- // Known issue: inner spacing remains in IE6
434
-
435
- button,
436
- html input[type="button"], // 1
437
- input[type="reset"],
438
- input[type="submit"] {
439
- -webkit-appearance: button; // 2
440
- cursor: pointer; // 3
441
- @if $legacy_support_for_ie {
442
- *overflow: visible; // 4
443
- }
444
- }
445
-
446
- // Re-set default cursor for disabled elements
447
-
448
- button[disabled],
449
- input[disabled] {
450
- cursor: default;
451
- }
452
-
453
- // 1. Addresses box sizing set to content-box in IE8/9
454
- // 2. Removes excess padding in IE8/9
455
- // 3. Removes excess padding in IE7
456
- // Known issue: excess padding remains in IE6
457
-
458
- input[type="checkbox"],
459
- input[type="radio"] {
460
- box-sizing: border-box; // 1
461
- padding: 0; // 2
462
- @if $legacy_support_for_ie {
463
- *height: 13px; // 3
464
- *width: 13px; // 3
465
- }
466
- }
467
-
468
- // 1. Addresses appearance set to searchfield in S5, Chrome
469
- // 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
470
-
471
- input[type="search"] {
472
- -webkit-appearance: textfield; // 1
473
- -moz-box-sizing: content-box;
474
- -webkit-box-sizing: content-box; // 2
475
- box-sizing: content-box;
476
- }
477
-
478
- // Remove inner padding and search cancel button in Safari 5 and Chrome
479
- // on OS X.
480
-
481
- input[type="search"]::-webkit-search-cancel-button,
482
- input[type="search"]::-webkit-search-decoration {
483
- -webkit-appearance: none;
484
- }
485
-
486
- // Removes inner padding and border in FF3+
487
- // www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
488
-
489
- button, input {
490
- &::-moz-focus-inner {
491
- border: 0;
492
- padding: 0;
493
- }
494
- }
495
-
496
- // 1. Removes default vertical scrollbar in IE6/7/8/9
497
- // 2. Improves readability and alignment in all browsers
498
-
499
- textarea {
500
- overflow: auto; // 1
501
- vertical-align: top; // 2
502
- }
503
-
504
- // =============================================================================
505
- // Tables
506
- // =============================================================================
507
-
508
- // Remove most spacing between table cells
509
-
510
- table {
511
- border-collapse: collapse;
512
- border-spacing: 0;
513
- }
1
+ // normalize.css v2.1.2 | MIT License | git.io/normalize
2
+
3
+ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {display: block;}
4
+ audio, canvas, video {display: inline-block;}
5
+ audio:not([controls]) {display: none; height: 0;}
6
+ [hidden] {display: none;}
7
+ html {font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}
8
+ body {margin: 0;}
9
+ a:focus {outline: thin dotted;}
10
+ a:active, a:hover {outline: 0;}
11
+ h1 {font-size: 2em; margin: 0.67em 0;}
12
+ abbr[title] {border-bottom: 1px dotted;}
13
+ b, strong {font-weight: bold;}
14
+ dfn {font-style: italic;}
15
+ hr {-moz-box-sizing: content-box; box-sizing: content-box; height: 0;}
16
+ mark {background: #ff0; color: #000;}
17
+ code, kbd, pre, samp {font-family: monospace, serif; font-size: 1em;}
18
+ pre {white-space: pre-wrap;}
19
+ q {quotes: "\201C" "\201D" "\2018" "\2019";}
20
+ small {font-size: 80%;}
21
+ sub, sup {font-size: 75%; line-height: 0; position: relative; vertical-align: baseline;}
22
+ sup {top: -0.5em;}
23
+ sub {bottom: -0.25em;}
24
+ img {border: 0;}
25
+ svg:not(:root) {overflow: hidden;}
26
+ figure {margin: 0;}
27
+ fieldset {border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em;}
28
+ legend {border: 0; padding: 0;}
29
+ button, input, select, textarea {font-family: inherit; font-size: 100%; margin: 0;}
30
+ button, input {line-height: normal;}
31
+ button, select {text-transform: none;}
32
+ button, html input[type="button"], input[type="reset"], input[type="submit"] {-webkit-appearance: button; cursor: pointer;}
33
+ button[disabled], html input[disabled] {cursor: default;}
34
+ input[type="checkbox"], input[type="radio"] {box-sizing: border-box; padding: 0;}
35
+ input[type="search"] {-webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box;}
36
+ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}
37
+ button::-moz-focus-inner, input::-moz-focus-inner {border: 0; padding: 0;}
38
+ textarea {overflow: auto; vertical-align: top;}
39
+ table {border-collapse: collapse; border-spacing: 0;}
@@ -1,14 +1,19 @@
1
+ // Rapido Css | http://git.io/rapido
2
+ // ====================================================================================================================
1
3
 
2
4
  // Normalize
3
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
5
+ // --------------------------------------------------------------------------------------------------------------------
6
+
4
7
  @import "normalize";
5
8
 
6
9
  // Functions
7
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
10
+ // --------------------------------------------------------------------------------------------------------------------
11
+
8
12
  @import "functions";
9
13
 
10
14
  // Settings
11
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
15
+ // --------------------------------------------------------------------------------------------------------------------
16
+
12
17
  @import "settings/base";
13
18
  @import "settings/colors";
14
19
  @import "settings/dimensions";
@@ -16,21 +21,23 @@
16
21
  @import "settings/effects";
17
22
 
18
23
  // External Frameworks
19
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
24
+ // --------------------------------------------------------------------------------------------------------------------
25
+
20
26
  @import "compass";
21
27
  @import "susy";
22
28
 
23
29
  // Utilities
24
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
30
+ // --------------------------------------------------------------------------------------------------------------------
31
+
25
32
  @import "utilities/mixins";
26
- @import "utilities/media-queries";
27
33
  @import "utilities/helper-classes";
28
34
  @import "utilities/debug";
29
35
  @import "utilities/animations";
30
36
  @import "utilities/icon-fonts";
31
37
 
32
38
  // Components
33
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
39
+ // --------------------------------------------------------------------------------------------------------------------
40
+
34
41
  @import "components/type";
35
42
  @import "components/forms";
36
43
  @import "components/tables";
@@ -50,10 +57,12 @@
50
57
 
51
58
  @import "components/alerts";
52
59
 
60
+ @import "components/grids";
53
61
  @import "components/modals";
54
62
  @import "components/sliders";
55
63
  @import "components/tabs";
56
64
 
57
65
  // Default styles
58
- // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
66
+ // --------------------------------------------------------------------------------------------------------------------
67
+
59
68
  @import "default-styles";