Skip to content

Instantly share code, notes, and snippets.

@asimonok
Created November 16, 2015 09:41
Show Gist options
  • Save asimonok/70dbf92887cbc0ba3ee8 to your computer and use it in GitHub Desktop.
Save asimonok/70dbf92887cbc0ba3ee8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<a href="#" class="block">block-link</a>
<a href="#" class="link">link</a>
// ----
// libsass (v3.2.5)
// ----
$links : block,link;
@each $link in $links{
.#{$link}{
@if $link == 'block'{
color:#ff0000;
}
@else{
color:#000;
}
}
}
.block {
color: #ff0000;
}
.link {
color: #000;
}
<a href="#" class="block">block-link</a>
<a href="#" class="link">link</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment