From 0d75e505db3a07b0601f54dd81b954b88bc99c48 Mon Sep 17 00:00:00 2001 From: "Kevin C. Coram" Date: Thu, 13 Aug 2020 23:36:18 -0400 Subject: [PATCH] Add red coloring to inline code fence blocks --- static/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index c929fbe..e4ef7bd 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -65,8 +65,13 @@ pre { width: 100vw; } +code { + color: darkred; +} + pre code { display: block; + color: inherit; } figure {