2021-07-19 13:06:07 +01:00
|
|
|
/* CHECKBOX TRICK */
|
|
|
|
.icon-menu label {
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer
|
2021-07-23 19:28:11 +01:00
|
|
|
}
|
2021-07-19 13:06:07 +01:00
|
|
|
#toggle {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0;
|
2021-07-25 00:14:18 +01:00
|
|
|
}
|
2021-07-19 13:06:07 +01:00
|
|
|
#toggle:checked+.navbar {
|
|
|
|
display: block;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
transition: 0.3s ease;
|
2021-07-23 19:28:11 +01:00
|
|
|
}
|
|
|
|
|
2021-07-19 13:06:07 +01:00
|
|
|
#left-panel {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: fixed;
|
2021-07-23 19:28:11 +01:00
|
|
|
|
2021-07-19 13:06:07 +01:00
|
|
|
left: 0;
|
|
|
|
flex-basis: border-box;
|
2021-07-19 13:06:07 +01:00
|
|
|
}
|