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
|
/* VPP CSS overrides */
body, table, div, p, dl {
font: initial;
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
font-size: small;
}
code, tt {
font: initial;
font-family: Consolas, Courier, monospace;
font-size: small;
}
pre {
font-size: 105%;
}
.title {
font: initial;
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
font-size: 150%;
font-weight: bold;
}
.mdescLeft, .mdescRight,
.memItemLeft, .memItemRight,
.memTemplItemLeft, .memTemplItemRight, .memTemplParams {
font-family: Consolas, Courier, monospace;
}
.memname {
font-family: Consolas, Courier, monospace;
font-weight: bold;
font-size: 105%;
}
.paramname {
font-family: Consolas, Courier, monospace;
font-weight: bold;
}
a.el {
font-family: Consolas, Courier, monospace;
}
|