2022-03-01 02:39:37 +00:00
|
|
|
.menu {
|
|
|
|
|
position: fixed;
|
2023-04-10 03:22:28 +00:00
|
|
|
top: 60px;
|
2022-03-01 02:39:37 +00:00
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
margin: auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2022-12-13 03:45:38 +00:00
|
|
|
background-color: var(--base50);
|
2023-04-01 03:03:28 +00:00
|
|
|
z-index: var(--z-index-popup);
|
2022-03-01 02:39:37 +00:00
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.items {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item {
|
2022-12-13 03:45:38 +00:00
|
|
|
font-size: var(--font-size-lg);
|
2023-04-10 03:22:28 +00:00
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: 80px;
|
|
|
|
|
padding: 0 40px;
|
2022-03-01 02:39:37 +00:00
|
|
|
}
|
|
|
|
|
|
2023-04-10 03:22:28 +00:00
|
|
|
a.item {
|
2023-04-12 20:40:19 +00:00
|
|
|
color: var(--base600);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.item.selected,
|
|
|
|
|
.submenu a.item.selected {
|
2023-04-10 03:22:28 +00:00
|
|
|
color: var(--base900);
|
2022-03-01 02:39:37 +00:00
|
|
|
}
|
2023-04-12 20:40:19 +00:00
|
|
|
|
|
|
|
|
.submenu a.item {
|
|
|
|
|
color: var(--base600);
|
2024-02-29 20:32:06 +00:00
|
|
|
margin-inline-start: 40px;
|
2023-04-12 20:40:19 +00:00
|
|
|
}
|