Skip to content

Instantly share code, notes, and snippets.

@johanbrook
Created March 10, 2011 09:34
Show Gist options
  • Save johanbrook/863818 to your computer and use it in GitHub Desktop.
Save johanbrook/863818 to your computer and use it in GitHub Desktop.
@mixin icon($symbol, $color: transparent, $pos: left top){
background: $color url(style/images/#{$symbol}.png) no-repeat $pos;
padding-left: 25px;
}
// Usage:
h2{
color: #fff;
@include icon(label, red);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment