site.css 720 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. }
  30. table {
  31. border-collapse: collapse;
  32. }
  33. td, th {
  34. border: 1px solid black;
  35. padding: 0;
  36. }
  37. th {
  38. text-align: center;
  39. min-width: 40px;
  40. }
  41. td {
  42. text-align: right;
  43. min-width: 100px;
  44. }
  45. td input {
  46. background-color: pink;
  47. border: none;
  48. padding: 5px;
  49. }