grassdocs.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* GRASS documentation site style sheet
  2. *
  3. * send improvements to GRASS Developers list
  4. *
  5. * (eg how to reach the same result on netscape, mozilla konqueror?)
  6. *
  7. * Fonts:
  8. * http://www.w3.org/TR/REC-CSS2/fonts.html
  9. * Tables:
  10. * http://www.w3.org/TR/REC-CSS2/tables.html
  11. */
  12. body{
  13. background: white;
  14. color: black;
  15. font-family: arial,sans-serif;
  16. width: 80%;
  17. }
  18. hr.header {
  19. height: 3px;
  20. color: gray;
  21. background-color: gray;
  22. width: 100%;
  23. }
  24. h1{
  25. background-color: transparent;
  26. color: rgb(25%, 60%, 25%);
  27. font-family: arial,sans-serif;
  28. font-weight: bold;
  29. font-size: x-large;
  30. }
  31. h2{
  32. background-color: transparent;
  33. color: rgb(25%, 60%, 25%);
  34. font-family: arial,sans-serif;
  35. font-weight: bold;
  36. font-size: large;
  37. }
  38. h3{
  39. background-color: transparent;
  40. color: rgb(25%, 60%, 25%);
  41. font-family: arial,sans-serif;
  42. font-weight: bold;
  43. font-size: large;
  44. }
  45. h4{
  46. background-color: transparent;
  47. color: rgb(25%, 60%, 25%);
  48. font-family: arial,sans-serif;
  49. font-weight: bold;
  50. font-size: medium;
  51. }
  52. div.code{
  53. width: 97%;
  54. color : black;
  55. background-color: rgb(90%, 90%, 90%);
  56. padding-left: 1em;
  57. padding-right: 1em;
  58. }
  59. span.code {
  60. width: 97%;
  61. color : black;
  62. background-color: rgb(90%, 90%, 90%);
  63. padding-left: 1em;
  64. padding-right: 1em;
  65. }
  66. .leftmenu {
  67. padding-left: 10px;
  68. }
  69. td.box {
  70. border: 1px solid #c9c9c9;
  71. border-radius: 10px;
  72. margin: 0px 2px 2px 10px;
  73. padding: 4px 4px 4px 4px;
  74. }
  75. li.box {
  76. color: rgb(25%, 60%, 25%);
  77. }
  78. li.box span {
  79. color: black;
  80. }
  81. table.border {
  82. border-collapse:collapse;
  83. }
  84. table.border td {
  85. border: 1px solid rgb(25%, 60%, 25%);
  86. }
  87. td {
  88. padding: 5px;
  89. }
  90. div.toc{
  91. background-color: transparent;
  92. position: fixed;
  93. border: solid 1px rgb(25%, 60%, 25%);
  94. top: 5px;
  95. right: 5px;
  96. width: 17%;
  97. font-size: small;
  98. border-radius: 10px;
  99. }
  100. li.toc {
  101. margin-left: -15px;
  102. padding: 3px 3px; 3px; 3px;
  103. color: rgb(25%, 60%, 25%);
  104. }
  105. ul.toc {
  106. margin-top: 3px;
  107. margin-bottom: 3px;
  108. }
  109. a.toc {
  110. text-decoration: none;
  111. }