ngircd-doc.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Cascading Style Sheet for the ngIRCd source documentation
  3. *
  4. * $Id: ngircd-doc.css,v 1.2 2005/07/22 21:23:22 alex Exp $
  5. */
  6. BODY {
  7. background-color: white;
  8. color: black;
  9. margin: 30px;
  10. font-family: Geneva, sans-serif;
  11. font-size: 12px;
  12. }
  13. A:visited { color: purple; background: transparent; }
  14. A:link { color: navy; background: transparent; }
  15. A:active { color: red; background: transparent; }
  16. A:hover { background: #ffa; }
  17. H1, H2, H3 {
  18. font-family: Verdana, sans-serif;
  19. background-color: white;
  20. color: #005555;
  21. }
  22. H1 { margin-bottom: 10px; }
  23. H2 {
  24. margin-top: 20px;
  25. margin-bottom: 10px;
  26. }
  27. P, LI, TD, TH, DT {
  28. font-family: Geneva, sans-serif;
  29. font-size: 12px;
  30. line-height: 1.2
  31. }
  32. DD { margin-bottom: 1em; }
  33. UL { list-style-type: square; }
  34. HR { margin: 2em 0px; }
  35. BODY>TABLE { padding: 1em 0px; }
  36. TD.mdRow {
  37. border: 1px dotted silver;
  38. background-color: #fff9dd;
  39. }
  40. TD.md { font-weight: bold; }
  41. TD.memItemLeft { padding-top: 4px; }
  42. TD.memItemRight { padding-top: 4px; }
  43. TD.mdescRight { font-style: italic; }
  44. DIV.qindex {
  45. background-color: #eee;
  46. border: 1px dotted silver;
  47. padding: 3px;
  48. margin-bottom: 2px;
  49. }
  50. DIV.nav {
  51. margin: 1em 0px;
  52. }
  53. HR.footer { margin-top: 50px; }
  54. .comment {
  55. color: gray;
  56. font-style: italic;
  57. }
  58. .preprocessor { color: #f90; }
  59. .keyword, .keywordflow, .keywordtype { color: red; }
  60. .stringliteral { color: green; }
  61. /* -eof- */