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/_nav.scss
2020-10-20 19:24:47 +02:00

88 lines
1.7 KiB
SCSS

.ui.main.menu {
background: $bg60;
border-bottom: 0;
font-size: 15px;
min-height: 64px;
font-family: $font-family;
#navbar {
width: 1127px ;
padding: 0;
.item {
color: $white;
&.brand {
margin: 0 .5rem 0 0;
.mini.image {
transition: opacity .2s;
&:hover {
opacity: .9;
}
}
.button.mobile-only {
display: none;
}
}
@if $singleuser == true {
&[href*="explore"],
&[href*="docs.gitea"] {
display: none !important;
}
}
&:not(.brand) {
border-radius: 0;
display: block;
margin: 0px 0px;
padding: 24px;
transition: background .2s, color .2s;
&:hover {
background: $bg50;
}
&.active {
background: $bg50;
}
}
}
.seperator {
cursor: default;
display: block;
padding: 22px;
}
@if $singleuser == true {
.right.stackable.menu {
display: none;
}
}
}
.dropdown.item > .menu {
margin-top: 0;
}
.dropdown.item > .menu,
&.text.menu .dropdown.item > .menu {
border: 0;
z-index: 110;
}
.dropdown.item:hover,
.link.item:hover,
.active.item:hover,
a.item:hover {
color: $white-light;
}
}
@media (max-width: 767.98px) {
.ui.main.menu {
flex-direction: row;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
#navbar {
.item {
width: auto !important;
}
.right.custom.menu {
display: inherit !important;
flex-direction: row !important;
margin-left: auto !important;
}
}
}
}