Created
October 3, 2013 21:28
-
-
Save lrobeson/6817413 to your computer and use it in GitHub Desktop.
Sass partial - font face declaration for IcoMoon icon font
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
/** | |
* @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