fpdoc.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. $Id$
  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. /* symbols in source fragments */
  43. span.sym {
  44. color: darkred
  45. }
  46. /* keywords in source fragments */
  47. span.kw {
  48. font-weight: bold
  49. }
  50. /* comments in source fragments */
  51. span.cmt {
  52. color: darkcyan;
  53. font-style: italic
  54. }
  55. /* directives in source fragments */
  56. span.dir {
  57. color: darkyellow;
  58. font-style: italic
  59. }
  60. /* numbers in source fragments */
  61. span.num {
  62. color: darkmagenta
  63. }
  64. /* characters (#...) in source fragments */
  65. span.chr {
  66. color: darkcyan
  67. }
  68. /* strings in source fragments */
  69. span.str {
  70. color: blue
  71. }
  72. /* assembler passages in source fragments */
  73. span.asm {
  74. color: green
  75. }
  76. td.pre {
  77. white-space: pre
  78. }
  79. p.cmt {
  80. color: gray
  81. }
  82. span.warning {
  83. color: red;
  84. font-weight: bold
  85. }
  86. /* !!!: How should we define this...? */
  87. span.file {
  88. color: darkgreen
  89. }
  90. table.remark {
  91. background-color: #ffffc0;
  92. }
  93. table.bar {
  94. background-color: #a0c0ff;
  95. }
  96. span.bartitle {
  97. font-weight: bold;
  98. font-style: italic;
  99. color: darkblue
  100. }