From 097fb624236e2ac364beacda49c0375acb921900 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Fri, 30 Aug 2024 22:59:35 +0200 Subject: [PATCH] fix: ajout style blockquote --- public/css/index.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/public/css/index.css b/public/css/index.css index 1228f99..1e7ed79 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -158,6 +158,18 @@ table { width: 100%; } +blockquote { + background-color: var(--background-color-alt); + margin: 0 1rem; + padding: 0.1rem 1rem; + font-style: italic; + border-radius: 8px; +} + +blockquote p { + opacity: 0.9; +} + table td, table th { background-color: var(--background-color-alt); padding: 4px 12px;