diff --git a/partials/garbage/list.html b/partials/garbage/list.html
index c2537ed..57a1f1d 100644
--- a/partials/garbage/list.html
+++ b/partials/garbage/list.html
@@ -26,7 +26,7 @@
- {{ .Content }}
+
{{ .Content }}
diff --git a/themes/terminal/assets/css/main.scss b/themes/terminal/assets/css/main.scss
index 7585edd..f289c29 100644
--- a/themes/terminal/assets/css/main.scss
+++ b/themes/terminal/assets/css/main.scss
@@ -172,8 +172,6 @@ pre {
}
blockquote {
- border-top: 1px solid $accent;
- border-bottom: 1px solid $accent;
margin: 40px 0;
padding: 25px;
diff --git a/themes/terminal/assets/css/post.scss b/themes/terminal/assets/css/post.scss
index dc0f36b..55c8c83 100644
--- a/themes/terminal/assets/css/post.scss
+++ b/themes/terminal/assets/css/post.scss
@@ -74,7 +74,7 @@
}
&-content {
- margin-top: 30px;
+ margin-top: 0px;
}
&-cover {
@@ -131,3 +131,34 @@ h1:hover a, h2:hover a, h3:hover a, h4:hover a {
.footnotes {
color: transparentize($color, .5);
}
+
+blockquote {
+ font-family: Georgia, serif;
+ position: relative;
+ margin: 0.5em;
+ padding: 0.5em 0em 0em 0em;
+ color: transparentize($color, .25);
+}
+blockquote:before {
+ font-family: Georgia, serif;
+ position: relative;
+ left: -0.25em;
+ font-size: 3em;
+ line-height: 1;
+ content: "\201C";
+}
+blockquote:after {
+ font-family: Georgia, serif;
+ position: relative;
+ font-size: 3em;
+ line-height: 1;
+ right: -0.25em;
+ content: "\201D";
+}
+blockquote footer {
+ padding: 0 2em 0 0;
+ text-align:right;
+}
+blockquote cite:before {
+ content: "\2013";
+}