fpdoc.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. $Id: fpdoc.css,v 1.1 2003/03/17 23:03:20 michael Exp $
  3. Default style sheet for FPDoc reference documentation
  4. by Sebastian Guenther, [email protected]
  5. Feel free to use this file as a template for your own style sheets.
  6. */
  7. body {
  8. background: white
  9. }
  10. body, p, th, td, caption, h1, h2, h3, ul, ol, dl {
  11. color: black;
  12. font-family: sans-serif
  13. }
  14. tt, span.kw, pre {
  15. font-family: Courier, monospace
  16. }
  17. body, p, th, td, caption, ul, ol, dl, tt, span.kw, pre {
  18. font-size: 14px
  19. }
  20. A:link {
  21. color: blue
  22. }
  23. A:visited {
  24. color: darkblue
  25. }
  26. A:active {
  27. color: red
  28. }
  29. A {
  30. text-decoration: none
  31. }
  32. A:hover {
  33. text-decoration: underline
  34. }
  35. h1, h2, td.h2 {
  36. color: #005A9C
  37. }
  38. /* Especially for Netscape on Linux: */
  39. h3, td.h3 {
  40. font-size: 12pt
  41. }
  42. /* source fragments */
  43. span.code {
  44. white-space: nowrap
  45. }
  46. /* symbols in source fragments */
  47. span.sym {
  48. color: darkred
  49. }
  50. /* keywords in source fragments */
  51. span.kw {
  52. font-weight: bold
  53. }
  54. /* comments in source fragments */
  55. span.cmt {
  56. color: darkcyan;
  57. font-style: italic
  58. }
  59. /* directives in source fragments */
  60. span.dir {
  61. color: darkyellow;
  62. font-style: italic
  63. }
  64. /* numbers in source fragments */
  65. span.num {
  66. color: darkmagenta
  67. }
  68. /* characters (#...) in source fragments */
  69. span.chr {
  70. color: darkcyan
  71. }
  72. /* strings in source fragments */
  73. span.str {
  74. color: blue
  75. }
  76. /* assembler passages in source fragments */
  77. span.asm {
  78. color: green
  79. }
  80. td.pre {
  81. white-space: pre
  82. }
  83. p.cmt {
  84. color: gray
  85. }
  86. span.warning {
  87. color: red;
  88. font-weight: bold
  89. }
  90. /* !!!: How should we define this...? */
  91. span.file {
  92. color: darkgreen
  93. }
  94. table.remark {
  95. background-color: #ffffc0;
  96. }
  97. table.bar {
  98. background-color: #a0c0ff;
  99. }
  100. span.bartitle {
  101. font-weight: bold;
  102. font-style: italic;
  103. color: darkblue
  104. }
  105. span.footer {
  106. font-style: italic;
  107. color: darkblue
  108. }
  109. /* definition list */
  110. dl {
  111. border: 3px double #ccc;
  112. padding: 0.5em;
  113. }
  114. /* definition list: term */
  115. dt {
  116. float: left;
  117. clear: left;
  118. width: auto; /* normally browsers default width of largest item */
  119. padding-right: 20px;
  120. font-weight: bold;
  121. color: darkgreen;
  122. }
  123. /* definition list: description */
  124. dd {
  125. margin: 0 0 0 110px;
  126. padding: 0 0 0.5em 0;
  127. }