mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 17:03:25 +05:30
33 lines
427 B
CSS
33 lines
427 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;
|
|
}
|
|
|
|
.remove-filter {
|
|
margin-left: 6px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.dark-theme .remove-filter {
|
|
color: #CAC5BE
|
|
}
|