Move search.ecr specific css to another file

This commit is contained in:
syeopite
2021-04-09 22:23:43 -07:00
parent 1bb8429fe5
commit c68ba62eae
3 changed files with 24 additions and 24 deletions

View File

@@ -473,30 +473,6 @@ body.dark-theme {
}
}
#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;
}
/*With commit d9528f5 all contents of the page is now within a flexbox. However,
the hr element is rendered improperly within one.
See https://stackoverflow.com/a/34372979 for more info */

23
assets/css/search.css Normal file
View File

@@ -0,0 +1,23 @@
#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;
}