Created
June 12, 2014 15:12
-
-
Save LukyVj/ab433e989a3a1dfb9318 to your computer and use it in GitHub Desktop.
Iconic SASS system
This file contains 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
$icons: "phone", "twitter", "email"; | |
@each $icon in $icons { | |
.ico{ | |
display: block; | |
&:before{ | |
@include single-element(); | |
@include square(1.2em); | |
} | |
&[class*="ico-#{($icon)}"]{ | |
&:before{ | |
@include icon-background('../images/icon_#{($icon)}.png'); | |
} | |
} | |
} | |
} |
C'est pour des images placeholder, il sers à générer des iconset en SVG sinon :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dommage que ce soit un .png ! :)