From 302e3a1afcaccab08939b53857c56c3c53eda6de Mon Sep 17 00:00:00 2001 From: alecbrooks <alecdbrooks@gmail.com> Date: Tue, 4 Jun 2013 15:42:12 -0500 Subject: [PATCH] Add formatting for inline and block code. --- static/css/screen.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/css/screen.css b/static/css/screen.css index af72e49..a1d5966 100644 --- a/static/css/screen.css +++ b/static/css/screen.css @@ -3,6 +3,7 @@ License: none (public domain) */ + html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, @@ -47,6 +48,8 @@ table { border-spacing: 0; } +@import url("pygment.css"); + /* Mockingbird Theme by Nevan Scott nevanscott.com */ body { @@ -167,6 +170,11 @@ div.codehilite { border-radius: 5px; } +code, pre { + font-family: monospace; + background-color: rgb(238, 238, 238); +} + .post pre, .page pre { padding: .5em; font-size: 12px; -- GitLab