37 lines
698 B
CSS
Executable file
37 lines
698 B
CSS
Executable file
/* The side navigation menu */
|
|
|
|
#sidenav {
|
|
position: fixed;
|
|
height: 100%;
|
|
width: 100%;
|
|
z-index: 1300;
|
|
top: 0;
|
|
left: 0;
|
|
transition: 0.5s;
|
|
text-align: center;
|
|
background: #ffffff;
|
|
transform: translateX(-100%);
|
|
padding-top: 30px;
|
|
-webkit-clip-path: circle(0% at 50% 50%);
|
|
clip-path: circle(0% at 50% 50%);
|
|
}
|
|
|
|
.sidenav-open {
|
|
transform: translateX(0%) !important;
|
|
-webkit-clip-path: circle(70.7% at 50% 50%) !important;
|
|
clip-path: circle(70.7% at 50% 50%) !important;
|
|
}
|
|
|
|
#sidenavScroll {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
display: block;
|
|
}
|
|
|
|
|
|
#sidenavList {
|
|
padding: 0;
|
|
width: 300px;
|
|
margin: auto;
|
|
}
|