2020-02-16 18:30:00 +00:00
|
|
|
.sideNav {
|
2020-03-24 13:22:29 +00:00
|
|
|
display: block;
|
2020-02-16 18:30:00 +00:00
|
|
|
height: calc(100vh - 60px);
|
|
|
|
width: 200px;
|
2020-06-19 14:20:40 +00:00
|
|
|
overflow-x: hidden;
|
2020-02-16 18:30:00 +00:00
|
|
|
position: fixed;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
|
|
|
z-index: 1;
|
|
|
|
margin-top: 60px;
|
2020-06-19 14:20:40 +00:00
|
|
|
box-shadow: 1px -1px 1px -1px var(--primary-shadow-color);
|
2020-02-16 18:30:00 +00:00
|
|
|
background-color: var(--side-nav-color);
|
|
|
|
transition-property: width;
|
|
|
|
transition-duration: 150ms;
|
|
|
|
transition-timing-function: ease-in-out;
|
|
|
|
}
|
|
|
|
|
2020-06-19 14:20:40 +00:00
|
|
|
.inner {
|
|
|
|
height: 100%;
|
|
|
|
width: 200px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closed .inner {
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.topNavOption {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navOption {
|
|
|
|
position: relative;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-03-24 13:22:29 +00:00
|
|
|
.moreOption {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.navOption:hover {
|
|
|
|
background-color: var(--side-nav-hover-color);
|
|
|
|
-moz-transition: background 0.2s ease-in;
|
|
|
|
-o-transition: background 0.2s ease-in;
|
|
|
|
transition: background 0.2s ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navOption:active {
|
|
|
|
background-color: var(--side-nav-active-color);
|
|
|
|
-moz-transition: background 0.2s ease-in;
|
|
|
|
-o-transition: background 0.2s ease-in;
|
|
|
|
transition: background 0.2s ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navIcon {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navLabel {
|
|
|
|
margin-left: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closed {
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sideNav hr {
|
|
|
|
width: 90%;
|
|
|
|
height: 1px;
|
|
|
|
border: 0;
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.refreshIcon {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closed .refreshIcon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closed .navOption {
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
padding: 0px;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closed .navIcon {
|
|
|
|
margin-left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closed .navLabel {
|
|
|
|
margin-left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
left: 0px;
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
2020-03-24 13:22:29 +00:00
|
|
|
|
|
|
|
@media only screen and (max-width: 680px) {
|
|
|
|
hr, .mobileHidden, .refreshIcon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sideNav {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topNavOption {
|
|
|
|
margin-top: 0px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sideNav, .closed {
|
|
|
|
margin-top: 0px;
|
|
|
|
height: 60px;
|
|
|
|
width: 100%;
|
|
|
|
bottom: 0px;
|
|
|
|
top: auto;
|
|
|
|
overflow-y: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navOption, .closed .navOption {
|
|
|
|
width: 70px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 0px;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navLabel {
|
|
|
|
margin-left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
left: 0px;
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navIcon {
|
|
|
|
margin-left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.moreOption {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|