]> git.cworth.org Git - apitrace/blob - apitrace.css
Rename to apitrace.
[apitrace] / apitrace.css
1 /****************************************************************************
2  *
3  * Copyright 2008 Tungsten Graphics, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify it
6  * under the terms of the GNU Lesser General Public License as published
7  * by the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  ****************************************************************************/
19
20 body {
21         font-family: verdana, sans-serif;
22         font-size: 11px;
23         font-weight: normal;
24         text-align : left;
25 }
26
27 ul.calls {
28         list-style: none;
29         margin-left: 0px;
30         padding-left: 0px;
31 }
32
33 ul.args {
34         display:inline;
35         list-style: none;
36         margin-left: 0px;
37         padding-left: 0px;
38 }
39
40 ul.args li {
41         display:inline;
42 }
43
44 ul.elems {
45         list-style: none;
46         margin-left: 2em;
47         padding-left: 0px;
48 }
49
50 ul.elems li {
51         display:block;
52 }
53
54 .fun {
55         font-weight: bold;
56 }
57
58 .var {
59         font-style: italic;
60 }
61
62 .typ {
63         display: none;
64 }
65
66 .lit {
67         color: #0000ff;
68 }
69
70 .addr {
71         color: #008000;
72 }
73
74 .ref {
75         position: relative;
76         cursor: help;
77 }
78
79 .def {
80         display: none;
81         position: absolute;
82         top: 1.5em;
83         left: 0;
84         width: 32em;
85         background: #f7f7f7;
86         cursor: default;
87 }
88
89 .ref:hover .def {
90         display: block;
91 }
92