Skip to content

Instantly share code, notes, and snippets.

@vazquez
Created July 31, 2013 17:49
Show Gist options
  • Save vazquez/6124338 to your computer and use it in GitHub Desktop.
Save vazquez/6124338 to your computer and use it in GitHub Desktop.
SASS Snippets
@mixin headings($from: 1, $to: 6){
$heading-selector: (unquote(""));
@for $i from $from through $to {
$heading-selector: $heading-selector, unquote("h#{$i}")
}
#{$heading-selector}{
@content
}
}
@include headings(){
font-family:sans-serif;
}
div{
@include headings(1, 3){
color:#BADA55;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment