2023-08-17 18:51:39 +02:00
|
|
|
.sidenav {
|
2023-08-21 22:08:25 +02:00
|
|
|
z-index: 200;
|
|
|
|
background-color: transparent;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
2023-08-18 17:56:07 +02:00
|
|
|
position: fixed;
|
2023-08-21 22:08:25 +02:00
|
|
|
left: -100vw;
|
|
|
|
top: 0;
|
2023-08-21 17:06:12 +02:00
|
|
|
transition: 0.25s;
|
2023-08-21 22:08:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.scrollable {
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: scroll;
|
2023-08-17 18:51:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidenav.open {
|
2023-08-21 17:06:12 +02:00
|
|
|
left: 0px;
|
2023-08-17 18:51:39 +02:00
|
|
|
}
|
|
|
|
|
2023-08-18 17:56:07 +02:00
|
|
|
.sidenav a, button{
|
2023-08-17 18:51:39 +02:00
|
|
|
text-decoration: none;
|
|
|
|
color: lightgray;
|
|
|
|
margin-left: 20px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.sidenav a:hover {
|
|
|
|
color: white;
|
|
|
|
}
|
2023-08-18 17:56:07 +02:00
|
|
|
.sidenav nav {
|
2023-08-21 22:08:25 +02:00
|
|
|
box-shadow: 0px 0px 15px 0px #000;
|
|
|
|
height: 100vh;
|
|
|
|
max-width: 250px;
|
|
|
|
background-color: #1d1f31;
|
2023-08-18 18:04:40 +02:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
2023-08-21 22:08:25 +02:00
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 100px;
|
2023-08-18 17:56:07 +02:00
|
|
|
}
|
2023-08-17 18:51:39 +02:00
|
|
|
|
|
|
|
@media screen and (max-height: 450px) {
|
|
|
|
.sidenav a {font-size: 18px;}
|
|
|
|
}
|