Skip to content

Instantly share code, notes, and snippets.

@Abban
Created October 2, 2012 10:09
Show Gist options
  • Save Abban/3817992 to your computer and use it in GitHub Desktop.
Save Abban/3817992 to your computer and use it in GitHub Desktop.
CSS: Icon Font Mixin
// 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