From 78edec0e2d8a3e1216d99234554276cb05505ac4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 22 Jul 2022 21:27:36 +0200 Subject: Adding upstream version 1.9.1+dfsg. Signed-off-by: Daniel Baumann --- build/font/css.hbs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build/font/css.hbs (limited to 'build/font/css.hbs') diff --git a/build/font/css.hbs b/build/font/css.hbs new file mode 100644 index 0000000..f651092 --- /dev/null +++ b/build/font/css.hbs @@ -0,0 +1,24 @@ +@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 }} -- cgit v1.2.3