Created
July 31, 2013 17:49
-
-
Save vazquez/6124338 to your computer and use it in GitHub Desktop.
SASS Snippets
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
@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