From 6d7e3bfa3e4554312a29d9e91a1b1212ea30befa Mon Sep 17 00:00:00 2001 From: Tobias Pfandzelter Date: Wed, 5 Aug 2020 21:49:29 +0200 Subject: [PATCH] fix syntax highlighting --- static/css/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/css/style.css b/static/css/style.css index dfc6325..4db8cfe 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,6 +1,7 @@ html {overflow-y: scroll} body{max-width:800px;margin:40px auto;padding:0 10px;font:14px/1.5 monospace;color:#444}h1,h2,h3{line-height:1.2}@media (prefers-color-scheme: dark){body{color:white;background:#444}a:link{color:#5bf}a:visited{color:#ccf}} -code{color: #FFFFFF; background:#000000; padding:2px} +code{padding:2px} +p > code{color: #FFFFFF; background:#000000} pre{color: #FFFFFF; background:#000000; padding:24px; white-space: pre-wrap} article{padding:24px 0} .center {display: block;margin-left: auto;margin-right: auto;width: 100%;}