File: gs.css

package info (click to toggle)
ghostscript 8.62.dfsg.1-3.2lenny5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 55,332 kB
  • ctags: 73,646
  • sloc: ansic: 505,865; sh: 34,002; python: 4,917; cpp: 3,961; asm: 3,565; ada: 1,681; tcl: 1,469; pascal: 1,089; makefile: 885; cs: 879; lisp: 407; xml: 263; perl: 158; awk: 66; yacc: 15
file content (80 lines) | stat: -rw-r--r-- 1,000 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* This is the default Ghostscript stylesheet */
/* $Id: gs.css 6300 2005-12-28 19:56:24Z giles $ */

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

h1,h2,h3,h4,h5,h6
{
  font-family: Arial, Helvetica, 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;
}