2022-06-15 16:39:09 +02:00
|
|
|
.container {
|
2022-06-15 00:05:16 +02:00
|
|
|
overflow: auto;
|
2022-06-07 20:15:31 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
height: 100vh;
|
2022-06-08 00:38:13 +02:00
|
|
|
width: 100%;
|
2022-06-15 00:05:16 +02:00
|
|
|
width: 100vw;
|
2022-06-07 20:15:31 +02:00
|
|
|
a {
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-15 10:42:34 +02:00
|
|
|
.underline {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2022-06-15 21:48:37 +02:00
|
|
|
|
|
|
|
.links_wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
.links {
|
|
|
|
margin-bottom: 2em;
|
|
|
|
&:hover {
|
|
|
|
.t, .p {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
.s {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-16 20:40:09 +02:00
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|