From 6256fb77847a6296ad045e6ab8f58dd7e2ac5882 Mon Sep 17 00:00:00 2001 From: Artanicus Date: Sat, 4 Feb 2017 23:09:31 +0200 Subject: [PATCH] Define font-family for pre to aid OS's in selecting good monospace fonts --- share/static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/static/style.css b/share/static/style.css index ba8827a..ced1b98 100644 --- a/share/static/style.css +++ b/share/static/style.css @@ -2,3 +2,7 @@ body { background: black; color: #bbbbbb; } + +pre { + font-family: DejaVu Sans Mono, Menlo, monospace; +}