style.css 528 B

12345678910111213141516171819202122232425262728293031323334
  1. body {
  2. background-color: #f8f8f8;
  3. background-image:url(./clouds.png);
  4. background-repeat: repeat-x;
  5. background-position: top;
  6. font-size: large;
  7. margin: auto;
  8. margin-top: 20px;
  9. font-family: monospace;
  10. max-width:800px;
  11. padding:0 10px;
  12. }
  13. table, th {
  14. border: 6px solid black;
  15. padding: 8px;
  16. table-layout: fixed;
  17. width: 100%;
  18. background-color: #a8a8a8;
  19. }
  20. tr {
  21. background-color: #f8f8f8;
  22. }
  23. #centered, h2 {
  24. text-align: center;
  25. }
  26. a, a:visited {
  27. font-family: monospace;
  28. color: #606060;
  29. text-decoration: underline;
  30. }