blob: c113487fa8fbfa9aeac5044cfaadb8dece32cceb (
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
|
/*
jGrouseDoc stylesheet file for index page.
Copyright (c) 2007 by Robert Kieffer and jGrouseDoc contributors
$Id: jgindex.css 302 2007-12-24 22:51:11Z denis.riabtchik $
*/
@CHARSET "ISO-8859-1";
dt {
clear:both;
float:left;
width: 200px;
margin-left: 20px;
}
a {
color: #009;
text-decoration: none;
}
a:hover {
color: #009;
text-decoration: underline;
}
dd {
/*float:left;*/
}
dt, dd {
margin: 0px;
}
dt.even, dd.even {
border-bottom: dashed 1px #ddd;
}
dt.odd, dd.odd {
border-bottom: dotted 1px #eee;
}
dt.is_namespace {
font-weight:bold;
}
#toc {
font-size: 12pt;
font-weight: bold;
}
#toc .has_entries a,
#toc .no_entries {padding: 0px 3px;}
#toc .no_entries {color:#999}
.letter_section {
clear:both;
margin: 0px;
padding:15px 0px 6px;
}
.letter_section a {
color:#000;
}
|