24 lines
587 B
Handlebars
24 lines
587 B
Handlebars
@font-face {
|
|
font-display: block;
|
|
font-family: "{{ name }}";
|
|
src: {{{ fontSrc }}};
|
|
}
|
|
|
|
.{{ prefix }}::before,
|
|
[class^="{{ prefix }}-"]::before,
|
|
[class*=" {{ prefix }}-"]::before {
|
|
display: inline-block;
|
|
font-family: {{ name }} !important;
|
|
font-style: normal;
|
|
font-weight: normal !important;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
vertical-align: -.125em;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
{{# each codepoints }}
|
|
.{{ ../prefix }}-{{ @key }}::before { content: "\\{{ codepoint this }}"; }
|
|
{{/ each }}
|