mirror of
https://github.com/iv-org/invidious.git
synced 2024-10-01 01:35:38 -04: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;
|
||
|
}
|