svgtofont
Version:
Converts SVG to TTF/EOT/WOFF/WOFF2/SVG format fonts.
27 lines (24 loc) • 720 B
text/stylus
@font-face {
{{fontFamily}}
}
{% if nameAsUnicode %}.{{prefix}}{% else %}[class^="{{prefix}}-"], [class*=" {{prefix}}-"]{% endif %} {
font-family: '{{fontname}}' !important;{{fontSize}}
font-style:normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
{% if hasMulticolor %}
[class^="{{prefix}}-"] [class^="path"]::before,
[class*=" {{prefix}}-"] [class^="path"]::before {
font-family: '{{fontname}}' !important;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
{% endif %}
{% if not nameAsUnicode %}
{{ cssString }}
{% for name, value in infoData %}
${{prefix}}-{{ name }} = '{{ value.encodedCode }}'
{%- endfor %}
{% endif %}