From c4e7acdae409b1ef0b770dd6d6f1170600919a17 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 18 Aug 2024 11:17:48 +0200 Subject: [PATCH] feat(css): add styling for warning message boxes Introduced new CSS class .ambox to provide consistent styling for warning and alert message boxes. The style includes margin, padding, background color, border, and font size to improve the visibility and readability of such messages. --- src/wikimore/static/css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/wikimore/static/css/style.css b/src/wikimore/static/css/style.css index c34b751..f235500 100644 --- a/src/wikimore/static/css/style.css +++ b/src/wikimore/static/css/style.css @@ -168,6 +168,14 @@ h1 { font-style: italic; } +.ambox { + margin: 1em 0; + padding: 10px; + background-color: #f9f9f9; + border: 1px solid #ddd; + font-size: small; +} + /* Navbox styling */ .navbox { padding: 3px;