This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// keyframes - prints out vendor-prefixed keyframe declarations | |
// | |
// $name - the name of your animation | |
// | |
@mixin keyframes($name) { | |
@-moz-keyframes #{$name} { | |
@content; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sass/screen.scss:66 DEBUG: ---- | |
sass/screen.scss:67 DEBUG: (two three four five six) == (two three four five six) | |
sass/screen.scss:72 DEBUG: 1, true | |
sass/screen.scss:66 DEBUG: ---- | |
sass/screen.scss:67 DEBUG: (three four five six) == (three four five six) | |
sass/screen.scss:73 DEBUG: 2, true | |
sass/screen.scss:66 DEBUG: ---- | |
sass/screen.scss:67 DEBUG: (four) == four | |
sass/screen.scss:74 DEBUG: 3, false | |
sass/screen.scss:66 DEBUG: ---- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$test: ( | |
one: ( | |
two: ( | |
val: 'socks' | |
) | |
), | |
socks: ( | |
pants: ( | |
shoes: 'hats' | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@function map-me($map, $keys) { | |
@each $key in $keys { | |
@if map-has-key($map, $key) { | |
$map: map-get($map, $key); | |
} | |
} // each key in keys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
%a { | |
color: red; | |
&-suffix { | |
display: none; // does not get extended | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
.a { | |
&-suffix { | |
display: none; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.7) | |
// Compass (v) | |
// ---- | |
@import 'compass'; | |
$btn-colors: ( | |
default: ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.7) | |
// Compass (v) | |
// ---- | |
@import 'compass'; | |
$btn-colors: ( | |
default: ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.0.rc.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$var: null; | |
//$var: 'red'; | |
//$var: false; | |
//$var: true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.all | |
-['axal', | |
'sean', | |
'dave', | |
'andrew', | |
'dmitry', | |
'tom', | |
'malcolm', | |
'bryan', | |
'chrisf', |
NewerOlder