Check out Grant Acedrex, our featured variant for April, 2024.


[ Help | Earliest Comments | Latest Comments ]
[ List All Subjects of Discussion | Create New Subject of Discussion ]
[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]

Single Comment

Ultima. Game where each type of piece has a different capturing ability. (8x8, Cells: 64) (Recognized!)[All Comments] [Add Comment or Rating]
🕸📝Fergus Duniho wrote on Fri, Mar 31, 2023 03:55 PM UTC in reply to H. G. Muller from 02:46 PM:

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;}
}