grassdocs.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. }
  17. h1{
  18. background-color: transparent;
  19. color: rgb(25%, 60%, 25%);
  20. font-family: arial,sans-serif;
  21. font-weight: bold;
  22. font-size: x-large;
  23. }
  24. h2{
  25. background-color: transparent;
  26. color: rgb(25%, 60%, 25%);
  27. font-family: arial,sans-serif;
  28. font-weight: bold;
  29. font-size: large;
  30. }
  31. h3{
  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. h4{
  39. background-color: transparent;
  40. color: rgb(25%, 60%, 25%);
  41. font-family: arial,sans-serif;
  42. font-weight: bold;
  43. font-size: medium;
  44. }
  45. div.code{
  46. width: 95%;
  47. color : black;
  48. background-color: rgb(90%, 90%, 90%);
  49. padding-left: 1em;
  50. padding-right: 1em;
  51. }
  52. span.code {
  53. width: 95%;
  54. color : black;
  55. background-color: rgb(90%, 90%, 90%);
  56. padding-left: 1em;
  57. padding-right: 1em;
  58. }
  59. .leftmenu {
  60. padding-left: 10px;
  61. }
  62. .box {
  63. border: 1px solid #c9c9c9;
  64. margin: 0px 2px 2px 10px;
  65. padding: 0px 4px 2px 6px;
  66. -moz-border-radius: 6px ;
  67. }
  68. table.border {
  69. border-collapse:collapse;
  70. }
  71. table.border td {
  72. border: 1px solid rgb(25%, 60%, 25%);
  73. }
  74. td {
  75. padding: 5px;
  76. }