site.css 829 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. }
  44. td input {
  45. border: none;
  46. padding: 5px;
  47. width: 80px;
  48. }
  49. td input:hover {
  50. background-color: #ccc;
  51. }
  52. td input:focus {
  53. background-color: #ccf;
  54. }
  55. td input:not(:focus) {
  56. text-align: right;
  57. }