forked from mirror/codeberg-forgejo
21 lines
778 B
CSS
21 lines
778 B
CSS
:root {
|
|
--gitea-color-scheme-1: #2185d0;
|
|
--gitea-text-color: #FFF;
|
|
}
|
|
|
|
#navbar .ui.red.label, #navbar .ui.red.labels .label { box-shadow: 0 0 1px 1px #c82121; }
|
|
|
|
* {
|
|
scrollbar-width: initial;
|
|
scrollbar-color: initial;
|
|
}
|
|
|
|
.theme-forgejo-light #navbar a[href="/"] > .ui.mini.image, .theme-forgejo-light footer .branding img, .theme-gitea #navbar a[href="/"] > .ui.mini.image, .theme-gitea footer .branding img {
|
|
content: url('https://design.codeberg.org/logo-kit/icon.svg');
|
|
}
|
|
@media (prefers-color-scheme: light) {
|
|
.theme-forgejo-auto #navbar a[href="/"] .ui.mini.image, .theme-forgejo-auto footer .branding img, .theme-auto #navbar a[href="/"] > .ui.mini.image, .theme-auto footer .branding img {
|
|
content: url('https://design.codeberg.org/logo-kit/icon.svg');
|
|
}
|
|
}
|