You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
312 B
CSS
24 lines
312 B
CSS
#filters {
|
|
display: inline;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
#filters > div {
|
|
display: inline-block;
|
|
}
|
|
|
|
#filters > summary {
|
|
display: block;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
#filters > summary::before {
|
|
content: "[ + ]";
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
#filters[open] > summary::before {
|
|
content: "[ - ]";
|
|
font-size: 1.5em;
|
|
}
|