diff options
author | Feuerfuchs <git@feuerfuchs.dev> | 2020-05-18 16:12:43 +0200 |
---|---|---|
committer | Feuerfuchs <git@feuerfuchs.dev> | 2020-05-18 16:12:43 +0200 |
commit | ac770231436f8a17d348a6a0ab934429df3c57d0 (patch) | |
tree | 50e14597a6b20a464882b123275f76b906616af7 /internal/port/tpl/_fonts.html | |
parent | WIP: Refactoring (diff) | |
download | gopherproxy-ac770231436f8a17d348a6a0ab934429df3c57d0.tar.gz gopherproxy-ac770231436f8a17d348a6a0ab934429df3c57d0.tar.bz2 gopherproxy-ac770231436f8a17d348a6a0ab934429df3c57d0.zip |
WIP: Refactoring
Diffstat (limited to 'internal/port/tpl/_fonts.html')
-rw-r--r-- | internal/port/tpl/_fonts.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/internal/port/tpl/_fonts.html b/internal/port/tpl/_fonts.html new file mode 100644 index 0000000..b56aa22 --- /dev/null +++ b/internal/port/tpl/_fonts.html | |||
@@ -0,0 +1,16 @@ | |||
1 | <style> | ||
2 | @font-face { | ||
3 | font-family: 'Iosevka Term SS03'; | ||
4 | font-style: normal; | ||
5 | font-weight: normal; | ||
6 | src: url('{{ .Assets.FontW2 }}') format('woff2'), | ||
7 | url('{{ .Assets.FontW }}') format('woff'); | ||
8 | } | ||
9 | @font-face { | ||
10 | font-family: 'Iosevka Aile'; | ||
11 | font-style: normal; | ||
12 | font-weight: normal; | ||
13 | src: url('{{ .Assets.PropFontW2 }}') format('woff2'), | ||
14 | url('{{ .Assets.PropFontW }}') format('woff'); | ||
15 | } | ||
16 | </style> | ||