Last active
May 7, 2018 19:08
-
-
Save lucianobarauna/8d6fc3d69b33db4ab601fec0ef4a62c5 to your computer and use it in GitHub Desktop.
Example de font-face in sass
This file contains hidden or 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
$pathFont: '../fonts/' | |
@font-face | |
font-family: 'apex_sansbold' | |
src: url('#{$pathFont}apexsans-bold-webfont.woff2') format('woff2'), url('#{$pathFont}apexsans-bold-webfont.woff') format('woff'), url('#{$pathFont}apexsans-bold-webfont.ttf') format('truetype') | |
font-weight: normal | |
font-style: normal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment