Created
March 14, 2014 19:20
-
-
Save krambuhl/9554854 to your computer and use it in GitHub Desktop.
icon utility class. uses sass to build out sizing modifiers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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