forked from mirror/codeberg-forgejo
32 lines
693 B
CSS
32 lines
693 B
CSS
:root {
|
|
--color-footer: #144B49;
|
|
--color-footer-text: #ffffff;
|
|
--color-nav-hover-bg: #00000014;
|
|
}
|
|
|
|
footer .button:hover {
|
|
--color-hover: #73CCC6;
|
|
}
|
|
|
|
.following.bar, #navbar {
|
|
/* Change navbar color scheme to match Codeberg's brand */
|
|
background-color: var(--color-primary);
|
|
border-bottom: none !important;
|
|
}
|
|
|
|
#navbar > a.item, #navbar .item {
|
|
/* Use white text for navbar buttons */
|
|
color: #fff;
|
|
}
|
|
#navbar-expand-toggle {
|
|
/* Fix contrast for the mobile menu button */
|
|
--color-light-border: rgba(255,255,255,0.5);
|
|
--color-text-light: #fff;
|
|
}
|
|
* {
|
|
/* Revert changes to browser scrollbar */
|
|
scrollbar-width: initial;
|
|
scrollbar-color: initial;
|
|
}
|
|
|