From 4b9c45509e418aaff91b2c791f92def6700f9bac Mon Sep 17 00:00:00 2001 From: sij Date: Tue, 29 Oct 2024 01:15:39 +0100 Subject: [PATCH] Update custom.css Added styling for broadcast message / alert box --- custom.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/custom.css b/custom.css index fc5116f..61f2279 100644 --- a/custom.css +++ b/custom.css @@ -35,3 +35,22 @@ text-decoration: underline; transition: color 0.3s ease, font-weight 0.3s ease; } + +/* Broadcast message styling */ +#custom-css .alert-info { + background-color: #3c3836 !important; + color: #ebdbb2 !important; +} + +/* Style links within broadcast messages to match your theme */ +#custom-css .alert-info a { + color: #5ACD83; + text-decoration: none; + transition: color 0.3s ease, font-weight 0.3s ease; +} + +#custom-css .alert-info a:hover { + color: #80FFAD; + font-weight: bold; + text-decoration: underline; +}