diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-05-21T21·16+0200 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2018-05-22T07·45+0200 |
commit | fa32b9f70050901b1be11e649ed28bba047132ce (patch) | |
tree | 6f0d2e0cbdff8bc16fc4f87722bffc5515e5ad6f /static/styles.css | |
parent | 92591142bd056a7f146647ab88cb1c3107b7467f (diff) |
fix(static): Set monospaced fonts appropriately
I'm not web enough to make the `not`-selector thing work.
Diffstat (limited to 'static/styles.css')
-rw-r--r-- | static/styles.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/static/styles.css b/static/styles.css index 27f05be72930..510a25ded3d4 100644 --- a/static/styles.css +++ b/static/styles.css @@ -1,5 +1,9 @@ -* :not(.material-icons, code) { - font-family: 'Ubuntu', sans-serif !important; +* :not(.material-icons) { + font-family: 'Ubuntu', sans-serif; +} + +code, pre, code * { + font-family: 'Ubuntu Mono', monospace !important; } .cvs-title, .thread-link { |