~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to utils/fpdoc/fpdoc.css

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2004-08-12 16:29:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040812162937-moo8ulvysp1ln771
Tags: 1.9.4-5
fp-compiler: needs ld, adding dependency on binutils.  (Closes: #265265)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  $Id: fpdoc.css,v 1.1 2003/03/17 23:03:20 michael Exp $
 
3
 
 
4
  Default style sheet for FPDoc reference documentation
 
5
  by Sebastian Guenther, sg@freepascal.org
 
6
 
 
7
  Feel free to use this file as a template for your own style sheets.
 
8
*/
 
9
 
 
10
body {
 
11
  background: white
 
12
}
 
13
 
 
14
body, p, th, td, caption, h1, h2, h3, ul, ol, dl {
 
15
  color: black;
 
16
  font-family: sans-serif
 
17
}
 
18
 
 
19
tt, span.kw, pre {
 
20
  font-family: Courier, monospace
 
21
}
 
22
 
 
23
body, p, th, td, caption, ul, ol, dl, tt, span.kw, pre {
 
24
  font-size: 14px
 
25
}
 
26
 
 
27
A:link {
 
28
  color: blue
 
29
}
 
30
 
 
31
A:visited {
 
32
  color: darkblue
 
33
}
 
34
 
 
35
A:active {
 
36
  color: red
 
37
}
 
38
 
 
39
A {
 
40
  text-decoration: none
 
41
}
 
42
 
 
43
A:hover {
 
44
  text-decoration: underline
 
45
}
 
46
 
 
47
h1, h2, td.h2 {
 
48
  color: #005A9C
 
49
}
 
50
 
 
51
/* Especially for Netscape on Linux: */
 
52
h3, td.h3 {
 
53
  font-size: 12pt
 
54
}
 
55
 
 
56
/* symbols in source fragments */
 
57
span.sym {
 
58
  color: darkred
 
59
}
 
60
 
 
61
/* keywords in source fragments */
 
62
span.kw {
 
63
  font-weight: bold
 
64
}
 
65
 
 
66
/* comments in source fragments */
 
67
span.cmt {
 
68
  color: darkcyan;
 
69
  font-style: italic
 
70
}
 
71
 
 
72
/* directives in source fragments */
 
73
span.dir {
 
74
  color: darkyellow;
 
75
  font-style: italic
 
76
}
 
77
 
 
78
/* numbers in source fragments */
 
79
span.num {
 
80
  color: darkmagenta
 
81
}
 
82
 
 
83
/* characters (#...) in source fragments */
 
84
span.chr {
 
85
  color: darkcyan
 
86
}
 
87
 
 
88
/* strings in source fragments */
 
89
span.str {
 
90
  color: blue
 
91
}
 
92
 
 
93
/* assembler passages in source fragments */
 
94
span.asm {
 
95
  color: green
 
96
}
 
97
 
 
98
 
 
99
td.pre {
 
100
  white-space: pre
 
101
}
 
102
 
 
103
p.cmt {
 
104
  color: gray
 
105
}
 
106
 
 
107
span.warning {
 
108
  color: red;
 
109
  font-weight: bold
 
110
}
 
111
 
 
112
/* !!!: How should we define this...? */
 
113
span.file {
 
114
  color: darkgreen
 
115
}
 
116
 
 
117
table.remark {
 
118
  background-color: #ffffc0;
 
119
}
 
120
 
 
121
table.bar {
 
122
  background-color: #a0c0ff;
 
123
}
 
124
 
 
125
span.bartitle {
 
126
  font-weight: bold;
 
127
  font-style: italic;
 
128
  color: darkblue
 
129
}