mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 17:03:25 +05:30
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;
|
||
|
}
|