Static website for local motocross track (circa Aug 2004)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

76 lines
1.2 KiB

  1. /*
  2. Type Selectors
  3. */
  4. body, td {
  5. font-family: georgia, times, serif;
  6. font-size: 16px;
  7. margin: 0;
  8. padding: 0;
  9. }
  10. body {
  11. padding: 0.25em;
  12. background-color: #fff;
  13. text-align: center;
  14. }
  15. p {
  16. text-align: left;
  17. line-height: 1.3125em;
  18. margin: 0em 0.375em 0.25em 0.125em;
  19. padding: 0em;
  20. }
  21. /*
  22. Layout ID Selectors
  23. */
  24. #layout {
  25. position: relative;
  26. margin: 0 auto;
  27. padding: 0.25em;
  28. background-color: #fff;
  29. text-align: left; /* IE5 <div> centering hack part 2 */
  30. width: 47.5em; /* erroneous value to satisfy IE5/Win */
  31. voice-family: "\"}\""; /* Tantek's boxmodel hack see more at */
  32. voice-family: inherit; /* http://www.tantek.com/ */
  33. width: 47em; /* correct for compliant browsers wo/css2 */
  34. }
  35. body>#layout {
  36. width: 47em; /* correct for compliant browsers w/css2 */
  37. }
  38. #siteheader {
  39. margin: 0em;
  40. padding: 0em;
  41. text-align: center;
  42. }
  43. #panel {
  44. float: left;
  45. margin: 0.25em 0em;
  46. padding: 0em;
  47. width: 8em;
  48. }
  49. #content {
  50. float: right;
  51. margin: 0.25em 0em;
  52. padding: 0em;
  53. width: 39em;
  54. }
  55. #footer {
  56. clear: both;
  57. margin: 0.5em 0em;
  58. padding: 0em;
  59. }
  60. #footer p {
  61. font-size: 0.6875em;
  62. font-style: italic;
  63. text-align: center;
  64. margin: 0 0;
  65. padding: 0.125em 0;
  66. }