83 lines
1.3 KiB
CSS
83 lines
1.3 KiB
CSS
|
|
#navDrawer {
|
|
width: 70vw;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: -70vw;
|
|
background: white;
|
|
overflow: hidden;
|
|
z-index: 10;
|
|
transition: .35s;
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
|
|
.open {
|
|
left: 0 !important;
|
|
}
|
|
|
|
#navDrawer header {
|
|
width: 100%;
|
|
padding: 4vh 0;
|
|
color: white;
|
|
font-size: 16px;
|
|
flex-basis: 15vh;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
#navDrawer header img {
|
|
width: 35px;
|
|
}
|
|
|
|
#navList {
|
|
flex-basis: 70vh;
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.disruptBtn {
|
|
height: 50px;
|
|
width: 100%;
|
|
padding: 0 0 0 5vw;
|
|
display: flex;
|
|
align-items: center;
|
|
align-self: flex-start;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.disruptBtn:active {
|
|
background: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.disruptBtn img {
|
|
height: 55%;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#clickArea {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.75);
|
|
position: fixed;
|
|
z-index: 5;
|
|
transition: .15s;
|
|
}
|
|
|
|
#navDrawer hr {
|
|
width: 90%;
|
|
margin: 0 10px 5px 0;
|
|
align-self: flex-end;
|
|
opacity: 0.5;
|
|
flex-basis: auto;
|
|
}
|
|
|
|
#version {
|
|
align-self: flex-end;
|
|
margin-right: 10px;
|
|
font-size: 14px;
|
|
color: var(--colorDiscrete);
|
|
min-height: 50px;
|
|
} |