Last active
August 29, 2015 14:17
-
-
Save htmlzengarden/496b3cbc45c1bd53e1f1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<div data-color="red"></div> |
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.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$prefix: 'foo'; | |
.#{$prefix} | |
{ | |
&-bar | |
{ | |
&-baz | |
{ | |
&:hover, | |
&:focus | |
{ | |
color: red; | |
} | |
} | |
.#{$prefix} | |
{ | |
&-baz | |
{ | |
&:hover, | |
&:focus | |
{ | |
color: red; | |
} | |
} | |
} | |
} | |
} |
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
.foo-bar-baz:hover, .foo-bar-baz:focus { | |
color: red; | |
} | |
.foo-bar .foo-baz:hover, .foo-bar .foo-baz:focus { | |
color: red; | |
} |
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
<div data-color="red"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment