Last active
November 20, 2019 06:37
-
-
Save diogomoretti/7278541 to your computer and use it in GitHub Desktop.
Stylus mixin @font-face
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
// Fonts mixin | |
font-url(file) | |
return '../fonts/' + file | |
webfont(family, file, hack-chrome-windows = false, weight = 'normal') | |
@font-face | |
font-family family | |
src url(font-url(file + '.eot')) | |
src url(font-url(file + '.eot?#iefix')) format('embedded-opentype'), | |
url(font-url(file + '.woff')) format('woff'), | |
url(font-url(file + '.ttf')) format('truetype'), | |
url(font-url(file + '.svg#'+ family)) format('svg') | |
font-weight weight | |
font-style normal | |
if hack-chrome-windows | |
@media screen and (-webkit-min-device-pixel-ratio:0) | |
@font-face | |
font-family family | |
src url(font-url(file + '.svg#'+ family)) format('svg') |
Saved me a bunch of time figuring out my own one! 👍 🌟
Nice, thanks @diogomiretti (y)²
Nice one!
thanks
Thank You! Really useful! Here is my version with sub-folder support: https://gist.github.com/DJviolin/3f64b2adf920eb31950e426b62d12a7a
thanks
thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to use:
webfont('Open Sans', 'open-sans-webfont', true, 'normal')