From 36d70b7e16915eb3575b00c72ac1ff2823a4ebd0 Mon Sep 17 00:00:00 2001 From: lynxize Date: Thu, 6 Feb 2025 21:16:29 -0700 Subject: [PATCH] improve note/warn/important boxes --- static/main.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/static/main.css b/static/main.css index e975d25..397d545 100644 --- a/static/main.css +++ b/static/main.css @@ -73,6 +73,7 @@ footer { border-radius: 5px; border-style: solid; border-color: #8aadf4; + background-color: #242e42; padding: 2px 8px 2px 15px; } @@ -80,7 +81,8 @@ footer { .insert-warning { border-radius: 5px; border-style: solid; - border-color: hsl(343deg, 81%, 50%); + border-color: #e71853; + background-color: #42242c; padding: 2px 8px 2px 15px; } @@ -88,7 +90,8 @@ footer { .insert-important { border-radius: 5px; border-style: solid; - border-color: hsl(23deg, 92%, 50%); + border-color: #f5640a; + background-color: #32241b; padding: 2px 8px 2px 15px; }