diff options
Diffstat (limited to 'template/static/css/styles.css')
-rw-r--r-- | template/static/css/styles.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/template/static/css/styles.css b/template/static/css/styles.css index 6252898..f5d4f78 100644 --- a/template/static/css/styles.css +++ b/template/static/css/styles.css @@ -2,12 +2,17 @@ @import "/static/css/form.css"; @import "/static/css/table.css"; +@font-face { + font-family: 'GeistMono'; + src: url('/static/fonts/GeistMono-Medium.ttf') format('truetype'); +} + * { box-sizing: border-box; color: var(--text-color); + font-family: GeistMono; } body { - font-family: "Roboto", sans-serif; background-color: var(--background-color); } |