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

github.com/marcanuy/simpleit-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorMarcelo Canina <me@marcanuy.com>2018-08-14 17:45:48 +0300
committerMarcelo Canina <me@marcanuy.com>2018-08-14 17:45:48 +0300
commit94d4f4c018231f05b5d6d4b3eaac4a0d6b09205a (patch)
tree13715a62434db271b5f262d43ba7290a774701e0 /assets
parent15ea6e517b903c8c09ee73b9727de0d20a434b74 (diff)
add blockquote style
Diffstat (limited to 'assets')
-rw-r--r--assets/sass/styles.scss39
1 files changed, 39 insertions, 0 deletions
diff --git a/assets/sass/styles.scss b/assets/sass/styles.scss
index f7ecaeb..4911f76 100644
--- a/assets/sass/styles.scss
+++ b/assets/sass/styles.scss
@@ -189,3 +189,42 @@
font-weight: 700;
}
}
+
+/*
+ * Quotes
+ */
+blockquote{
+ font-size: ($font-size-base *1.2); //1.4em;
+ width:70%;
+ margin:50px auto;
+ font-family:Open Sans;
+ font-style:italic;
+ color: $dark;
+ padding:1.2em 30px 1.2em 75px;
+ border-left:8px solid $dark;
+ line-height:1.6;
+ position: relative;
+ background-color: $gray-200;
+}
+
+blockquote::before{
+ font-family:Arial;
+ content: "\201C";
+ color:$dark;
+ font-size:4em;
+ position: absolute;
+ left: 10px;
+ top:-10px;
+}
+
+blockquote::after{
+ content: '';
+}
+
+blockquote cite{
+ display:block;
+ color:$dark;
+ font-style: normal;
+ font-weight: bold;
+ margin-top:1em;
+}