Static website for local motocross track (circa Jun 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.

111 lines
1.3 KiB

  1. /*
  2. Core CSS Selectors
  3. */
  4. body, td {
  5. font-family: Georgia, Times, Serif;
  6. font-size: 16px;
  7. margin: 0em;
  8. padding: 0em;
  9. }
  10. body {
  11. padding: 0.25em;
  12. background-color: #fff;
  13. text-align: center; /* IE5 <div> centering hack part 1 */
  14. }
  15. abbr, .help {
  16. font-style: normal;
  17. padding-bottom: 1px;
  18. border-bottom: 1px dotted #999;
  19. cursor: help;
  20. }
  21. a:link, a:visited {
  22. text-decoration: none;
  23. }
  24. a:hover {
  25. text-decoration: underline;
  26. }
  27. a img {
  28. border: none;
  29. }
  30. h1, h2, h3, h4, h5, h6 {
  31. font-weight: bold;
  32. margin: 0em;
  33. padding: 0.25em 0em;
  34. }
  35. h1 {
  36. font-size: 1.3125em;
  37. }
  38. h2 {
  39. font-size: 1.25em;
  40. }
  41. h3 {
  42. font-size: 1.0625em;
  43. }
  44. h4 {
  45. font-size: 0.875em;
  46. }
  47. h5 {
  48. font-size: 0.75em;
  49. }
  50. h6 {
  51. font-size: 0.6875em;
  52. }
  53. hr {
  54. width: 100%;
  55. height: 1px;
  56. border: none;
  57. border-top: 1px solid #999;
  58. }
  59. p {
  60. text-align: justify;
  61. line-height: 1.3125em;
  62. margin: 0em 0.375em 0.25em 0.125em;
  63. padding: 0em;
  64. }
  65. p + p,
  66. p + div.photoleft + p,
  67. p + div.photoright + p {
  68. text-indent: 0.5em;
  69. }
  70. p.notice {
  71. font-size: 0.8125em;
  72. font-style: italic;
  73. text-align: center;
  74. padding: 3em 0em;
  75. }
  76. dl {
  77. text-align: justify;
  78. line-height: normal;
  79. font-size: 0.8125em;
  80. margin: 0em;
  81. padding: 0em;
  82. width: 99%;
  83. }
  84. dt {
  85. font-weight: bold;
  86. margin-left: 0.25em;
  87. }
  88. dd {
  89. margin: 0.25em 1.5em;
  90. padding: 0em;
  91. }
  92. dl.news dd {
  93. margin: 0.25em 0em 0.25em 2em;
  94. padding: 0.25em;
  95. }
  96. dl.headlines dd {
  97. padding: 0.5em;
  98. font-style: italic;
  99. margin: 0.5em 1.5em;
  100. }