I have found a simple way to increase the size of everything on the Kindle. It looks like this:
@media (min-width: 1060px) and (max-width: 7in) {
HTML {zoom: 2;}
}
While zoom is not official CSS, the Kindle browser accepts it, and that is all that really matters here. But for it to work properly, I have to roll back everything else I did to increase the size of things on the Kindle. Otherwise, this makes some things too large.
However, this fixes most things without quite doing that:
@media (min-width: 1060px) and (max-width: 7in) {
HTML {font-size: 6pt;}
MAIN {zoom: 2;}
}
I have found a simple way to increase the size of everything on the Kindle. It looks like this:
While
zoom
is not official CSS, the Kindle browser accepts it, and that is all that really matters here. But for it to work properly, I have to roll back everything else I did to increase the size of things on the Kindle. Otherwise, this makes some things too large.However, this fixes most things without quite doing that: