2021-12-01 01:38:46 +00:00
|
|
|
.sidebar {
|
2021-12-06 00:15:18 +00:00
|
|
|
position: fixed;
|
|
|
|
width: max(11vmax, 200px);
|
|
|
|
top: 0;
|
2021-12-01 01:38:46 +00:00
|
|
|
bottom:0;
|
|
|
|
|
2021-12-06 00:15:18 +00:00
|
|
|
padding-top: 2em;
|
|
|
|
padding-left: 1vw;
|
2021-12-01 01:38:46 +00:00
|
|
|
|
|
|
|
background-color: var(--background);
|
|
|
|
color: var(--foreground);
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebarContent {
|
|
|
|
position: relative;
|
2021-12-06 00:15:18 +00:00
|
|
|
/*background-color: var(--background);*/
|
2021-12-01 01:38:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar ul {
|
|
|
|
position: relative;
|
2021-12-06 00:15:18 +00:00
|
|
|
/*background-color: var(--background);*/
|
|
|
|
|
|
|
|
padding-top: 2em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
/*margin-left: 1vmax;*/
|
|
|
|
|
|
|
|
padding-left:1vmax;
|
|
|
|
width: 85%;
|
2021-12-01 01:38:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar li {
|
|
|
|
display: block;
|
2021-12-06 00:15:18 +00:00
|
|
|
margin: 0 0 11px 0;
|
|
|
|
|
|
|
|
transition: transform 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar li:hover {
|
|
|
|
transform: translate(1vmax);
|
2021-12-01 01:38:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar li a {
|
2021-12-06 00:15:18 +00:00
|
|
|
display: block;
|
|
|
|
padding: 2px;
|
|
|
|
background-color: rgba(0,0,0,0);
|
|
|
|
|
|
|
|
transition: background-color 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar li a:hover {
|
|
|
|
color: var(--foreground);
|
|
|
|
background-color: var(--background-alt);
|
2021-12-01 01:38:46 +00:00
|
|
|
}
|
2021-12-06 00:15:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|