Skip to content

Instantly share code, notes, and snippets.

@Phunky
Created April 22, 2013 09:01
Show Gist options
  • Save Phunky/5433396 to your computer and use it in GitHub Desktop.
Save Phunky/5433396 to your computer and use it in GitHub Desktop.
Shame.css mixing
$ashamed: true;
@mixin ashamed {
@if $ashamed == true{
@content;
}
}
body {
background: blue;
@include ashamed {
background: red;
div {
font-weight: bolder;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment