gs.css 986 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* This is the default Ghostscript stylesheet */
  2. /* $Id: gs.css,v 1.3 2004/01/15 17:45:47 giles Exp $ */
  3. body
  4. {
  5. color: black;
  6. background-color: white;
  7. }
  8. h1,h2,h3,h4,h5,h6
  9. {
  10. font-family: sans-serif;
  11. }
  12. /* This needs a patched html file else you have it all over the place */
  13. /* we only want this for the "visual header" at the page top */
  14. h1
  15. {
  16. text-align: center;
  17. background-color: #CCCC00;
  18. }
  19. /* Number the h2/h3 -- doesn't work on v4/5 browsers */
  20. h2
  21. {
  22. counter-increment: h2-count;
  23. counter-reset: h3-count;
  24. }
  25. h2:before
  26. {
  27. content: counter(h2-count) " ";
  28. }
  29. h3
  30. {
  31. counter-increment: h3-count;
  32. }
  33. h3:before
  34. {
  35. content: counter(h2-count) "." counter(h3-count) " ";
  36. }
  37. tt
  38. {
  39. color: rgb(40%,24%,24%);
  40. }
  41. a > tt, a > b > tt
  42. {
  43. color: blue;
  44. }
  45. a
  46. {
  47. color: blue;
  48. }
  49. a.offsite
  50. {
  51. font-style: oblique;
  52. }
  53. a:visited
  54. {
  55. color: rgb(60%,0%,30%);
  56. }
  57. a:hover, a:active, a:focus
  58. {
  59. background: #FFFFAA;
  60. }
  61. # table formatting hints
  62. td
  63. {
  64. vertical-align: top;
  65. }