style.css 723 B

1234567891011121314151617181920212223242526272829303132
  1. /* minimal CSS and no JS is the way to go :-) */
  2. /* comments are ok; they'll be stripped later */
  3. body {
  4. /* sans fonts are just nicer for the web */
  5. font-family: "Cantarell", sans-serif;
  6. /* studies show (jaja) that people read better vertically
  7. * I happen to agree, so we enforce this with clever margins. */
  8. max-width: 30em;
  9. margin: 0px auto;
  10. padding: 0em 1em 1em 1em;
  11. line-height: 1.6;
  12. }
  13. li {
  14. /* slightly nicer bullets */
  15. list-style-type: square;
  16. /* prevent lists from feeling cluttered */
  17. padding-top: 0.5em;
  18. padding-bottom: 0.5em;
  19. }
  20. /* center highest level headers and dates */
  21. header, h1 { text-align: center; }
  22. a {
  23. text-decoration: none;
  24. }