diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-21 01:49:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 01:49:03 +0100 |
commit | 9b05e99af88435a9e33102f392b99ed09d4c8df1 (patch) | |
tree | baef3443a5ecc394e076c8416a4efa5102b213de /public | |
parent | 6665998008f291bf852dbcc6072286a208610688 (diff) |
feat: change all fonts to monospace
Diffstat (limited to 'public')
-rw-r--r-- | public/css/global.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/css/global.css b/public/css/global.css index 693452b..cce8b31 100644 --- a/public/css/global.css +++ b/public/css/global.css @@ -2,6 +2,10 @@ This stylesheet contains all styles which are the same across both themes. */ +* { + font-family: monospace; +} + ul { list-style-type: square; } |