diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2008-10-02 12:11:00 +0200 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2008-10-02 12:11:00 +0200 |
commit | df47d5b68c7f6ca7f1da38c321a1316fe83c647c (patch) | |
tree | 0ff94e5de1002076fc68b0dd3dff9e9a954c73b9 | |
parent | 4afee87f9c3c4026e37f82acce71f9d2e346266c (diff) | |
download | trivium-df47d5b68c7f6ca7f1da38c321a1316fe83c647c.tar.gz trivium-df47d5b68c7f6ca7f1da38c321a1316fe83c647c.tar.xz trivium-df47d5b68c7f6ca7f1da38c321a1316fe83c647c.zip |
Format block quote paragraphs with interleaf
-rw-r--r-- | data/style.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/data/style.css b/data/style.css index eb995ea..ef1e6db 100644 --- a/data/style.css +++ b/data/style.css @@ -83,6 +83,7 @@ h3 + p { margin-left: 0; } + address { text-align: right; margin: 3em 0; @@ -106,7 +107,7 @@ p + .quick p:first-child { blockquote { font-style: italic; - margin-left: 1em; + margin: 8px 0 8px 1em; } blockquote .source { @@ -117,12 +118,16 @@ blockquote .source { font-size: 11px; } +blockquote p { + margin: 8px 0; +} + img { border: none; } pre { - margin-left: 1em; + margin: 8px 0 8px 1em; font-size: 11px; } |