b133ae6b2f37 — Oben Sonne 13 years ago
Tweak blockquote style
1 files changed, 13 insertions(+), 4 deletions(-)

M app/diggie/templates/diggie/dg.css
M app/diggie/templates/diggie/dg.css +13 -4
@@ 66,21 66,30 @@ pre {
 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;
+}