Skip to content

Instantly share code, notes, and snippets.

@krambuhl
Created March 14, 2014 19:20
Show Gist options
  • Save krambuhl/9554854 to your computer and use it in GitHub Desktop.
Save krambuhl/9554854 to your computer and use it in GitHub Desktop.
icon utility class. uses sass to build out sizing modifiers.
.icon {
display: inline-block;
background-size: contain;
font-size: 0;
color: transparent;
}
.icon-block {
display: block;
}
@each $i in (8 16 24 32 40 48 64 72 96 128) {
.icon-#{$i} {
width: #{$i}px;
height: #{$i}px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment