ampache_react/app/styles/layouts/Sidebar.scss

118 行
1.8 KiB
SCSS

$background: #333;
$hoverBackground: #222;
$activeBackground: $hoverBackground;
$foreground: white;
$lightgrey: #eee;
.sidebar {
position: fixed;
top: 0;
bottom: 0;
left: 0;
z-index: 1000;
display: block;
padding: 20px;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
background-color: $background;
color: white;
border-right: 1px solid $lightgrey;
}
/* Sidebar elements */
.link {
color: $foreground;
text-decoration: none;
}
.link:hover {
color: $foreground;
background-color: $hoverBackground !important;
}
.link:focus {
color: $foreground;
background-color: transparent !important;
}
.active {
composes: link;
background-color: $activeBackground !important;
}
.active:focus {
background-color: $activeBackground !important;
}
.title {
margin: 0;
margin-bottom: 20px;
font-size: 26px;
}
.imgTitle {
height: 36px;
}
/* Sidebar navigation */
.icon-navbar {
background-color: #555;
font-size: 1.2em;
border: none;
.container-fluid {
padding-left: 0;
padding-right: 0;
}
.nav {
display: inline-block;
float: none;
vertical-align: top;
text-align: center;
li {
float: left;
}
}
}
/*
* Main content
*/
.main-panel {
padding: 20px;
}
/*
* Media queries
*/
@media (min-width: 992px) and (max-width: 1199px) {
.icon-navbar {
.nav {
li {
float: none;
}
}
}
.nav-list {
text-align: right;
}
.nav {
li {
a {
padding-left: 5px;
padding-right: 5px;
}
}
}
}
@media (max-width: 991px) {
.sidebar {
position: static;
}
}