41 lines
782 B
CSS
41 lines
782 B
CSS
|
|
/* sidebar stuff */
|
|
.sidebar {
|
|
height: 100%; /* 100% Full-height */
|
|
width: 3.5vw; /* 0 width - change this with JavaScript */
|
|
position: fixed; /* Stay in place */
|
|
top: 0;
|
|
left: 0;
|
|
overflow-x: hidden; /* Disable horizontal scroll */
|
|
transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
|
|
}
|
|
|
|
.sidebar:hover {
|
|
width: 11vw;
|
|
}
|
|
|
|
.sidebar a {
|
|
padding: .4vw .4vw .4vw .4vw;
|
|
display: block;
|
|
color: white;
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.sidebar a img {
|
|
margin-right: .6vw;
|
|
width: 2.5vw;
|
|
}
|
|
|
|
.sidebar a b {
|
|
font-size: .85vw;
|
|
}
|
|
|
|
.sidebar a:hover {
|
|
background-color: hsl(0, 0%, 8%);
|
|
color: rgb(210, 210, 210);
|
|
}
|
|
|
|
@media screen and (max-width: 992px) {
|
|
.sidebar {display: none;}
|
|
}
|