Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xianmin/hugo-theme-jane.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/sass/_partial/_post/content/_blockquote.scss')
-rw-r--r--assets/sass/_partial/_post/content/_blockquote.scss42
1 files changed, 42 insertions, 0 deletions
diff --git a/assets/sass/_partial/_post/content/_blockquote.scss b/assets/sass/_partial/_post/content/_blockquote.scss
new file mode 100644
index 0000000..41f8fd2
--- /dev/null
+++ b/assets/sass/_partial/_post/content/_blockquote.scss
@@ -0,0 +1,42 @@
+// ==============================
+// Post blockquote
+// ==============================
+
+blockquote {
+ margin: 1em auto;
+ color: #555555;
+ background-color: #F6F6F6;
+ border-left: 4px solid #999;
+ position: relative;
+ line-height: 1.6;
+ font-family: Open Sans;
+
+ @include min-screen() {
+ padding: 0.2em 2em 0.2em 3em;
+
+ &::before {
+ font-family: Arial;
+ content: "\201C";
+ color: #999;
+ font-size: 4em;
+ position: absolute;
+ left: 10px;
+ top: -10px;
+ }
+ }
+
+ @include max-screen() {
+ padding: 0.2em 1em;
+ }
+
+ footer {
+ color: #333333;
+ margin-bottom: 1em;
+ }
+
+ cite:before {
+ content: '\2014';
+ padding-right: .3em;
+ padding-left: .3em;
+ }
+}