Skip to content

Instantly share code, notes, and snippets.

@gregmercer
Last active August 29, 2015 13:57
Show Gist options
  • Save gregmercer/9351379 to your computer and use it in GitHub Desktop.
Save gregmercer/9351379 to your computer and use it in GitHub Desktop.
@media screen {
%icon {
transition: background-color ease .2s;
margin: 0 .5em;
}
}
@mixin icon($color, $url) {
@extend %icon;
background-color: $color;
background-url: url($url);
}
.info-icon {
@include icon(blue, '/images/info.png');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment