fpdoc.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. $Id: fpdoc.cst,v 1.1 2005/01/02 16:22:16 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. /* No wordwrap in code fragments */
  51. span.code {
  52. white-space: nowrap
  53. }
  54. /* keywords in source fragments */
  55. span.kw {
  56. font-weight: bold
  57. }
  58. /* comments in source fragments */
  59. span.cmt {
  60. color: darkcyan;
  61. font-style: italic
  62. }
  63. /* directives in source fragments */
  64. span.dir {
  65. color: darkyellow;
  66. font-style: italic
  67. }
  68. /* numbers in source fragments */
  69. span.num {
  70. color: darkmagenta
  71. }
  72. /* characters (#...) in source fragments */
  73. span.chr {
  74. color: darkcyan
  75. }
  76. /* strings in source fragments */
  77. span.str {
  78. color: blue
  79. }
  80. /* assembler passages in source fragments */
  81. span.asm {
  82. color: green
  83. }
  84. td.pre {
  85. white-space: pre
  86. }
  87. p.cmt {
  88. color: gray
  89. }
  90. span.warning {
  91. color: red;
  92. font-weight: bold
  93. }
  94. /* !!!: How should we define this...? */
  95. span.file {
  96. color: darkgreen
  97. }
  98. table.remark {
  99. background-color: #ffffc0;
  100. }
  101. table.bar {
  102. background-color: #a0c0ff;
  103. }
  104. td p {
  105. margin: 0;
  106. }
  107. span.bartitle {
  108. font-weight: bold;
  109. font-style: italic;
  110. color: darkblue
  111. }
  112. span.toggletreeclose {
  113. background: url(minus.png) center left no-repeat;
  114. padding-left: 20px;
  115. }
  116. span.toggletreeopen {
  117. background: url(plus.png) center left no-repeat;
  118. padding-left: 20px;
  119. }
  120. ul.classtreelist li { padding-left: 0px; }
  121. ul.classtreelist { list-style-type:none; }
  122. li.classtree ul { display: block; }
  123. li.classtreeclosed ul { display: none; }