From 59237ea9a6a1221d57f779c910cf75d4f7ede725 Mon Sep 17 00:00:00 2001 From: Michael Sliwinski Date: Thu, 18 Apr 2024 12:25:15 +0200 Subject: [PATCH] block quotes --- style.scss | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/style.scss b/style.scss index a8c5d04d..db76f9d4 100644 --- a/style.scss +++ b/style.scss @@ -423,7 +423,7 @@ blockquote { background-color: $blockBack; font-family: $fontserif; font-style: italic; - transform: rotate(-2deg); + transform: rotate(-1deg); @include dark-mode { color: $blockD; @@ -431,6 +431,15 @@ blockquote { } } +blockquote:nth-child(even) { + transform: rotate(1deg); + color: navy; + + @include dark-mode { + color: lightblue; + } +} + img { max-width: 100%; @include dark-mode {