26 lines
566 B
SCSS
26 lines
566 B
SCSS
body[data-template="index"] {
|
|
.filter-menu {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
opacity: 1;
|
|
position: relative;
|
|
font-size: var(--font-size-L);
|
|
pointer-events: all;
|
|
column-gap: calc(2 * var(--body-margin));
|
|
margin: calc(4 * var(--line-height-S)) 0 var(--line-height-S) 0;
|
|
width: calc(var(--index-width) - var(--body-margin));
|
|
line-height: normal;
|
|
|
|
button.active {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.projects-index summary {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.projects-index li.filtered-out {
|
|
display: none;
|
|
}
|
|
}
|