~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcsrc/utils/fpdoc/fpdoc.css

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

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
/* source fragments */
 
57
span.code {
 
58
  white-space: nowrap
 
59
}
 
60
 
 
61
/* symbols in source fragments */
 
62
span.sym {
 
63
  color: darkred
 
64
}
 
65
 
 
66
/* keywords in source fragments */
 
67
span.kw {
 
68
  font-weight: bold
 
69
}
 
70
 
 
71
/* comments in source fragments */
 
72
span.cmt {
 
73
  color: darkcyan;
 
74
  font-style: italic
 
75
}
 
76
 
 
77
/* directives in source fragments */
 
78
span.dir {
 
79
  color: darkyellow;
 
80
  font-style: italic
 
81
}
 
82
 
 
83
/* numbers in source fragments */
 
84
span.num {
 
85
  color: darkmagenta
 
86
}
 
87
 
 
88
/* characters (#...) in source fragments */
 
89
span.chr {
 
90
  color: darkcyan
 
91
}
 
92
 
 
93
/* strings in source fragments */
 
94
span.str {
 
95
  color: blue
 
96
}
 
97
 
 
98
/* assembler passages in source fragments */
 
99
span.asm {
 
100
  color: green
 
101
}
 
102
 
 
103
 
 
104
td.pre {
 
105
  white-space: pre
 
106
}
 
107
 
 
108
p.cmt {
 
109
  color: gray
 
110
}
 
111
 
 
112
span.warning {
 
113
  color: red;
 
114
  font-weight: bold
 
115
}
 
116
 
 
117
/* !!!: How should we define this...? */
 
118
span.file {
 
119
  color: darkgreen
 
120
}
 
121
 
 
122
table.remark {
 
123
  background-color: #ffffc0;
 
124
}
 
125
 
 
126
table.bar {
 
127
  background-color: #a0c0ff;
 
128
}
 
129
 
 
130
span.bartitle {
 
131
  font-weight: bold;
 
132
  font-style: italic;
 
133
  color: darkblue
 
134
}