# HG changeset patch # User Oben Sonne # Date 1302352773 -7200 # Sat Apr 09 14:39:33 2011 +0200 # Node ID b133ae6b2f37e4987f4b5221b7d6b4c8cfbb5bbc # Parent 2f20322648018295686982981196415a6c22a3c9 Tweak blockquote style diff --git a/app/diggie/templates/diggie/dg.css b/app/diggie/templates/diggie/dg.css --- a/app/diggie/templates/diggie/dg.css +++ b/app/diggie/templates/diggie/dg.css @@ -66,21 +66,30 @@ blockquote { padding: 0.6em; padding-left: 2em; - background-color: #eeeeee; - border-radius: 0.85em; + border: solid 1px #aaaaaa; + background-color: #fdf6e3; + border-bottom-left-radius: 0.85em; + border-top-right-radius: 0.85em; + overflow: auto; } blockquote p:last-child { margin-bottom: 0; } -blockquote p:before { - content: "\201C"; +blockquote p:before, blockquote p:after { font-weight: bold; font-size: 2em; font-family: serif; +} +blockquote p:first-child:before { + content: "\201C"; margin-right: 0.5em; } +blockquote p:last-child:after { + content: "\201D"; + margin-left: 0.5em; +}