diff options
author | EuAndreh <eu@euandre.org> | 2022-02-26 11:52:40 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-02-26 11:52:40 -0300 |
commit | 2a894704860fdd05c41d3b7ea1060497415041bf (patch) | |
tree | be67f3cb5c32219ea642a1ad29e1825431e7b3ef | |
parent | src/td.in: Add -S option to dump suggested CSS (diff) | |
download | td-2a894704860fdd05c41d3b7ea1060497415041bf.tar.gz td-2a894704860fdd05c41d3b7ea1060497415041bf.tar.xz |
src/style.css: Better spacing for <pre> tags
-rw-r--r-- | src/style.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/style.css b/src/style.css index 031aec8..4f3c83e 100644 --- a/src/style.css +++ b/src/style.css @@ -1,3 +1,7 @@ +html { + line-height: 1.5; +} + body { max-width: 800px; margin: 0 auto 0 auto; @@ -48,7 +52,7 @@ hr { pre, code { background-color: #ddd; border-radius: 5px; - padding: 5px; + padding: 3px; } pre > code { |