Created
October 2, 2012 10:09
-
-
Save Abban/3817992 to your computer and use it in GitHub Desktop.
CSS: Icon Font Mixin
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
// Mixin | |
.icon(@char){ | |
font-family: 'Pictos Custom'; | |
content: @char; | |
-webkit-font-smoothing: antialiased; | |
text-transform:none; | |
font-size: 1.5em; | |
vertical-align:middle; | |
font-weight: normal; | |
} | |
// Usage | |
a:before{ | |
.icon('f'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment