Last active
January 8, 2017 05:53
-
-
Save dmjcomdem/b73cbaf699cc42c7df695c66e96d6a63 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$name-class: ".block1"; | |
#{$name-class} { | |
font-size: 100px; | |
&__inner { | |
font-size: 10px; | |
&:before { content: ""; } | |
@at-root #{$name-class}:hover &:before { | |
color: red; | |
} | |
.active#{&}:hover { content: 'active'; } | |
} //&__inner | |
} | |
$name-class: ".block4"; | |
#{$name-class} { | |
font-size: 100px; | |
&__inner { | |
font-size: 10px; | |
@at-root #{$name-class}:hover & { | |
color: red; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment