scale nav buttons on narrow screens
This commit is contained in:
parent
cf9a99a6ca
commit
28bb8f2e2a
3 changed files with 24 additions and 2 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -189,11 +189,33 @@ body {
|
||||||
#divTwcBottom>div {
|
#divTwcBottom>div {
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
padding-right: 6px;
|
padding-right: 6px;
|
||||||
|
|
||||||
|
// scale down the buttons on narrower screens
|
||||||
|
@media (max-width: 550px) {
|
||||||
|
zoom: 0.90;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 500px) {
|
||||||
|
zoom: 0.80;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 450px) {
|
||||||
|
zoom: 0.70;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 400px) {
|
||||||
|
zoom: 0.60;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 350px) {
|
||||||
|
zoom: 0.50;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#divTwcBottomLeft {
|
#divTwcBottomLeft {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#divTwcBottomMiddle {
|
#divTwcBottomMiddle {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue