blob: b2115e404e55a9e6d02cbabec87f9f24fb89485a (
plain)
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
|
/************************************************************************************
Window Help File colour and fonts are done here. Halibut controls margins, line spacing and indents.
*************************************************************************************/
BODY {
background: white;
font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
font-size: 9pt;
color: #333;
font-weight: normal;
line-height: 1.4em;
}
A:link {
text-decoration: none;
color: #7DA1BF;
font-weight: bold;
} /* unvisited link */
A:visited {
text-decoration: none;
color: #1d4e89;
font-weight: bold;
} /* visited links */
A:active {
text-decoration: none;
font-weight: bold;
color: red;
} /* active links */
a:hover {
text-decoration: underline;
color: #F69256;
}
H1 {
text-align: left;
font-size: large;
font-style: italic;
font-weight: bold;
padding: 3px 6px;
}
H2 {
text-align: left;
font-size: medium;
font-style: italic;
font-weight: bold;
padding: 3px 6px;
}
H3 {
text-align: left;
font-size: small;
font-style: italic;
font-weight: bold;
padding: 3px 6px;
}
|