site.css 437 B

1234567891011121314151617181920212223242526272829303132333435
  1. body {
  2. font-family: 'Helvetica Neue', Verdana, Helvetica, Arial, sans-serif;
  3. max-width: 600px;
  4. margin: 0 auto;
  5. padding-top: 72px;
  6. -webkit-font-smoothing: antialiased;
  7. font-size: 1.125em;
  8. color: #333;
  9. line-height: 1.5em;
  10. }
  11. h1, h2, h3 {
  12. color: #000;
  13. }
  14. h1 {
  15. font-size: 2.5em
  16. }
  17. h2 {
  18. font-size: 2em
  19. }
  20. h3 {
  21. font-size: 1.5em
  22. }
  23. a {
  24. text-decoration: none;
  25. color: #09f;
  26. }
  27. a:hover {
  28. text-decoration: underline;
  29. }