style.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * $Id: style.css,v 1.24 2006/07/15 04:12:19 sfox Exp $
  3. */
  4. /* Let no border around the body appear, and set
  5. it to display on a white background */
  6. body, html {
  7. background-color: white;
  8. color: black;
  9. margin: 0px;
  10. padding: 0px;
  11. }
  12. /* Font settings for page elements */
  13. body, ul, td, th, p, h1, h2, h3, h4, dt, small, .small,
  14. .tableTitle, .tableExtras, input, textarea, select {
  15. font-family: Verdana, Arial, Helvetica, sans-serif;
  16. }
  17. code, pre, tt {
  18. font-family: Courier, "Courier New", monospace;
  19. }
  20. /* Default font size for elements */
  21. body {
  22. font-size: .85em;
  23. }
  24. li {
  25. padding-bottom: 3px;
  26. padding-top: 3px;
  27. }
  28. em {
  29. font-style: italic;
  30. font-weight: bold;
  31. }
  32. acronym {
  33. border-bottom: 1px dashed #00CC00;
  34. cursor: help;
  35. }
  36. .newsDate {
  37. background-color: inherit;
  38. color: #6666CC;
  39. font-size: .80em;
  40. font-style: italic;
  41. }
  42. .sidebar {
  43. font-size: .95em;
  44. padding: 5px;
  45. }
  46. .sidebar p {
  47. text-align: left !important;
  48. }
  49. a.menuWhite {
  50. background-color: inherit;
  51. color: white;
  52. font-size: .80em;
  53. text-decoration: none;
  54. }
  55. a.menuBlack {
  56. background-color: inherit;
  57. color: black;
  58. font-size: .80em;
  59. text-decoration: none;
  60. }
  61. pre, code {
  62. font-size: .80em;
  63. }
  64. pre.code {
  65. background-color: #F0F0F0;
  66. color: inherit;
  67. }
  68. /* General header styles */
  69. h1, h2, h3, h4, dt {
  70. color: #000066;
  71. background-color: inherit;
  72. font-weight: bold;
  73. }
  74. h1 {
  75. font-size: 1.30em;
  76. }
  77. h2 {
  78. font-size: 1.25em;
  79. }
  80. h3, dt {
  81. font-size: 1.10em;
  82. }
  83. h4 {
  84. font-size: .90em;
  85. padding-bottom: 0px;
  86. padding-top: 0px;
  87. }
  88. blockquote {
  89. margin-left: 12px;
  90. }
  91. small, a.small, input.small, select.small, textarea.small {
  92. font-size: .80em;
  93. }
  94. a.small {
  95. text-decoration: none;
  96. }
  97. .tableTitle {
  98. font-weight: bold;
  99. }
  100. .tableExtras {
  101. background-color: inherit;
  102. color: white;
  103. font-size: .85em;
  104. }
  105. .programlisting {
  106. background-color: #E0E0E0;
  107. color: inherit;
  108. display: block;
  109. width: 100%;
  110. }
  111. hr {
  112. background-color: inherit;
  113. border: 0px;
  114. color: black;
  115. height: 1px;
  116. }
  117. /*
  118. * Local variables:
  119. * tab-width: 4
  120. * c-basic-offset: 4
  121. * End:
  122. * vim: expandtab sw=4 ts=4 fdm=marker
  123. */