diff options
| author | Jakob L. Kreuze | 2019-05-02 19:35:44 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze | 2019-05-02 19:35:44 -0400 |
| commit | 5ad0ee4b3005056561b4f473f7592987ec548e61 (patch) | |
| tree | cd14e81945855c36279bd43e9f4693056a1185f2 /haunt/css/fonts.css | |
| parent | dc960bc887821816ef4bb19ca7e28fff5b9187a4 (diff) | |
Include Org sources
Diffstat (limited to 'haunt/css/fonts.css')
| -rw-r--r-- | haunt/css/fonts.css | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/haunt/css/fonts.css b/haunt/css/fonts.css new file mode 100644 index 0000000..b17b8fd --- /dev/null +++ b/haunt/css/fonts.css @@ -0,0 +1,59 @@ +/* Cantarell */ + +@font-face { + font-family: 'Cantarell'; + src: url('/fonts/Cantarell-Bold.otf') format('opentype'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'Cantarell'; + src: url('/fonts/Cantarell-BoldOblique.otf') format('opentype'); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'Cantarell'; + src: url('/fonts/Cantarell-Oblique.otf') format('opentype'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Cantarell'; + src: url('/fonts/Cantarell-Regular.otf') format('opentype'); + font-weight: normal; + font-style: normal; +} + +/* Hack */ + +@font-face { + font-family: 'Hack'; + src: url('/fonts/Hack-Bold.ttf'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'Hack'; + src: url('/fonts/Hack-BoldItalic.ttf'); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'Hack'; + src: url('/fonts/Hack-Italic.ttf'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Hack'; + src: url('/fonts/Hack-Regular.ttf'); + font-weight: normal; + font-style: normal; +} |