Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/cmd/gs/doc/gs.css

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


/* This is the default Ghostscript stylesheet */
/* $Id: gs.css,v 1.3 2004/01/15 17:45:47 giles Exp $ */

body
{
  color: black;
  background-color: white;
}

h1,h2,h3,h4,h5,h6
{
  font-family: sans-serif;
}

/* This needs a patched html file else you have it all over the place */
/* we only want this for the "visual header" at the page top */
h1
{
  text-align: center;
  background-color: #CCCC00;
}

/* Number the h2/h3 -- doesn't work on v4/5 browsers */
h2
{
   counter-increment: h2-count;
   counter-reset:     h3-count;
}

h2:before
{
   content: counter(h2-count) " ";
}

h3
{
   counter-increment: h3-count;
}

h3:before
{
   content: counter(h2-count) "." counter(h3-count) " ";
   
}
  
tt
{
  color: rgb(40%,24%,24%);
}

a > tt, a > b > tt
{
  color: blue;
}

a
{
  color: blue;
}

a.offsite
{
  font-style: oblique;
}

a:visited
{
  color: rgb(60%,0%,30%);
}

a:hover, a:active, a:focus
{
  background: #FFFFAA;
}

# table formatting hints
td
{
  vertical-align: top;
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.