1234567891011121314151617181920 |
- body {
- /* sans fonts are just nicer for the web */
- font-family: "Cantarell", sans-serif;
-
- /* studies show (jaja) that people read better vertically
- * I happen to agree, so we enforce this with clever margins. */
- max-width: 55em;
- margin: 0px auto;
- padding: 0em 1em 1em 1em;
- line-height: 1.6;
- }
- /* center highest level headers and dates */
- header, h1 { text-align: center; }
- a {
- text-decoration: none;
- }
|