zoomable show list

This commit is contained in:
2022-09-27 21:40:15 +02:00
parent 24c5317484
commit c92f62c4e9
6 changed files with 41 additions and 10 deletions

View File

@@ -1,7 +1,9 @@
button {
min-width: 0;
padding: 0 5px;
padding: 0 var(--button-padding, 5px);
font-size: var(--button-font-size, 1em);
@media screen and (max-width: 860px) {
padding: 0 15px;
padding: 0 var(--button-padding-mobile, 15px);
font-size: var(--button-font-size-mobile, 1em);
}
}

View File

@@ -7,16 +7,16 @@
font-family: 'Ubuntu Mono', monospace;
@media screen and (max-width: 600px) {
font-size: 11px;
font-size: 0.9em;
}
@media screen and (max-width: 500px) {
font-size: 9px;
font-size: 0.8em;
}
@media screen and (max-width: 400px) {
font-size: 8px;
font-size: 0.7em;
}
@media screen and (max-width: 350px) {
font-size: 7px;
font-size: 0.6em;
}
}