vrifox/gitea-theme
Archived
1
0
Fork 0
This repository has been archived on 2022-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-theme/scss/import/explore.scss
2020-10-20 19:24:47 +02:00

109 lines
2 KiB
SCSS

/* explore: repositories / main */
.explore {
.secondary.menu {
background-color: $bg70 !important;
border-radius: 0;
.item {
color: $white-dark;
&:hover {
color: $white-light !important;
}
&.active {
color: $white !important;
&:hover {
color: $white-light;
}
}
.label {
background: $bg60;
}
}
}
.container {
@if $nojavascript == true {
.filter.menu {
display: none;
}
}
form.form {
.input {
input {
background: $bg40;
border: 2px solid $bg60;
color: $white;
&:focus {
background: $bg50;
border: 2px solid $bg60;
color: $white-light;
}
}
.button {
background: $bg60;
border: 0;
&:hover {
background: $bg50;
}
}
}
}
.divider {
border-bottom: 1px solid $bg60;
}
.repository.list {
.item {
&:not(:first-child) {
border-top: 1px solid $bg60;
}
.header {
a.name {
i.archive.icon {
color: $white-dark !important;
}
}
.metas {
span {
color: $white-dark !important;
}
}
}
.description {
p {
color: $white;
&.time {
color: $white-dark;
}
}
.tags {
a .label {
background: $bg60;
color: $white;
&:hover {
background: $bg70;
color: $white-light;
}
}
}
}
}
}
}
}
/* explore: users */
.explore.users {
.container {
.user.list {
.content {
.header {
color: $white;
}
.description {
color: $white;
}
}
}
}
}