hanuman 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +175 -173
- data/_data/authors.yml +16 -0
- data/_data/navigation.yml +4 -4
- data/_includes/analytics.html +15 -15
- data/_includes/footer.html +65 -65
- data/_includes/head.html +68 -68
- data/_includes/header.html +58 -58
- data/_includes/metadata.json +30 -30
- data/_includes/styles.scss +727 -727
- data/_layouts/default.html +13 -13
- data/_layouts/page.html +16 -16
- data/_layouts/post.html +157 -153
- data/_sass/_syntax-highlighting.scss +65 -65
- data/_sass/bourbon/_bourbon-deprecated-upcoming.scss +8 -8
- data/_sass/bourbon/_bourbon.scss +79 -79
- data/_sass/bourbon/addons/_button.scss +374 -374
- data/_sass/bourbon/addons/_clearfix.scss +23 -23
- data/_sass/bourbon/addons/_directional-values.scss +111 -111
- data/_sass/bourbon/addons/_ellipsis.scss +7 -7
- data/_sass/bourbon/addons/_font-family.scss +5 -5
- data/_sass/bourbon/addons/_hide-text.scss +10 -10
- data/_sass/bourbon/addons/_html5-input-types.scss +86 -86
- data/_sass/bourbon/addons/_position.scss +32 -32
- data/_sass/bourbon/addons/_prefixer.scss +45 -45
- data/_sass/bourbon/addons/_retina-image.scss +31 -31
- data/_sass/bourbon/addons/_size.scss +16 -16
- data/_sass/bourbon/addons/_timing-functions.scss +32 -32
- data/_sass/bourbon/addons/_triangle.scss +83 -83
- data/_sass/bourbon/addons/_word-wrap.scss +8 -8
- data/_sass/bourbon/css3/_animation.scss +52 -52
- data/_sass/bourbon/css3/_appearance.scss +3 -3
- data/_sass/bourbon/css3/_backface-visibility.scss +6 -6
- data/_sass/bourbon/css3/_background-image.scss +42 -42
- data/_sass/bourbon/css3/_background.scss +55 -55
- data/_sass/bourbon/css3/_border-image.scss +59 -59
- data/_sass/bourbon/css3/_border-radius.scss +22 -22
- data/_sass/bourbon/css3/_box-sizing.scss +4 -4
- data/_sass/bourbon/css3/_calc.scss +4 -4
- data/_sass/bourbon/css3/_columns.scss +47 -47
- data/_sass/bourbon/css3/_filter.scss +5 -5
- data/_sass/bourbon/css3/_flex-box.scss +321 -321
- data/_sass/bourbon/css3/_font-face.scss +23 -23
- data/_sass/bourbon/css3/_font-feature-settings.scss +9 -9
- data/_sass/bourbon/css3/_hidpi-media-query.scss +10 -10
- data/_sass/bourbon/css3/_hyphens.scss +3 -3
- data/_sass/bourbon/css3/_image-rendering.scss +14 -14
- data/_sass/bourbon/css3/_keyframes.scss +35 -35
- data/_sass/bourbon/css3/_linear-gradient.scss +38 -38
- data/_sass/bourbon/css3/_perspective.scss +8 -8
- data/_sass/bourbon/css3/_placeholder.scss +8 -8
- data/_sass/bourbon/css3/_radial-gradient.scss +39 -39
- data/_sass/bourbon/css3/_transform.scss +15 -15
- data/_sass/bourbon/css3/_transition.scss +77 -77
- data/_sass/bourbon/css3/_user-select.scss +3 -3
- data/_sass/bourbon/functions/_assign.scss +10 -10
- data/_sass/bourbon/functions/_color-lightness.scss +13 -13
- data/_sass/bourbon/functions/_flex-grid.scss +38 -38
- data/_sass/bourbon/functions/_golden-ratio.scss +3 -3
- data/_sass/bourbon/functions/_grid-width.scss +13 -13
- data/_sass/bourbon/functions/_modular-scale.scss +66 -66
- data/_sass/bourbon/functions/_px-to-em.scss +13 -13
- data/_sass/bourbon/functions/_px-to-rem.scss +15 -15
- data/_sass/bourbon/functions/_strip-units.scss +5 -5
- data/_sass/bourbon/functions/_tint-shade.scss +9 -9
- data/_sass/bourbon/functions/_transition-property-name.scss +21 -21
- data/_sass/bourbon/functions/_unpack.scss +17 -17
- data/_sass/bourbon/helpers/_convert-units.scss +15 -15
- data/_sass/bourbon/helpers/_gradient-positions-parser.scss +13 -13
- data/_sass/bourbon/helpers/_is-num.scss +8 -8
- data/_sass/bourbon/helpers/_linear-angle-parser.scss +25 -25
- data/_sass/bourbon/helpers/_linear-gradient-parser.scss +41 -41
- data/_sass/bourbon/helpers/_linear-positions-parser.scss +61 -61
- data/_sass/bourbon/helpers/_linear-side-corner-parser.scss +31 -31
- data/_sass/bourbon/helpers/_radial-arg-parser.scss +69 -69
- data/_sass/bourbon/helpers/_radial-gradient-parser.scss +50 -50
- data/_sass/bourbon/helpers/_radial-positions-parser.scss +18 -18
- data/_sass/bourbon/helpers/_render-gradients.scss +26 -26
- data/_sass/bourbon/helpers/_shape-size-stripper.scss +10 -10
- data/_sass/bourbon/helpers/_str-to-num.scss +50 -50
- data/_sass/bourbon/settings/_asset-pipeline.scss +1 -1
- data/_sass/bourbon/settings/_prefixer.scss +6 -6
- data/_sass/bourbon/settings/_px-to-em.scss +1 -1
- metadata +4 -4
- data/_data/author.yml +0 -8
@@ -1,23 +1,23 @@
|
|
1
|
-
// Order of the includes matters, and it is: normal, bold, italic, bold+italic.
|
2
|
-
|
3
|
-
@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: $asset-pipeline) {
|
4
|
-
@font-face {
|
5
|
-
font-family: $font-family;
|
6
|
-
font-weight: $weight;
|
7
|
-
font-style: $style;
|
8
|
-
|
9
|
-
@if $asset-pipeline == true {
|
10
|
-
src: font-url('#{$file-path}.eot');
|
11
|
-
src: font-url('#{$file-path}.eot?#iefix') format('embedded-opentype'),
|
12
|
-
font-url('#{$file-path}.woff') format('woff'),
|
13
|
-
font-url('#{$file-path}.ttf') format('truetype'),
|
14
|
-
font-url('#{$file-path}.svg##{$font-family}') format('svg');
|
15
|
-
} @else {
|
16
|
-
src: url('#{$file-path}.eot');
|
17
|
-
src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'),
|
18
|
-
url('#{$file-path}.woff') format('woff'),
|
19
|
-
url('#{$file-path}.ttf') format('truetype'),
|
20
|
-
url('#{$file-path}.svg##{$font-family}') format('svg');
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
1
|
+
// Order of the includes matters, and it is: normal, bold, italic, bold+italic.
|
2
|
+
|
3
|
+
@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: $asset-pipeline) {
|
4
|
+
@font-face {
|
5
|
+
font-family: $font-family;
|
6
|
+
font-weight: $weight;
|
7
|
+
font-style: $style;
|
8
|
+
|
9
|
+
@if $asset-pipeline == true {
|
10
|
+
src: font-url('#{$file-path}.eot');
|
11
|
+
src: font-url('#{$file-path}.eot?#iefix') format('embedded-opentype'),
|
12
|
+
font-url('#{$file-path}.woff') format('woff'),
|
13
|
+
font-url('#{$file-path}.ttf') format('truetype'),
|
14
|
+
font-url('#{$file-path}.svg##{$font-family}') format('svg');
|
15
|
+
} @else {
|
16
|
+
src: url('#{$file-path}.eot');
|
17
|
+
src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'),
|
18
|
+
url('#{$file-path}.woff') format('woff'),
|
19
|
+
url('#{$file-path}.ttf') format('truetype'),
|
20
|
+
url('#{$file-path}.svg##{$font-family}') format('svg');
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
@@ -1,10 +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);
|
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
10
|
}
|
@@ -1,10 +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*96)}dpi),
|
7
|
-
only screen and (min-resolution: #{$ratio}dppx) {
|
8
|
-
@content;
|
9
|
-
}
|
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*96)}dpi),
|
7
|
+
only screen and (min-resolution: #{$ratio}dppx) {
|
8
|
+
@content;
|
9
|
+
}
|
10
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
@mixin hyphens($hyphenation: none) {
|
2
|
-
// none | manual | auto
|
3
|
-
@include prefixer(hyphens, $hyphenation, webkit moz ms spec);
|
1
|
+
@mixin hyphens($hyphenation: none) {
|
2
|
+
// none | manual | auto
|
3
|
+
@include prefixer(hyphens, $hyphenation, webkit moz ms spec);
|
4
4
|
}
|
@@ -1,14 +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
|
-
}
|
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
|
+
}
|
@@ -1,35 +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
|
-
}
|
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
|
+
}
|
@@ -1,38 +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
|
-
}
|
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
|
+
}
|
@@ -1,8 +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
|
-
}
|
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
|
+
}
|
@@ -1,8 +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
|
-
}
|
1
|
+
@mixin placeholder {
|
2
|
+
$placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
|
3
|
+
@each $placeholder in $placeholders {
|
4
|
+
&:#{$placeholder}-placeholder {
|
5
|
+
@content;
|
6
|
+
}
|
7
|
+
}
|
8
|
+
}
|
@@ -1,39 +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
|
-
}
|
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
|
+
}
|
@@ -1,15 +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
|
-
}
|
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
|
+
}
|
@@ -1,77 +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
|
-
}
|
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
|
+
}
|