ciderpress/main.css
Andy McFadden 5f28704cfa Tweak the font, improve mobile compatibility
This adds a bit of CSS to set a sans-serif font (preferably Arial),
as that looks a bit nicer than the default.  It also adds a viewport
directive and sets a font size that make mobile devices happier.

Also, standardize on UTF-8 (some pages specified cp1252).
2016-05-30 13:32:17 -07:00

10 lines
167 B
CSS

/*
* Trivial bit of CSS to make things look nicer.
*/
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px; /* recommended for mobile */
}