Advertisement
Guest User

Untitled

a guest
Nov 19th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.36 KB | None | 0 0
  1. /*
  2.   $Id: fpdoc.css,v 1.1 2003/03/17 23:03:20 michael Exp $
  3.  
  4.   Default style sheet for FPDoc reference documentation
  5.   by Sebastian Guenther, sg@freepascal.org
  6.  
  7.   Feel free to use this file as a template for your own style sheets.
  8. */
  9.  
  10. body {
  11.   background: white
  12. }
  13.  
  14. body, p, th, td, caption, h1, h2, h3, ul, ol, dl {
  15.   color: black;
  16.   font-family: sans-serif
  17. }
  18.  
  19. tt, span.kw, pre {
  20.   font-family: Courier, monospace
  21. }
  22.  
  23. body, p, th, td, caption, ul, ol, dl, tt, span.kw, pre {
  24.   font-size: 14px
  25. }
  26.  
  27. A:link {
  28.   color: blue
  29. }
  30.  
  31. A:visited {
  32.   color: darkblue
  33. }
  34.  
  35. A:active {
  36.   color: red
  37. }
  38.  
  39. A {
  40.   text-decoration: none
  41. }
  42.  
  43. A:hover {
  44.   text-decoration: underline
  45. }
  46.  
  47. h1, h2, td.h2 {
  48.   color: #005A9C
  49. }
  50.  
  51. /* Especially for Netscape on Linux: */
  52. h3, td.h3 {
  53.   font-size: 12pt
  54. }
  55.  
  56. /* source fragments */
  57. span.code {
  58.   white-space: nowrap
  59. }
  60.  
  61. /* symbols in source fragments */
  62. span.sym {
  63.   color: darkred
  64. }
  65.  
  66. /* keywords in source fragments */
  67. span.kw {
  68.   font-weight: bold
  69. }
  70.  
  71. /* comments in source fragments */
  72. span.cmt {
  73.   color: darkcyan;
  74.   font-style: italic
  75. }
  76.  
  77. /* directives in source fragments */
  78. span.dir {
  79.   color: darkyellow;
  80.   font-style: italic
  81. }
  82.  
  83. /* numbers in source fragments */
  84. span.num {
  85.   color: darkmagenta
  86. }
  87.  
  88. /* characters (#...) in source fragments */
  89. span.chr {
  90.   color: darkcyan
  91. }
  92.  
  93. /* strings in source fragments */
  94. span.str {
  95.   color: blue
  96. }
  97.  
  98. /* assembler passages in source fragments */
  99. span.asm {
  100.   color: green
  101. }
  102.  
  103.  
  104. td.pre {
  105.   white-space: pre
  106. }
  107.  
  108. p.cmt {
  109.   color: gray
  110. }
  111.  
  112. span.warning {
  113.   color: red;
  114.   font-weight: bold
  115. }
  116.  
  117. /* !!!: How should we define this...? */
  118. span.file {
  119.   color: darkgreen
  120. }
  121.  
  122. table.remark {
  123.   background-color: #ffffc0;
  124. }
  125.  
  126. table.bar {
  127.   background-color: #a0c0ff;
  128. }
  129.  
  130. span.bartitle {
  131.   font-weight: bold;
  132.   font-style: italic;
  133.   color: darkblue
  134. }
  135.  
  136. span.footer {
  137.   font-style: italic;
  138.   color: darkblue
  139. }
  140.  
  141. /* definition list */
  142. dl {
  143.  border: 3px double #ccc;
  144.  padding: 0.5em;
  145. }
  146.  
  147. /* definition list: term */
  148. dt {
  149.  float: left;
  150.  clear: left;
  151.  width: auto; /* normally browsers default width of largest item */
  152.  padding-right: 20px;
  153.  font-weight: bold;
  154.  color: darkgreen;
  155. }
  156.  
  157. /* definition list: description */
  158. dd {
  159.  margin: 0 0 0 110px;
  160.  padding: 0 0 0.5em 0;
  161. }
  162.  
  163. /* for browsers in standards compliance mode */
  164. td p {
  165.   margin: 0;
  166. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement