-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathv1-default.css
109 lines (91 loc) · 2.11 KB
/
v1-default.css
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
Default style sheet from PasHi v1 with modifications to work correctly with
PasHi v2.
Source code is highlighted using the same style as that used by PasHi v1 for
complete HTML documents.
Provided mainly for use in conjuction with the config-vi configuration script.
This file works correctly regardless of the setting of the legacy-css command.
DO NOT EDIT THIS FILE: PasHi may overwrite any changes to this file. If you
need a modified version of the file, make a copy in a different directory or
with a different name and edit that.
******************************************************************************
The file is DEPRECATED and may be removed from a future release
******************************************************************************
*/
.code-pascal,
.pas-source {
}
.code-pascal pre,
.pas-source pre {
font-family: "Courier New", monospace;
font-size: 9pt;
margin: 0;
}
.code-pascal pre.line,
.pas-source pre.line {
}
.code-pascal pre.odd-line,
.pas-source pre.odd-line {
background-color: #f0f0f0;
}
.code-pascal pre.even-line,
.pas-source pre.even-line {
}
.code-pascal .linenum,
.pas-source .linenum {
border-right: 1px silver solid;
padding: 1px 4px 1px 0;
margin-right: 0.75em;
color: gray;
}
.code-pascal .comment,
.pas-comment {
font-style: italic;
font-weight: normal;
text-decoration: none;
color: #000080;
}
.code-pascal .kwd,
.pas-kwd {
font-style: normal;
font-weight: bold;
text-decoration: none;
}
.code-pascal .str,
.pas-str {
font-style: normal;
font-weight: normal;
text-decoration: none;
color: #800080;
}
.code-pascal .num,
.code-pascal .float,
.code-pascal .hex,
.pas-num,
.pas-float,
.pas-hex {
font-style: normal;
font-weight: normal;
text-decoration: none;
color: #800000;
}
.code-pascal .preproc,
.pas-preproc {
font-style: normal;
font-weight: normal;
text-decoration: none;
color: #008000;
}
.code-pascal .asm,
.pas-asm {
font-style: italic;
font-weight: normal;
text-decoration: none;
}
.code-pascal .err,
.pas-err {
font-style: normal;
font-weight: normal;
text-decoration: none;
color: #FF0000;
}