Skip to content

Instantly share code, notes, and snippets.

@asvny
Created September 2, 2015 13:11
Show Gist options
  • Save asvny/316a5ed0a6b5da5c51dc to your computer and use it in GitHub Desktop.
Save asvny/316a5ed0a6b5da5c51dc to your computer and use it in GitHub Desktop.
//SCSS
$pages: ('home', 'about', 'products', 'contact');
$selector: ();
@each $item in $pages {
$selector: append($selector, unquote('.#{$item} .nav-#{$item}'), 'comma');
}
#{$selector} {
color: red;
}
//CSS
.home .nav-home,
.about .nav-about,
.products .nav-products,
.contact .nav-contact {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment