mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-28 14:50:04 +00:00
5f28704cfa
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).
10 lines
167 B
CSS
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 */
|
|
}
|
|
|