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