diff options
author | Oscar Najera <hi@oscarnajera.com> | 2023-10-28 16:05:15 +0200 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2023-10-28 16:05:15 +0200 |
commit | 226fc21401325924657a6b7813aac7e470e2da08 (patch) | |
tree | e0fa8649ac8f8080d3da629a42815c0a0f96456a /assets/scss/style.scss | |
parent | 02dd856a483cf6a9d534e8760d24d7920166160c (diff) | |
download | hugo-minimalist-theme-226fc21401325924657a6b7813aac7e470e2da08.tar.gz hugo-minimalist-theme-226fc21401325924657a6b7813aac7e470e2da08.tar.bz2 hugo-minimalist-theme-226fc21401325924657a6b7813aac7e470e2da08.zip |
blockquote with icon left quotes
Diffstat (limited to 'assets/scss/style.scss')
-rw-r--r-- | assets/scss/style.scss | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/assets/scss/style.scss b/assets/scss/style.scss index c8fc777..1481cdb 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -162,7 +162,17 @@ html { text-shadow: 2px 2px 3px black; } blockquote { - @extend .bl, .bw2, .w3-theme-border, .pl3; + @extend .bl, .bw2, .w3-theme-border, .pv1, .pl3, .relative, .baskerville; + &::before { + font-family: "Font Awesome 6 Free"; + color: #79c753; + content: "\f10d"; + font-weight: 900; + font-size: 2rem; + position: absolute; + left: 10px; + top: -15px; + } p:last-of-type { @extend .tc, .ttu, .tracked, .fs-normal, .ma0, .pa0; } |