Created
January 9, 2016 03:13
-
-
Save modermo/4963ae8160aa46c461a7 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// libsass (v3.3.2) | |
// ---- | |
$subject_search: ( | |
h1 : red, | |
h2 : blue, | |
h3 : green, | |
p : yellow, | |
'.subhead' : yellow, | |
); | |
@mixin subject_colors($subject){ | |
@each $type_element, $color in $subject { | |
#{$type_element} { | |
color: #{$color}; | |
} | |
} | |
} | |
.boom { | |
@include subject_colors($subject_search); | |
} | |
This file contains 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
.boom h1 { | |
color: red; | |
} | |
.boom h2 { | |
color: blue; | |
} | |
.boom h3 { | |
color: green; | |
} | |
.boom p { | |
color: yellow; | |
} | |
.boom .subhead { | |
color: yellow; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment