69 lines
1.2 KiB
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|