From 05b73a85a5f7807c567c42e6198064acab8e382b Mon Sep 17 00:00:00 2001 From: Cole R Lawrence Date: Mon, 1 Aug 2016 11:26:32 -0500 Subject: [PATCH] style(monarch.css): Add monospace default for code Not every OS has `Consolas` as an installed font, for those browsers, default to `monospace`. --- website/monarch/monarch.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/monarch/monarch.css b/website/monarch/monarch.css index 062e44be..bc37a731 100644 --- a/website/monarch/monarch.css +++ b/website/monarch/monarch.css @@ -201,7 +201,7 @@ pre { border: 1px solid #888 } -code, pre,dt { font-family: Consolas } +code, pre,dt { font-family: Consolas, monospace } strong { color: black } @@ -216,4 +216,4 @@ dt { color: navy; margin-top: 2ex; padding: 2px;} dl dl dt { margin-top: 1ex;} #documentation .keyword { color: blue; } -#documentation .tag { color: navy; } \ No newline at end of file +#documentation .tag { color: navy; }