Skip to content

Instantly share code, notes, and snippets.

@lrobeson
Created October 3, 2013 21:28
Show Gist options
  • Save lrobeson/6817413 to your computer and use it in GitHub Desktop.
Save lrobeson/6817413 to your computer and use it in GitHub Desktop.
Sass partial - font face declaration for IcoMoon icon font
/**
* @file
* Font face declaration for IcoMoon icon font.
*
* Font source: http://icomoon.io/
*/
/* IcoMoon icon font */
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot');
src: url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
url('fonts/icomoon.woff') format('woff'),
url('fonts/icomoon.ttf') format('truetype'),
url('fonts/icomoon.svg#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment