make filters bigger on touch screens etc

This commit is contained in:
Rhiannon Morris 2020-08-04 02:34:15 +02:00
parent 3242975db3
commit 306b92cf56
2 changed files with 16 additions and 1 deletions

View File

@ -18,7 +18,7 @@
--focus-text: hsl(334deg, 87%, 90%);
font-family: Muller;
font-size: 18pt;
font-size: x-large;
font-weight: 600;
background: var(--gradient) fixed;

View File

@ -38,6 +38,15 @@ body {
text-align: left;
}
@media (max-width: 80rem) {
#filters div {
grid-template-columns: auto;
}
#filters h3, #clear {
text-align: left;
}
}
#filters ul {
font-weight: 400;
font-size: 90%;
@ -214,3 +223,9 @@ footer {
margin-bottom: 0;
}
}
@media (pointer: coarse) {
#filters label {
font-size: 150%;
}
}