piecss 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/sass/piecss/_behavior.css +432 -1
  3. data/sass/piecss/_behavior.css.map +2 -2
  4. data/sass/piecss/_behavior.scss +10 -0
  5. data/sass/piecss/_utilities.scss +1 -1
  6. data/sass/piecss/behavior/base/_base.scss +3 -568
  7. data/sass/piecss/behavior/base/_collection.scss +861 -0
  8. data/sass/piecss/behavior/base/_settings.scss +38 -367
  9. data/sass/piecss/behavior/button/_button.scss +1 -1
  10. data/sass/piecss/behavior/form/_form.scss +1 -1
  11. data/sass/piecss/settings/_breakpoint.css +70 -0
  12. data/sass/piecss/settings/_colour.css +2 -0
  13. data/sass/piecss/settings/_colour.css.map +7 -0
  14. data/sass/piecss/settings/_colour.scss +2 -4
  15. data/sass/piecss/settings/_constants.css +2 -0
  16. data/sass/piecss/settings/_constants.css.map +7 -0
  17. data/sass/piecss/settings/_fallback.css +2 -0
  18. data/sass/piecss/settings/_fallback.css.map +7 -0
  19. data/sass/piecss/settings/_font.css +2 -0
  20. data/sass/piecss/settings/_font.css.map +7 -0
  21. data/sass/piecss/settings/_layout.css +60 -0
  22. data/sass/piecss/settings/_miscellaneous.css +2 -0
  23. data/sass/piecss/settings/_miscellaneous.css.map +7 -0
  24. data/sass/piecss/settings/_rhythm.css +2 -0
  25. data/sass/piecss/settings/_rhythm.css.map +7 -0
  26. data/sass/piecss/settings/_typography.css +2 -0
  27. data/sass/piecss/settings/_typography.css.map +7 -0
  28. data/sass/piecss/settings/_unit.css +2 -0
  29. data/sass/piecss/settings/_unit.css.map +7 -0
  30. data/sass/piecss/settings/_unit.scss +1 -1
  31. data/sass/piecss/utilities/_breakpoint.css +2 -0
  32. data/sass/piecss/utilities/_breakpoint.css.map +7 -0
  33. data/sass/piecss/utilities/_cache.css +2 -0
  34. data/sass/piecss/utilities/_cache.css.map +7 -0
  35. data/sass/piecss/utilities/_collection.scss +192 -0
  36. data/sass/piecss/utilities/_colour.css +2 -0
  37. data/sass/piecss/utilities/_colour.css.map +7 -0
  38. data/sass/piecss/utilities/_element.css +2 -0
  39. data/sass/piecss/utilities/_element.css.map +7 -0
  40. data/sass/piecss/utilities/_image.css +2 -0
  41. data/sass/piecss/utilities/_image.css.map +7 -0
  42. data/sass/piecss/utilities/_layout.css +2 -0
  43. data/sass/piecss/utilities/_layout.css.map +7 -0
  44. data/sass/piecss/utilities/_list.css +2 -0
  45. data/sass/piecss/utilities/_list.css.map +7 -0
  46. data/sass/piecss/utilities/_miscellaneous.css +2 -0
  47. data/sass/piecss/utilities/_miscellaneous.css.map +7 -0
  48. data/sass/piecss/utilities/_rhythm.css +2 -0
  49. data/sass/piecss/utilities/_rhythm.css.map +7 -0
  50. data/sass/piecss/utilities/_side.css +2 -0
  51. data/sass/piecss/utilities/_side.css.map +7 -0
  52. data/sass/piecss/utilities/_string.css +2 -0
  53. data/sass/piecss/utilities/_string.css.map +7 -0
  54. data/sass/piecss/utilities/_svg.css +2 -0
  55. data/sass/piecss/utilities/_svg.css.map +7 -0
  56. data/sass/piecss/utilities/_typography.css +2 -0
  57. data/sass/piecss/utilities/_typography.css.map +7 -0
  58. data/sass/piecss/utilities/_typography.scss +16 -16
  59. data/sass/piecss/utilities/_unit.css +2 -0
  60. data/sass/piecss/utilities/_unit.css.map +7 -0
  61. data/sass/piecss/utilities/_unit.scss +10 -7
  62. data/templates/project/examples.html +370 -218
  63. metadata +49 -3
  64. data/sass/piecss/behavior/base/_normalize.scss +0 -463
  65. data/sass/piecss/utilities/_element.scss +0 -180
@@ -1,6 +1,27 @@
1
1
  // Copyright (C) 2014 Babs Gösgens. Licensed under MIT; see LICENSE.txt
2
2
 
3
3
 
4
+ // Content:
5
+ // 1. Collection settings
6
+ // 2. Typography settings
7
+ // 3. Colour settings
8
+ // 4. Reset settings
9
+
10
+ // 1. Collection settings
11
+
12
+ ///
13
+ /// Collection of base selectors.
14
+ ///
15
+ /// @since 0.1
16
+ ///
17
+ /// @type {Map} () - A map of selectors and properties
18
+ ///
19
+
20
+ $base-collection: () !default;
21
+
22
+
23
+ // 2. Typography settings
24
+
4
25
  ///
5
26
  /// The default font for your project. It is set in a $font-type list, Piecss
6
27
  /// has a collection of pre-defined font-types that can be augmented.
@@ -17,6 +38,9 @@
17
38
 
18
39
  $default-font: $sans-serif-regular !default;
19
40
 
41
+
42
+ // 3. Colour settings
43
+
20
44
  ///
21
45
  /// The default color for the HTML background.
22
46
  ///
@@ -124,205 +148,38 @@ $color-anchor--active: lighten($color-anchor, 15%) !default;
124
148
  $color-anchor--visited: darken($color-anchor, 30%) !default;
125
149
 
126
150
  ///
127
- /// If true, consistent quote types will be set.
128
- ///
129
- /// @since 0.1
130
- ///
131
- /// @type {Bool} (true)
132
- ///
133
-
134
- $normalize-quote-quotes: true !default;
135
-
136
- ///
137
- /// 1. Apply a natural box layout model to all elements
138
- /// 2. Experimentally align all elements to bottom
139
- ///
140
- /// @since 0.5
141
- ///
142
- /// @type {Bool} (true)
143
- ///
144
-
145
- $reset-box-model: true !default;
146
-
147
- ///
148
- /// When true:
149
- /// * Corrects `block` display not defined for any HTML5 element in IE 8/9.
150
- /// * Corrects `block` display not defined for `details` or `summary` in IE
151
- /// 10/11 and Firefox.
152
- /// * Corrects `block` display not defined for `main` in IE 11.
153
- ///
154
- /// @since 0.5
155
- ///
156
- /// @type {Bool} (true)
157
- ///
158
-
159
- $normalize-block-display: true !default;
160
-
161
- ///
162
- /// When true, address margin not present in IE 8/9 and Safari.
163
- ///
164
- /// @since 0.5
165
- ///
166
- /// @type {Bool} (true)
167
- ///
168
-
169
- $normalize-figure-margin: true !default;
170
-
171
- ///
172
- /// When $normalize-figure-margin equals true, this margin is applied to the
173
- /// figure element.
174
- ///
175
- /// @since 0.5
176
- ///
177
- /// @type {List} (1em 40px)
178
- ///
179
-
180
- $figure-margin: gutter() rhythm(5) !default;
181
-
182
- ///
183
- /// When true, address differences between Firefox and other browsers.
184
- ///
185
- /// @since 0.5
186
- ///
187
- /// @type {Bool} (true)
188
- ///
189
-
190
- $normalize-horizontal-rule: true !default;
191
-
192
- ///
193
- /// When true, removes most spacing between table cells.
194
- ///
195
- /// @since 0.5
196
- ///
197
- /// @type {Bool} (true)
198
- ///
199
-
200
- $reset-table: true !default;
201
-
202
- ///
203
- /// When true, removes default vertical scrollbar in IE 8/9/10/11.
204
- ///
205
- /// @since 0.5
206
- ///
207
- /// @type {Bool} (true)
208
- ///
209
-
210
- $normalize-textarea: true !default;
211
-
212
- ///
213
- /// Prevent `sub` and `sup` affecting `line-height` in all browsers.
214
- ///
215
- /// @since 0.5
216
- ///
217
- /// @type {Bool} (true)
218
- ///
219
-
220
- $normalize-sup-sub: true !default;
221
-
222
- ///
223
- /// When $normalize-sup-sub equals true, sup top offset is set to this value.
224
- ///
225
- /// @since 0.5
226
- ///
227
- /// @type {Number} (-.5em)
228
- ///
229
-
230
- $sup-offset-top: -.5em !default;
231
-
232
- ///
233
- /// When $normalize-sup-sub equals true, sub bottom offset is set to this value.
234
- ///
235
- /// @since 0.5
236
- ///
237
- /// @type {Number} (-.25em)
238
- ///
239
-
240
- $sub-offset-bottom: -.25em !default;
241
-
242
- ///
243
- /// When $normalize-sup-sub equals true, sup and sub font-size is set to this
244
- /// value.
245
- ///
246
- /// @since 0.5
247
- ///
248
- /// @type {Number} (75%)
249
- ///
250
-
251
- $sup-sub-font-size: 75% !default;
252
-
253
- ///
254
- /// When true, removes border when inside `a` element in IE 8/9/10.
255
- ///
256
- /// @since 0.5
257
- ///
258
- /// @type {Bool} (true)
259
- ///
260
-
261
- $normalize-img-border: true !important;
262
-
263
- ///
264
- /// When true, corrects overflow not hidden in IE 9/10/11.
265
- ///
266
- /// @since 0.5
267
- ///
268
- /// @type {Bool} (true)
269
- ///
270
-
271
- $normalize-svg: true !important;
272
-
273
- ///
274
- /// When true, contains overflow of pre in all browsers.
275
- ///
276
- /// @since 0.5
277
- ///
278
- /// @type {Bool} (true)
279
- ///
280
-
281
- $normalize-pre-overflow: true !important;
282
-
283
- ///
284
- /// When true, addresses odd `em`-unit font size rendering in all browsers.
151
+ /// These elements font-size, line-height and font-weight will be reset
152
+ /// to their parent's values.
285
153
  ///
286
154
  /// @since 0.5
287
155
  ///
288
- /// @type {Bool} (true)
156
+ /// @type {List} ((button, input, optgroup, select, textarea))
289
157
  ///
290
158
 
291
- $normalize-monospace-elements: true !important;
292
159
 
293
- ///
294
- /// When $normalize-monospace-elements equals true, font-size is set to this
295
- /// value.
296
- ///
297
- /// @since 0.5
298
- ///
299
- /// @type {Number} (1em)
300
- ///
160
+ // 4. Reset settings
301
161
 
302
- $monospace-elements-font-size: 1em !default;
162
+ $reset-font: (button, input, optgroup, select, textarea) !default;
303
163
 
304
164
  ///
305
- /// When true, presets the monospace font-size.
165
+ /// These elements margin will be reset to 0.
306
166
  ///
307
167
  /// @since 0.5
308
168
  ///
309
- /// @type {Bool} (true)
169
+ /// @type {List} ((body, figure))
310
170
  ///
311
171
 
312
- $reset-monospace-elements: true !important;
172
+ $reset-margin: (body, figure) !default;
313
173
 
314
174
  ///
315
- /// When $reset-monospace-elements equals true, font-family is set to this
316
- /// value. The font-family: monospace, monospace hack fixes the inheritance and
317
- /// scaling of font-size for preformatted text. The duplication of monospace is
318
- /// intentional.
175
+ /// Apply a natural box layout model to all elements
319
176
  ///
320
177
  /// @since 0.5
321
178
  ///
322
- /// @type {String} (monospace, monospace)
179
+ /// @type {List} (*)
323
180
  ///
324
181
 
325
- $monospace-elements-font-family: #{$monospace-family}, #{$monospace-family} !default;
182
+ $reset-box-model: "*" !default;
326
183
 
327
184
  ///
328
185
  /// These elements font-weight will be set to bold
@@ -332,7 +189,7 @@ $monospace-elements-font-family: #{$monospace-family}, #{$monospace-family} !def
332
189
  /// @type {List} ("strong")
333
190
  ///
334
191
 
335
- $reset-font-weight-to-bold: ("optgroup", "strong") !default;
192
+ $reset-font-weight-to-bold: optgroupstrong !default;
336
193
 
337
194
  ///
338
195
  /// These elements font-weight will be set to italic
@@ -342,7 +199,7 @@ $reset-font-weight-to-bold: ("optgroup", "strong") !default;
342
199
  /// @type {List} ("em", "dfn")
343
200
  ///
344
201
 
345
- $reset-font-weight-to-italic: ("em", "dfn") !default;
202
+ $reset-font-weight-to-italic: em, dfn !default;
346
203
 
347
204
  ///
348
205
  /// These elements font-weight will be set to regular
@@ -352,193 +209,7 @@ $reset-font-weight-to-italic: ("em", "dfn") !default;
352
209
  /// @type {List} ("i", "b")
353
210
  ///
354
211
 
355
- $reset-font-weight-to-regular: ("i", "b") !default;
356
-
357
- ///
358
- /// These elements font-size, line-height and font-weight will be reset
359
- /// to their parent's values.
360
- ///
361
- /// @since 0.5
362
- ///
363
- /// @type {List} ((button, input, optgroup, select, textarea))
364
- ///
365
-
366
- $reset-font: (button, input, optgroup, select, textarea) !default;
367
-
368
- ///
369
- /// These elements margin will be reset to 0.
370
- ///
371
- /// @since 0.5
372
- ///
373
- /// @type {List} ((body, button, input, optgroup, select, textarea))
374
- ///
375
-
376
- $reset-margin: (body, button, input, optgroup, select, textarea) !default;
377
-
378
- ///
379
- /// When true, addresses variable `h1` font-size and margin within `section`
380
- /// and `article` contexts in Firefox 4+, Safari, and Chrome.
381
- ///
382
- /// @since 0.5
383
- ///
384
- /// @type {Bool} (true)
385
- ///
386
-
387
- $normalize-h1: true !default;
388
-
389
- ///
390
- /// When $normalize-h1 equals true, font-size is set to this value.
391
- ///
392
- /// @since 0.5
393
- ///
394
- /// @type {Number} (2em)
395
- ///
396
-
397
- $h1-font-size: to-unit(32px) !default;
398
-
399
- ///
400
- /// When $normalize-h1-font-size equals true, font-size is set to this value.
401
- ///
402
- /// @since 0.5
403
- ///
404
- /// @type {Number} (2em)
405
- ///
406
-
407
- $h1-line-height: to-unit(line-height(32px, 1), $line-height-unit) !default;
408
-
409
-
410
- ///
411
- /// When true, addresses inconsistent and variable font size in all browsers.
412
- ///
413
- /// @since 0.5
414
- ///
415
- /// @type {Bool} (true)
416
- ///
417
-
418
- $normalize-small: true !default;
419
-
420
- ///
421
- /// When $normalize-small equals true, font-size is set to this value.
422
- ///
423
- /// @since 0.5
424
- ///
425
- /// @type {Number} (80%)
426
- ///
427
-
428
- $small-font-size: 80% !default;
429
-
430
- ///
431
- /// When true, defines consistent border, margin, and padding.
432
- ///
433
- /// @since 0.5
434
- ///
435
- /// @type {Bool} (true)
436
- ///
437
-
438
- $normalize-fieldset: true !default;
439
-
440
- ///
441
- /// When $normalize-fieldset equals true, fieldset border is set to this value.
442
- ///
443
- /// @since 0.5
444
- ///
445
- /// @type {Number} (80%)
446
- ///
447
-
448
- $fieldset-border: 1px solid shade(20%) !default;
449
-
450
- ///
451
- /// When $normalize-fieldset equals true, fieldset margin is set to this value.
452
- ///
453
- /// @since 0.5
454
- ///
455
- /// @type {Number} (80%)
456
- ///
457
-
458
- $fieldset-margin: 0 rhythm(.5) !default;
459
-
460
- ///
461
- /// When $normalize-fieldset equals true, fieldset padding is set to this value.
462
- ///
463
- /// @since 0.5
464
- ///
465
- /// @type {Number} (80%)
466
- ///
467
-
468
- $fieldset-padding: rhythm(.5) rhythm(1) !default;
469
-
470
- ///
471
- /// Address styling not present in IE 8/9.
472
- ///
473
- /// @since 0.5
474
- ///
475
- /// @type {Bool} (true)
476
- ///
477
-
478
- $normalize-mark: true !default;
479
-
480
- ///
481
- /// When $normalize-mark equals true, mark background is set to this value.
482
- ///
483
- /// @since 0.5
484
- ///
485
- /// @type {Number} (80%)
486
- ///
487
-
488
- $mark-background: $yellow !default;
489
-
490
- ///
491
- /// When $normalize-mark equals true, mark text color is set to this value.
492
- ///
493
- /// @since 0.5
494
- ///
495
- /// @type {Number} (80%)
496
- ///
497
-
498
- $mark-color: $color-body !default;
499
-
500
- ///
501
- /// Remove the gray background color from active links in IE 10.
502
- /// Improve readability when focused and also mouse hovered in all browsers.
503
- ///
504
- /// @since 0.5
505
- ///
506
- /// @type {Bool} (true)
507
- ///
508
-
509
- $normalize-anchor: true !default;
510
-
511
- ///
512
- /// Address styling not present in IE 8/9/10/11, Safari, and Chrome.
513
- ///
514
- /// @since 0.5
515
- ///
516
- /// @type {Bool} (true)
517
- ///
518
-
519
- $normalize-abbr: true !default;
520
-
521
- ///
522
- /// Correct `color` not being inherited in IE 8/9/10/11.
523
- /// Remove padding so people aren't caught out if they zero out fieldsets.
524
- ///
525
- /// @since 0.5
526
- ///
527
- /// @type {Bool} (true)
528
- ///
529
-
530
- $normalize-legend: true !default;
531
-
532
- ///
533
- /// Known limitation: by default, Chrome and Safari on OS X allow very limited
534
- /// styling of `select`, unless a `border` property is set.
535
- ///
536
- /// @since 0.5
537
- ///
538
- /// @type {Bool} (true)
539
- ///
540
-
541
- $normalize-form-elements: true !default;
212
+ $reset-font-weight-to-regular: i, b !default;
542
213
 
543
214
  ///
544
215
  /// Based on an idea by [@csswizardry](https://twitter.com/csswizardry):
@@ -9,4 +9,4 @@ Button base
9
9
  */
10
10
 
11
11
 
12
- @include elements($button-elements);
12
+ @include get-selectors($button-elements);
@@ -26,7 +26,7 @@ Field base
26
26
  */
27
27
 
28
28
 
29
- @include elements($form-elements);
29
+ @include get-selectors($form-elements);
30
30
 
31
31
 
32
32
  #{$form-field-base-selector} {
@@ -0,0 +1,70 @@
1
+ /*
2
+ Error: Undefined variable: "$unit".
3
+ on line 28 of sass/piecss/settings/_breakpoint.scss
4
+
5
+ 23: /// @since 1.0
6
+ 24: ///
7
+ 25: /// @type {String}
8
+ 26: ///
9
+ 27:
10
+ 28: $lt-small-handheld: "(max-width: #{to-unit(319px, $unit, $default-font-size)})" !default;
11
+ 29:
12
+ 30: ///
13
+ 31: /// Breakpoint selector: larger than handheld
14
+ 32: ///
15
+ 33: /// @since 1.0
16
+
17
+ Backtrace:
18
+ sass/piecss/settings/_breakpoint.scss:28
19
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/variable.rb:49:in `_perform'
20
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/node.rb:58:in `perform'
21
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/funcall.rb:173:in `perform_arg'
22
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/funcall.rb:124:in `block in _perform'
23
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/funcall.rb:124:in `each'
24
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/funcall.rb:124:in `each_with_index'
25
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/funcall.rb:124:in `each'
26
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/funcall.rb:124:in `map'
27
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/funcall.rb:124:in `_perform'
28
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/node.rb:58:in `perform'
29
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/string_interpolation.rb:93:in `_perform'
30
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/script/tree/node.rb:58:in `perform'
31
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:471:in `visit_variable'
32
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:in `visit'
33
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:in `block in visit'
34
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/stack.rb:79:in `block in with_base'
35
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/stack.rb:115:in `with_frame'
36
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/stack.rb:79:in `with_base'
37
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:in `visit'
38
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
39
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:in `map'
40
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:in `visit_children'
41
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
42
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:181:in `with_environment'
43
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:168:in `visit_children'
44
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:in `block in visit'
45
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:188:in `visit_root'
46
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:in `visit'
47
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:159:in `visit'
48
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:8:in `visit'
49
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/root_node.rb:36:in `css_tree'
50
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/tree/root_node.rb:29:in `render_with_sourcemap'
51
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/engine.rb:381:in `_render_with_sourcemap'
52
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/engine.rb:298:in `render_with_sourcemap'
53
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:492:in `update_stylesheet'
54
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets'
55
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:209:in `each'
56
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:209:in `update_stylesheets'
57
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:294:in `watch'
58
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/plugin.rb:109:in `method_missing'
59
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/exec/sass_scss.rb:360:in `watch_or_update'
60
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/exec/sass_scss.rb:51:in `process_result'
61
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/exec/base.rb:52:in `parse'
62
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/lib/sass/exec/base.rb:19:in `parse!'
63
+ /Library/Ruby/Gems/2.0.0/gems/sass-3.4.23/bin/sass:13:in `<top (required)>'
64
+ /usr/local/bin/sass:23:in `load'
65
+ /usr/local/bin/sass:23:in `<main>'
66
+ */
67
+ body:before {
68
+ white-space: pre;
69
+ font-family: monospace;
70
+ content: "Error: Undefined variable: \"$unit\".\A on line 28 of sass/piecss/settings/_breakpoint.scss\A \A 23: /// @since 1.0\A 24: ///\A 25: /// @type {String}\A 26: ///\A 27: \A 28: $lt-small-handheld: \"(max-width: #{to-unit(319px, $unit, $default-font-size)})\" !default;\A 29: \A 30: ///\A 31: /// Breakpoint selector: larger than handheld\A 32: ///\A 33: /// @since 1.0"; }
@@ -0,0 +1,2 @@
1
+
2
+ /*# sourceMappingURL=_colour.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "",
4
+ "sources": [],
5
+ "names": [],
6
+ "file": "_colour.css"
7
+ }
@@ -41,15 +41,13 @@ $darksalmon: #e9967a;
41
41
  $darkseagreen: #8fbc8f;
42
42
  $darkslateblue: #483d8b;
43
43
  $darkslategray: #2f4f4f;
44
- //* alternate spelling */
45
- $darkslategrey: $darkslategray;
44
+ /* alternate spelling */ $darkslategrey: $darkslategray;
46
45
  $darkturquoise: #00ced1;
47
46
  $darkviolet: #9400d3;
48
47
  $deeppink: #ff1493;
49
48
  $deepskyblue: #00bfff;
50
49
  $dimgray: #696969;
51
- // /* alternate spelling */
52
- $dimgrey: $dimgray;
50
+ /* alternate spelling */ $dimgrey: $dimgray;
53
51
  $dodgerblue: #1e90ff;
54
52
  $firebrick: #b22222;
55
53
  $floralwhite: #fffaf0;
@@ -0,0 +1,2 @@
1
+
2
+ /*# sourceMappingURL=_constants.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "",
4
+ "sources": [],
5
+ "names": [],
6
+ "file": "_constants.css"
7
+ }
@@ -0,0 +1,2 @@
1
+
2
+ /*# sourceMappingURL=_fallback.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "",
4
+ "sources": [],
5
+ "names": [],
6
+ "file": "_fallback.css"
7
+ }
@@ -0,0 +1,2 @@
1
+
2
+ /*# sourceMappingURL=_font.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "",
4
+ "sources": [],
5
+ "names": [],
6
+ "file": "_font.css"
7
+ }