File: tcLex.css

package info (click to toggle)
tclex 1.2a1-20
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 788 kB
  • sloc: ansic: 3,784; tcl: 452; makefile: 87; sh: 71; lex: 48
file content (110 lines) | stat: -rw-r--r-- 1,387 bytes parent folder | download | duplicates (8)
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
110
/* Basic style */

BODY {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #afafaf;
  background-image: url("light_slate.jpg");
  font-size: 10pt;
  color: black;
}

H2 {
  font-size: 20pt;
}
H3 {
  font-size: 16pt;
}
H4 {
  font-style: italic;
  font-size: 14pt;
  margin-left: 20px;
}

P {
  text-indent: 1em;
}

PRE, TT {
  font-family: Courier New, Courier, monospace;
}
PRE {
  font-size: 10pt;
  white-space: pre;
  display: block;
  background-color: #efefef;
  border-width: 4px;
  padding: 5px;
  border-style: groove;
  border-color: #afafaf;
}

/* Table style */

TR.odd {
  background-color: #bfbfbf;
}
TR.even {
  background-color: #dfdfdf;
}
TR.odd TH {
  background-color: #afafaf;
}
TR.even TH {
  background-color: #cfcfcf;
}

/* Links */

A:link {
/*  color: red;*/
  color: blue;
}

A:active {
  color: red;
}

A:visited {
  color: darkblue;
}

A.keyword {
  text-decoration: none;
  background-color: #ffd000;
/*  color: #a00000;*/
  color: black;
}

/* Table of Contents */

BODY.toc H2 {
  font-size: 16pt;
}
BODY.toc H3 {
  font-size: 10pt;
}
BODY.toc H4 {
  font-size: 10pt;
  font-weight: normal;
}

BODY.toc A {
  color: black;
  text-decoration: none;
}
BODY.toc A:visited {
  color: black;
}


/* Menu */

BODY.menu A {
  font-size: 12pt;
  color: black;
  font-weight: bold;
  text-decoration: none;
}
BODY.menu A:visited {
  color: black;
}