Update custom.css

Added styling for broadcast message / alert box
This commit is contained in:
Sangye Ince-Johannsen 2024-10-29 01:15:39 +01:00
parent d8acee66dd
commit 4b9c45509e

View file

@ -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;
}