Update custom.css

This commit is contained in:
Sangye Ince-Johannsen 2024-11-02 20:38:28 +01:00
parent 427f7be387
commit 9a7f9689cd

View file

@ -27,13 +27,27 @@
text-decoration: underline; text-decoration: underline;
} }
/* Styles for sidebar/side menu links */ /* Custom menu link styling */
#custom-css .menu-wrapper a:hover, #custom-css .custom-links {
#custom-css .sidebar a:hover { padding-left: 26px;
margin: 10px 0;
}
#custom-css .custom-links a {
color: #ebdbb2; /* Gruvbox foreground color */
text-decoration: none;
transition: color 0.3s ease, font-weight 0.3s ease;
}
#custom-css .custom-links a:hover {
color: #80FFAD; color: #80FFAD;
font-weight: bold; font-weight: bold;
text-decoration: underline; text-decoration: underline;
transition: color 0.3s ease, font-weight 0.3s ease; }
#custom-css .custom-links p {
margin: 0;
line-height: 2;
} }
/* Broadcast message styling */ /* Broadcast message styling */
@ -54,3 +68,4 @@
font-weight: bold; font-weight: bold;
text-decoration: underline; text-decoration: underline;
} }