pygrass.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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: 99%;
  17. margin: 8px;
  18. }
  19. hr.header {
  20. height: 3px;
  21. color: gray;
  22. background-color: gray;
  23. width: 100%;
  24. }
  25. h1{
  26. background-color: transparent;
  27. color: rgb(25%, 60%, 25%);
  28. font-family: arial,sans-serif;
  29. font-weight: bold;
  30. font-size: x-large;
  31. }
  32. h2{
  33. background-color: transparent;
  34. color: rgb(25%, 60%, 25%);
  35. font-family: arial,sans-serif;
  36. font-weight: bold;
  37. font-size: large;
  38. }
  39. h3{
  40. background-color: transparent;
  41. color: rgb(25%, 60%, 25%);
  42. font-family: arial,sans-serif;
  43. font-weight: bold;
  44. font-size: large;
  45. }
  46. h4{
  47. background-color: transparent;
  48. color: rgb(25%, 60%, 25%);
  49. font-family: arial,sans-serif;
  50. font-weight: bold;
  51. font-size: medium;
  52. }
  53. table.border {
  54. border-collapse:collapse;
  55. }
  56. table.border td {
  57. border: 1px solid rgb(25%, 60%, 25%);
  58. }
  59. td {
  60. padding: 5px;
  61. }
  62. div.related {
  63. background-color: transparent;
  64. }