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

70 lines
1.2 KiB
SCSS
Raw Normal View History

2020-09-27 21:09:15 +02:00
/* explore: repositories / main */
.explore {
2020-11-08 19:50:40 +01:00
@include secondary-menu_new-menu;
2020-09-27 21:09:15 +02:00
.container {
@if $nojavascript == true {
.filter.menu {
display: none;
}
2020-09-27 21:09:15 +02:00
}
form.form {
.input {
input {
2020-10-20 19:24:47 +02:00
background: $bg40;
border: 2px solid $bg60;
color: $white;
2020-09-27 21:09:15 +02:00
&:focus {
2020-10-20 19:24:47 +02:00
background: $bg50;
border: 2px solid $bg60;
color: $white-light;
2020-09-27 21:09:15 +02:00
}
}
.button {
2020-10-20 19:24:47 +02:00
background: $bg60;
2020-09-27 21:09:15 +02:00
border: 0;
&:hover {
2020-10-20 19:24:47 +02:00
background: $bg50;
2020-09-27 21:09:15 +02:00
}
}
}
}
2020-12-31 13:15:37 +01:00
@include divider;
@include repository-list;
}
}
/* explore: users */
.explore.users {
.container {
2020-10-20 19:37:44 +02:00
.user.list {
2020-09-27 21:09:15 +02:00
.item {
&:not(:first-child) {
2020-10-20 19:24:47 +02:00
border-top: 1px solid $bg60;
2020-09-27 21:09:15 +02:00
}
2020-12-31 13:15:37 +01:00
.content {
.header {
2020-10-20 19:24:47 +02:00
color: $white;
2020-09-27 21:09:15 +02:00
}
2020-12-31 13:15:37 +01:00
.description {
color: $white-dark;
a {
2020-10-20 19:24:47 +02:00
color: $white;
2020-09-27 21:09:15 +02:00
&:hover {
2020-12-31 13:15:37 +01:00
color: $red;
2020-09-27 21:09:15 +02:00
}
}
2020-12-31 13:15:37 +01:00
svg {
@if $nojavascript == true {
display: none;
}
2020-10-20 19:37:44 +02:00
}
}
2020-09-27 21:09:15 +02:00
}
}
}
}
}