frozen 0.0.1

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 (146) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +24 -0
  3. data/Gemfile +9 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +11 -0
  7. data/bin/frozen +56 -0
  8. data/dummy/assets/javascripts/coffee/test.js.coffee +8 -0
  9. data/dummy/assets/javascripts/main.js +11 -0
  10. data/dummy/assets/javascripts/sub/sub_script.js +11 -0
  11. data/dummy/assets/stylesheets/base/_base.scss +24 -0
  12. data/dummy/assets/stylesheets/base/_buttons.scss +10 -0
  13. data/dummy/assets/stylesheets/base/_forms.scss +78 -0
  14. data/dummy/assets/stylesheets/base/_grid-settings.scss +14 -0
  15. data/dummy/assets/stylesheets/base/_lists.scss +31 -0
  16. data/dummy/assets/stylesheets/base/_tables.scss +24 -0
  17. data/dummy/assets/stylesheets/base/_typography.scss +93 -0
  18. data/dummy/assets/stylesheets/base/_variables.scss +65 -0
  19. data/dummy/assets/stylesheets/base/extends/_button.scss +22 -0
  20. data/dummy/assets/stylesheets/base/extends/_clearfix.scss +3 -0
  21. data/dummy/assets/stylesheets/base/extends/_errors.scss +11 -0
  22. data/dummy/assets/stylesheets/base/extends/_flashes.scss +38 -0
  23. data/dummy/assets/stylesheets/base/extends/_hide-text.scss +3 -0
  24. data/dummy/assets/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +402 -0
  25. data/dummy/assets/stylesheets/bourbon/_bourbon.scss +86 -0
  26. data/dummy/assets/stylesheets/bourbon/addons/_clearfix.scss +18 -0
  27. data/dummy/assets/stylesheets/bourbon/addons/_directional-values.scss +111 -0
  28. data/dummy/assets/stylesheets/bourbon/addons/_ellipsis.scss +8 -0
  29. data/dummy/assets/stylesheets/bourbon/addons/_font-family.scss +5 -0
  30. data/dummy/assets/stylesheets/bourbon/addons/_hide-text.scss +12 -0
  31. data/dummy/assets/stylesheets/bourbon/addons/_html5-input-types.scss +90 -0
  32. data/dummy/assets/stylesheets/bourbon/addons/_position.scss +26 -0
  33. data/dummy/assets/stylesheets/bourbon/addons/_prefixer.scss +45 -0
  34. data/dummy/assets/stylesheets/bourbon/addons/_retina-image.scss +31 -0
  35. data/dummy/assets/stylesheets/bourbon/addons/_size.scss +26 -0
  36. data/dummy/assets/stylesheets/bourbon/addons/_timing-functions.scss +32 -0
  37. data/dummy/assets/stylesheets/bourbon/addons/_triangle.scss +83 -0
  38. data/dummy/assets/stylesheets/bourbon/addons/_word-wrap.scss +10 -0
  39. data/dummy/assets/stylesheets/bourbon/css3/_animation.scss +52 -0
  40. data/dummy/assets/stylesheets/bourbon/css3/_appearance.scss +3 -0
  41. data/dummy/assets/stylesheets/bourbon/css3/_backface-visibility.scss +6 -0
  42. data/dummy/assets/stylesheets/bourbon/css3/_background-image.scss +42 -0
  43. data/dummy/assets/stylesheets/bourbon/css3/_background.scss +55 -0
  44. data/dummy/assets/stylesheets/bourbon/css3/_border-image.scss +59 -0
  45. data/dummy/assets/stylesheets/bourbon/css3/_border-radius.scss +22 -0
  46. data/dummy/assets/stylesheets/bourbon/css3/_box-sizing.scss +4 -0
  47. data/dummy/assets/stylesheets/bourbon/css3/_calc.scss +4 -0
  48. data/dummy/assets/stylesheets/bourbon/css3/_columns.scss +47 -0
  49. data/dummy/assets/stylesheets/bourbon/css3/_filter.scss +5 -0
  50. data/dummy/assets/stylesheets/bourbon/css3/_flex-box.scss +320 -0
  51. data/dummy/assets/stylesheets/bourbon/css3/_font-face.scss +24 -0
  52. data/dummy/assets/stylesheets/bourbon/css3/_font-feature-settings.scss +10 -0
  53. data/dummy/assets/stylesheets/bourbon/css3/_hidpi-media-query.scss +10 -0
  54. data/dummy/assets/stylesheets/bourbon/css3/_hyphens.scss +4 -0
  55. data/dummy/assets/stylesheets/bourbon/css3/_image-rendering.scss +14 -0
  56. data/dummy/assets/stylesheets/bourbon/css3/_keyframes.scss +35 -0
  57. data/dummy/assets/stylesheets/bourbon/css3/_linear-gradient.scss +38 -0
  58. data/dummy/assets/stylesheets/bourbon/css3/_perspective.scss +8 -0
  59. data/dummy/assets/stylesheets/bourbon/css3/_placeholder.scss +8 -0
  60. data/dummy/assets/stylesheets/bourbon/css3/_radial-gradient.scss +39 -0
  61. data/dummy/assets/stylesheets/bourbon/css3/_selection.scss +14 -0
  62. data/dummy/assets/stylesheets/bourbon/css3/_text-decoration.scss +19 -0
  63. data/dummy/assets/stylesheets/bourbon/css3/_transform.scss +15 -0
  64. data/dummy/assets/stylesheets/bourbon/css3/_transition.scss +77 -0
  65. data/dummy/assets/stylesheets/bourbon/css3/_user-select.scss +3 -0
  66. data/dummy/assets/stylesheets/bourbon/functions/_assign.scss +11 -0
  67. data/dummy/assets/stylesheets/bourbon/functions/_color-lightness.scss +13 -0
  68. data/dummy/assets/stylesheets/bourbon/functions/_contains.scss +12 -0
  69. data/dummy/assets/stylesheets/bourbon/functions/_is-length.scss +7 -0
  70. data/dummy/assets/stylesheets/bourbon/functions/_is-size.scss +6 -0
  71. data/dummy/assets/stylesheets/bourbon/functions/_modular-scale.scss +69 -0
  72. data/dummy/assets/stylesheets/bourbon/functions/_px-to-em.scss +13 -0
  73. data/dummy/assets/stylesheets/bourbon/functions/_px-to-rem.scss +15 -0
  74. data/dummy/assets/stylesheets/bourbon/functions/_strip-units.scss +5 -0
  75. data/dummy/assets/stylesheets/bourbon/functions/_tint-shade.scss +9 -0
  76. data/dummy/assets/stylesheets/bourbon/functions/_transition-property-name.scss +22 -0
  77. data/dummy/assets/stylesheets/bourbon/functions/_unpack.scss +17 -0
  78. data/dummy/assets/stylesheets/bourbon/helpers/_convert-units.scss +15 -0
  79. data/dummy/assets/stylesheets/bourbon/helpers/_font-source-declaration.scss +36 -0
  80. data/dummy/assets/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  81. data/dummy/assets/stylesheets/bourbon/helpers/_is-num.scss +5 -0
  82. data/dummy/assets/stylesheets/bourbon/helpers/_linear-angle-parser.scss +25 -0
  83. data/dummy/assets/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  84. data/dummy/assets/stylesheets/bourbon/helpers/_linear-positions-parser.scss +61 -0
  85. data/dummy/assets/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  86. data/dummy/assets/stylesheets/bourbon/helpers/_radial-arg-parser.scss +69 -0
  87. data/dummy/assets/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  88. data/dummy/assets/stylesheets/bourbon/helpers/_radial-positions-parser.scss +18 -0
  89. data/dummy/assets/stylesheets/bourbon/helpers/_render-gradients.scss +26 -0
  90. data/dummy/assets/stylesheets/bourbon/helpers/_shape-size-stripper.scss +10 -0
  91. data/dummy/assets/stylesheets/bourbon/helpers/_str-to-num.scss +50 -0
  92. data/dummy/assets/stylesheets/bourbon/settings/_asset-pipeline.scss +1 -0
  93. data/dummy/assets/stylesheets/bourbon/settings/_prefixer.scss +6 -0
  94. data/dummy/assets/stylesheets/bourbon/settings/_px-to-em.scss +1 -0
  95. data/dummy/assets/stylesheets/main.scss +6 -0
  96. data/dummy/assets/stylesheets/neat/_neat-helpers.scss +8 -0
  97. data/dummy/assets/stylesheets/neat/_neat.scss +23 -0
  98. data/dummy/assets/stylesheets/neat/functions/_new-breakpoint.scss +49 -0
  99. data/dummy/assets/stylesheets/neat/functions/_private.scss +114 -0
  100. data/dummy/assets/stylesheets/neat/grid/_box-sizing.scss +15 -0
  101. data/dummy/assets/stylesheets/neat/grid/_direction-context.scss +33 -0
  102. data/dummy/assets/stylesheets/neat/grid/_display-context.scss +28 -0
  103. data/dummy/assets/stylesheets/neat/grid/_fill-parent.scss +24 -0
  104. data/dummy/assets/stylesheets/neat/grid/_media.scss +92 -0
  105. data/dummy/assets/stylesheets/neat/grid/_omega.scss +87 -0
  106. data/dummy/assets/stylesheets/neat/grid/_outer-container.scss +38 -0
  107. data/dummy/assets/stylesheets/neat/grid/_pad.scss +25 -0
  108. data/dummy/assets/stylesheets/neat/grid/_private.scss +35 -0
  109. data/dummy/assets/stylesheets/neat/grid/_row.scss +52 -0
  110. data/dummy/assets/stylesheets/neat/grid/_shift.scss +50 -0
  111. data/dummy/assets/stylesheets/neat/grid/_span-columns.scss +92 -0
  112. data/dummy/assets/stylesheets/neat/grid/_to-deprecate.scss +97 -0
  113. data/dummy/assets/stylesheets/neat/grid/_visual-grid.scss +42 -0
  114. data/dummy/assets/stylesheets/neat/settings/_disable-warnings.scss +13 -0
  115. data/dummy/assets/stylesheets/neat/settings/_grid.scss +55 -0
  116. data/dummy/assets/stylesheets/neat/settings/_visual-grid.scss +27 -0
  117. data/dummy/assets/stylesheets/sub/sub.scss +8 -0
  118. data/dummy/build/about/index.html +1 -0
  119. data/dummy/build/css/main.css +1 -0
  120. data/dummy/build/css/sub/sub.css +1 -0
  121. data/dummy/build/index.html +1 -0
  122. data/dummy/build/js/coffee/test.js +1 -0
  123. data/dummy/build/js/main.js +1 -0
  124. data/dummy/build/js/sub/sub_script.js +1 -0
  125. data/dummy/config.yaml +3 -0
  126. data/dummy/layouts/default.html.slim +7 -0
  127. data/dummy/views/about/index.html.slim +1 -0
  128. data/dummy/views/index.html.slim +2 -0
  129. data/frozen.gemspec +37 -0
  130. data/lib/frozen.rb +13 -0
  131. data/lib/frozen/environment/base.rb +36 -0
  132. data/lib/frozen/rack/request_controller.rb +37 -0
  133. data/lib/frozen/site/base.rb +83 -0
  134. data/lib/frozen/site/local_site.rb +131 -0
  135. data/lib/frozen/template/base.rb +77 -0
  136. data/lib/frozen/template/javascript.rb +44 -0
  137. data/lib/frozen/template/stylesheet.rb +48 -0
  138. data/lib/frozen/template/view.rb +40 -0
  139. data/lib/frozen/version.rb +3 -0
  140. data/spec/lib/frozen/rack/request_controller_spec.rb +22 -0
  141. data/spec/lib/frozen/site/base_spec.rb +17 -0
  142. data/spec/lib/frozen/site/local_site_spec.rb +13 -0
  143. data/spec/lib/frozen/template/base_spec.rb +101 -0
  144. data/spec/lib/frozen/template/stylesheet_spec.rb +42 -0
  145. data/spec/spec_helper.rb +9 -0
  146. metadata +393 -0
@@ -0,0 +1,24 @@
1
+ @mixin font-face(
2
+ $font-family,
3
+ $file-path,
4
+ $weight: normal,
5
+ $style: normal,
6
+ $asset-pipeline: $asset-pipeline,
7
+ $file-formats: eot woff2 woff ttf svg) {
8
+
9
+ $font-url-prefix: font-url-prefixer($asset-pipeline);
10
+
11
+ @font-face {
12
+ font-family: $font-family;
13
+ font-style: $style;
14
+ font-weight: $weight;
15
+
16
+ src: font-source-declaration(
17
+ $font-family,
18
+ $file-path,
19
+ $asset-pipeline,
20
+ $file-formats,
21
+ $font-url-prefix
22
+ );
23
+ }
24
+ }
@@ -0,0 +1,10 @@
1
+ // Font feature settings mixin and property default.
2
+ // Examples: @include font-feature-settings("liga");
3
+ // @include font-feature-settings("lnum" false);
4
+ // @include font-feature-settings("pnum" 1, "kern" 0);
5
+ // @include font-feature-settings("ss01", "ss02");
6
+
7
+ @mixin font-feature-settings($settings...) {
8
+ @if length($settings) == 0 { $settings: none; }
9
+ @include prefixer(font-feature-settings, $settings, webkit moz ms spec);
10
+ }
@@ -0,0 +1,10 @@
1
+ // HiDPI mixin. Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/)
2
+ @mixin hidpi($ratio: 1.3) {
3
+ @media only screen and (-webkit-min-device-pixel-ratio: $ratio),
4
+ only screen and (min--moz-device-pixel-ratio: $ratio),
5
+ only screen and (-o-min-device-pixel-ratio: #{$ratio}/1),
6
+ only screen and (min-resolution: round($ratio * 96dpi)),
7
+ only screen and (min-resolution: $ratio * 1dppx) {
8
+ @content;
9
+ }
10
+ }
@@ -0,0 +1,4 @@
1
+ @mixin hyphens($hyphenation: none) {
2
+ // none | manual | auto
3
+ @include prefixer(hyphens, $hyphenation, webkit moz ms spec);
4
+ }
@@ -0,0 +1,14 @@
1
+ @mixin image-rendering ($mode:auto) {
2
+
3
+ @if ($mode == crisp-edges) {
4
+ -ms-interpolation-mode: nearest-neighbor; // IE8+
5
+ image-rendering: -moz-crisp-edges;
6
+ image-rendering: -o-crisp-edges;
7
+ image-rendering: -webkit-optimize-contrast;
8
+ image-rendering: crisp-edges;
9
+ }
10
+
11
+ @else {
12
+ image-rendering: $mode;
13
+ }
14
+ }
@@ -0,0 +1,35 @@
1
+ // Adds keyframes blocks for supported prefixes, removing redundant prefixes in the block's content
2
+ @mixin keyframes($name) {
3
+ $original-prefix-for-webkit: $prefix-for-webkit;
4
+ $original-prefix-for-mozilla: $prefix-for-mozilla;
5
+ $original-prefix-for-microsoft: $prefix-for-microsoft;
6
+ $original-prefix-for-opera: $prefix-for-opera;
7
+ $original-prefix-for-spec: $prefix-for-spec;
8
+
9
+ @if $original-prefix-for-webkit {
10
+ @include disable-prefix-for-all();
11
+ $prefix-for-webkit: true !global;
12
+ @-webkit-keyframes #{$name} {
13
+ @content;
14
+ }
15
+ }
16
+ @if $original-prefix-for-mozilla {
17
+ @include disable-prefix-for-all();
18
+ $prefix-for-mozilla: true !global;
19
+ @-moz-keyframes #{$name} {
20
+ @content;
21
+ }
22
+ }
23
+
24
+ $prefix-for-webkit: $original-prefix-for-webkit !global;
25
+ $prefix-for-mozilla: $original-prefix-for-mozilla !global;
26
+ $prefix-for-microsoft: $original-prefix-for-microsoft !global;
27
+ $prefix-for-opera: $original-prefix-for-opera !global;
28
+ $prefix-for-spec: $original-prefix-for-spec !global;
29
+
30
+ @if $original-prefix-for-spec {
31
+ @keyframes #{$name} {
32
+ @content;
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,38 @@
1
+ @mixin linear-gradient($pos, $G1, $G2: null,
2
+ $G3: null, $G4: null,
3
+ $G5: null, $G6: null,
4
+ $G7: null, $G8: null,
5
+ $G9: null, $G10: null,
6
+ $fallback: null) {
7
+ // Detect what type of value exists in $pos
8
+ $pos-type: type-of(nth($pos, 1));
9
+ $pos-spec: null;
10
+ $pos-degree: null;
11
+
12
+ // If $pos is missing from mixin, reassign vars and add default position
13
+ @if ($pos-type == color) or (nth($pos, 1) == "transparent") {
14
+ $G10: $G9; $G9: $G8; $G8: $G7; $G7: $G6; $G6: $G5;
15
+ $G5: $G4; $G4: $G3; $G3: $G2; $G2: $G1; $G1: $pos;
16
+ $pos: null;
17
+ }
18
+
19
+ @if $pos {
20
+ $positions: _linear-positions-parser($pos);
21
+ $pos-degree: nth($positions, 1);
22
+ $pos-spec: nth($positions, 2);
23
+ }
24
+
25
+ $full: $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10;
26
+
27
+ // Set $G1 as the default fallback color
28
+ $fallback-color: nth($G1, 1);
29
+
30
+ // If $fallback is a color use that color as the fallback color
31
+ @if (type-of($fallback) == color) or ($fallback == "transparent") {
32
+ $fallback-color: $fallback;
33
+ }
34
+
35
+ background-color: $fallback-color;
36
+ background-image: -webkit-linear-gradient($pos-degree $full); // Safari 5.1+, Chrome
37
+ background-image: unquote("linear-gradient(#{$pos-spec}#{$full})");
38
+ }
@@ -0,0 +1,8 @@
1
+ @mixin perspective($depth: none) {
2
+ // none | <length>
3
+ @include prefixer(perspective, $depth, webkit moz spec);
4
+ }
5
+
6
+ @mixin perspective-origin($value: 50% 50%) {
7
+ @include prefixer(perspective-origin, $value, webkit moz spec);
8
+ }
@@ -0,0 +1,8 @@
1
+ @mixin placeholder {
2
+ $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
3
+ @each $placeholder in $placeholders {
4
+ &:#{$placeholder}-placeholder {
5
+ @content;
6
+ }
7
+ }
8
+ }
@@ -0,0 +1,39 @@
1
+ // Requires Sass 3.1+
2
+ @mixin radial-gradient($G1, $G2,
3
+ $G3: null, $G4: null,
4
+ $G5: null, $G6: null,
5
+ $G7: null, $G8: null,
6
+ $G9: null, $G10: null,
7
+ $pos: null,
8
+ $shape-size: null,
9
+ $fallback: null) {
10
+
11
+ $data: _radial-arg-parser($G1, $G2, $pos, $shape-size);
12
+ $G1: nth($data, 1);
13
+ $G2: nth($data, 2);
14
+ $pos: nth($data, 3);
15
+ $shape-size: nth($data, 4);
16
+
17
+ $full: $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10;
18
+
19
+ // Strip deprecated cover/contain for spec
20
+ $shape-size-spec: _shape-size-stripper($shape-size);
21
+
22
+ // Set $G1 as the default fallback color
23
+ $first-color: nth($full, 1);
24
+ $fallback-color: nth($first-color, 1);
25
+
26
+ @if (type-of($fallback) == color) or ($fallback == "transparent") {
27
+ $fallback-color: $fallback;
28
+ }
29
+
30
+ // Add Commas and spaces
31
+ $shape-size: if($shape-size, '#{$shape-size}, ', null);
32
+ $pos: if($pos, '#{$pos}, ', null);
33
+ $pos-spec: if($pos, 'at #{$pos}', null);
34
+ $shape-size-spec: if(($shape-size-spec != ' ') and ($pos == null), '#{$shape-size-spec}, ', '#{$shape-size-spec} ');
35
+
36
+ background-color: $fallback-color;
37
+ background-image: -webkit-radial-gradient(unquote(#{$pos}#{$shape-size}#{$full}));
38
+ background-image: unquote("radial-gradient(#{$shape-size-spec}#{$pos-spec}#{$full})");
39
+ }
@@ -0,0 +1,14 @@
1
+ @mixin selection {
2
+ $before-colons: "";
3
+
4
+ @if & {
5
+ $before-colons: "&"
6
+ }
7
+
8
+ #{$before-colons}::selection {
9
+ @content;
10
+ }
11
+ #{$before-colons}::-moz-selection {
12
+ @content;
13
+ }
14
+ }
@@ -0,0 +1,19 @@
1
+ @mixin text-decoration($value) {
2
+ // <text-decoration-line> || <text-decoration-style> || <text-decoration-color>
3
+ @include prefixer(text-decoration, $value, moz);
4
+ }
5
+
6
+ @mixin text-decoration-line($line: none) {
7
+ // none || underline || overline || line-through
8
+ @include prefixer(text-decoration-line, $line, moz);
9
+ }
10
+
11
+ @mixin text-decoration-style($style: solid) {
12
+ // solid || double || dotted || dashed || wavy
13
+ @include prefixer(text-decoration-style, $style, moz webkit);
14
+ }
15
+
16
+ @mixin text-decoration-color($color: currentColor) {
17
+ // currentColor || <color>
18
+ @include prefixer(text-decoration-color, $color, moz);
19
+ }
@@ -0,0 +1,15 @@
1
+ @mixin transform($property: none) {
2
+ // none | <transform-function>
3
+ @include prefixer(transform, $property, webkit moz ms o spec);
4
+ }
5
+
6
+ @mixin transform-origin($axes: 50%) {
7
+ // x-axis - left | center | right | length | %
8
+ // y-axis - top | center | bottom | length | %
9
+ // z-axis - length
10
+ @include prefixer(transform-origin, $axes, webkit moz ms o spec);
11
+ }
12
+
13
+ @mixin transform-style ($style: flat) {
14
+ @include prefixer(transform-style, $style, webkit moz ms o spec);
15
+ }
@@ -0,0 +1,77 @@
1
+ // Shorthand mixin. Supports multiple parentheses-deliminated values for each variable.
2
+ // Example: @include transition (all 2s ease-in-out);
3
+ // @include transition (opacity 1s ease-in 2s, width 2s ease-out);
4
+ // @include transition-property (transform, opacity);
5
+
6
+ @mixin transition ($properties...) {
7
+ // Fix for vendor-prefix transform property
8
+ $needs-prefixes: false;
9
+ $webkit: ();
10
+ $moz: ();
11
+ $spec: ();
12
+
13
+ // Create lists for vendor-prefixed transform
14
+ @each $list in $properties {
15
+ @if nth($list, 1) == "transform" {
16
+ $needs-prefixes: true;
17
+ $list1: -webkit-transform;
18
+ $list2: -moz-transform;
19
+ $list3: ();
20
+
21
+ @each $var in $list {
22
+ $list3: join($list3, $var);
23
+
24
+ @if $var != "transform" {
25
+ $list1: join($list1, $var);
26
+ $list2: join($list2, $var);
27
+ }
28
+ }
29
+
30
+ $webkit: append($webkit, $list1);
31
+ $moz: append($moz, $list2);
32
+ $spec: append($spec, $list3);
33
+ }
34
+
35
+ // Create lists for non-prefixed transition properties
36
+ @else {
37
+ $webkit: append($webkit, $list, comma);
38
+ $moz: append($moz, $list, comma);
39
+ $spec: append($spec, $list, comma);
40
+ }
41
+ }
42
+
43
+ @if $needs-prefixes {
44
+ -webkit-transition: $webkit;
45
+ -moz-transition: $moz;
46
+ transition: $spec;
47
+ }
48
+ @else {
49
+ @if length($properties) >= 1 {
50
+ @include prefixer(transition, $properties, webkit moz spec);
51
+ }
52
+
53
+ @else {
54
+ $properties: all 0.15s ease-out 0s;
55
+ @include prefixer(transition, $properties, webkit moz spec);
56
+ }
57
+ }
58
+ }
59
+
60
+ @mixin transition-property ($properties...) {
61
+ -webkit-transition-property: transition-property-names($properties, 'webkit');
62
+ -moz-transition-property: transition-property-names($properties, 'moz');
63
+ transition-property: transition-property-names($properties, false);
64
+ }
65
+
66
+ @mixin transition-duration ($times...) {
67
+ @include prefixer(transition-duration, $times, webkit moz spec);
68
+ }
69
+
70
+ @mixin transition-timing-function ($motions...) {
71
+ // ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier()
72
+ @include prefixer(transition-timing-function, $motions, webkit moz spec);
73
+ }
74
+
75
+ @mixin transition-delay ($times...) {
76
+ @include prefixer(transition-delay, $times, webkit moz spec);
77
+ }
@@ -0,0 +1,3 @@
1
+ @mixin user-select($arg: none) {
2
+ @include prefixer(user-select, $arg, webkit moz ms spec);
3
+ }
@@ -0,0 +1,11 @@
1
+ @function assign-inputs($inputs, $pseudo: null) {
2
+ $list : ();
3
+
4
+ @each $input in $inputs {
5
+ $input: unquote($input);
6
+ $input: if($pseudo, $input + ":" + $pseudo, $input);
7
+ $list: append($list, $input, comma);
8
+ }
9
+
10
+ @return $list;
11
+ }
@@ -0,0 +1,13 @@
1
+ // Programatically determines whether a color is light or dark
2
+ // Returns a boolean
3
+ // More details here http://robots.thoughtbot.com/closer-look-color-lightness
4
+
5
+ @function is-light($hex-color) {
6
+ $-local-red: red(rgba($hex-color, 1.0));
7
+ $-local-green: green(rgba($hex-color, 1.0));
8
+ $-local-blue: blue(rgba($hex-color, 1.0));
9
+
10
+ $-local-lightness: ($-local-red * 0.2126 + $-local-green * 0.7152 + $-local-blue * 0.0722) / 255;
11
+
12
+ @return $-local-lightness > .6;
13
+ }
@@ -0,0 +1,12 @@
1
+ // Test a Sass list to see if it contains a defined value
2
+ // Allows for checking if a list contains several values at once
3
+
4
+ @function contains($list, $values...) {
5
+ @each $value in $values {
6
+ @if type-of(index($list, $value)) != "number" {
7
+ @return false;
8
+ }
9
+ }
10
+
11
+ @return true;
12
+ }
@@ -0,0 +1,7 @@
1
+ // Check for a valid length
2
+
3
+ @function is-length($value) {
4
+ @return type-of($value) != "null" and (str-slice($value + "", 1, 4) == 'calc'
5
+ or index(auto inherit initial 0, $value)
6
+ or (type-of($value) == "number" and not(unitless($value))));
7
+ }
@@ -0,0 +1,6 @@
1
+ // Check for a valid size
2
+
3
+ @function is-size($value) {
4
+ @return is-length($value)
5
+ or contains("fill" "fit-content" "min-content" "max-content", $value);
6
+ }
@@ -0,0 +1,69 @@
1
+ // Scaling Variables
2
+ $golden: 1.618;
3
+ $minor-second: 1.067;
4
+ $major-second: 1.125;
5
+ $minor-third: 1.2;
6
+ $major-third: 1.25;
7
+ $perfect-fourth: 1.333;
8
+ $augmented-fourth: 1.414;
9
+ $perfect-fifth: 1.5;
10
+ $minor-sixth: 1.6;
11
+ $major-sixth: 1.667;
12
+ $minor-seventh: 1.778;
13
+ $major-seventh: 1.875;
14
+ $octave: 2;
15
+ $major-tenth: 2.5;
16
+ $major-eleventh: 2.667;
17
+ $major-twelfth: 3;
18
+ $double-octave: 4;
19
+
20
+ $modular-scale-ratio: $perfect-fourth !default;
21
+ $modular-scale-base: em($em-base) !default;
22
+
23
+ @function modular-scale($increment, $value: $modular-scale-base, $ratio: $modular-scale-ratio) {
24
+ $v1: nth($value, 1);
25
+ $v2: nth($value, length($value));
26
+ $value: $v1;
27
+
28
+ // scale $v2 to just above $v1
29
+ @while $v2 > $v1 {
30
+ $v2: ($v2 / $ratio); // will be off-by-1
31
+ }
32
+ @while $v2 < $v1 {
33
+ $v2: ($v2 * $ratio); // will fix off-by-1
34
+ }
35
+
36
+ // check AFTER scaling $v2 to prevent double-counting corner-case
37
+ $double-stranded: $v2 > $v1;
38
+
39
+ @if $increment > 0 {
40
+ @for $i from 1 through $increment {
41
+ @if $double-stranded and ($v1 * $ratio) > $v2 {
42
+ $value: $v2;
43
+ $v2: ($v2 * $ratio);
44
+ } @else {
45
+ $v1: ($v1 * $ratio);
46
+ $value: $v1;
47
+ }
48
+ }
49
+ }
50
+
51
+ @if $increment < 0 {
52
+ // adjust $v2 to just below $v1
53
+ @if $double-stranded {
54
+ $v2: ($v2 / $ratio);
55
+ }
56
+
57
+ @for $i from $increment through -1 {
58
+ @if $double-stranded and ($v1 / $ratio) < $v2 {
59
+ $value: $v2;
60
+ $v2: ($v2 / $ratio);
61
+ } @else {
62
+ $v1: ($v1 / $ratio);
63
+ $value: $v1;
64
+ }
65
+ }
66
+ }
67
+
68
+ @return $value;
69
+ }