home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Bureautique / Scribus / GhostscriptPortable_9.14.paf.exe / doc / gs.css < prev    next >
Cascading Style Sheet File  |  2014-03-26  |  1KB  |  86 lines

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