Skip to content

Instantly share code, notes, and snippets.

@modermo
Created January 9, 2016 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save modermo/4963ae8160aa46c461a7 to your computer and use it in GitHub Desktop.
Save modermo/4963ae8160aa46c461a7 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
.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