mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 18:28:24 +00:00
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;
|
|
}
|