71 lines
1.7 KiB
CSS
71 lines
1.7 KiB
CSS
/* Styles for links in most areas */
|
|
#custom-css .main-row a,
|
|
#custom-css .sub-menu-entry a,
|
|
#custom-css .footer a,
|
|
#custom-css .video-info a,
|
|
#custom-css .video-info-description a,
|
|
#custom-css .comment-account a,
|
|
#custom-css .video-miniature a:not(.video-miniature-name),
|
|
#custom-css .account-title a,
|
|
#custom-css .main-col a {
|
|
color: #5ACD83;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease, font-weight 0.3s ease;
|
|
}
|
|
|
|
#custom-css .main-row a:hover,
|
|
#custom-css .sub-menu-entry a:hover,
|
|
#custom-css .footer a:hover,
|
|
#custom-css .video-info a:hover,
|
|
#custom-css .video-info-description a:hover,
|
|
#custom-css .comment-account a:hover,
|
|
#custom-css .video-miniature a:not(.video-miniature-name):hover,
|
|
#custom-css .account-title a:hover,
|
|
#custom-css .main-col a:hover {
|
|
color: #80FFAD;
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Custom menu link styling */
|
|
#custom-css .custom-links {
|
|
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;
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#custom-css .custom-links p {
|
|
margin: 0;
|
|
line-height: 2;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|