style.css 451 B

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