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-12-31 13:15:37 +01:00

69 lines
1.2 KiB
SCSS

/* explore: repositories / main */
.explore {
@include secondary-menu_new-menu;
.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;
}
}
}
}
@include divider;
@include repository-list;
}
}
/* explore: users */
.explore.users {
.container {
.user.list {
.item {
&:not(:first-child) {
border-top: 1px solid $bg60;
}
.content {
.header {
color: $white;
}
.description {
color: $white-dark;
a {
color: $white;
&:hover {
color: $red;
}
}
svg {
@if $nojavascript == true {
display: none;
}
}
}
}
}
}
}
}