@@ 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;
+}