Manual page with centralised documentation.
[virt-p2v.git] / virt-p2v.1.css
1 /* CSS for et.redhat.com/~rjones/
2  * $Id: standard.css,v 1.10 2007/08/29 16:03:21 rjones Exp $
3  */
4
5 body {
6   margin-left: 1em;
7 }
8
9 body p, body ul {
10   margin-left: 2em;
11   width: 35em;
12 }
13
14 /* Headings. */
15
16 h1 {
17   font-size: 120%;
18   border-bottom: 1px solid #eee;
19 }
20
21 h2 {
22   font-size: 110%;
23 }
24
25 h1, h2, h3, h4 {
26   color: #333;
27 }
28
29 hr { display: none; }
30
31 /* Code sections. */
32
33 code {
34   font-size: 120%;
35 }
36
37 pre {
38   background-color: #fcfcfc;
39   /*border: 1px dotted #888;*/
40   border-left: 6px solid #f0f0f0;
41   padding: 5px;
42   margin-left: 1em;
43   font-size: 120%;
44 }
45
46 /* Notes. */
47
48 p.note {
49   margin-left: 2em;
50   margin-right: 1em;
51   /*border: 1px dotted #888;*/
52   padding-left: 36px;
53   background: url(../images/note.png) no-repeat;
54 }
55
56 p.warning {
57   margin-left: 2em;
58   margin-right: 1em;
59   border: 1px dotted #800;
60   padding-left: 36px;
61   background: url(../images/warning.png) no-repeat #fee;
62 }
63
64 /* Highlighted text. */
65
66 span.highlight {
67   color: red;
68 }
69
70 /* Images. */
71
72 img.frame_img {
73   border: 1px solid #888;
74   padding: 6px;
75 }
76
77 /* Nice-looking tables. */
78
79 table.top_table {
80   border-collapse: collapse;
81 }
82
83 table.top_table th {
84   vertical-align: top;
85   padding: 3px;
86   border-bottom: 1px solid #ddd;
87 }
88
89 table.top_table td {
90   vertical-align: top;
91   padding: 3px;
92 }
93
94 table.top_table td.number {
95   text-align: right;
96 }
97
98 table.top_table th.divider {
99   text-align: center;
100   padding: 6px;
101   border-top: 1px solid #ddd;
102   border-bottom: 1px solid #ddd;
103 }
104
105 table.left_table {
106   border-collapse: collapse;
107 }
108
109 table.left_table th {
110   text-align: right;
111   vertical-align: top;
112   padding: 3px;
113   padding-right: 1em;
114 }
115
116 table.left_table td {
117   vertical-align: top;
118   padding: 3px;
119 }
120
121 table.left_table td.number {
122   text-align: right;
123 }
124
125 table.left_table th.divider {
126   text-align: center;
127   padding: 6px;
128   border-top: 1px solid #eee;
129   border-bottom: 1px solid #eee;
130 }
131
132 /* Float-left images with text around. */
133
134 img.leftpara {
135   float: left;
136   clear: left;
137   margin-right: 1em;
138   margin-bottom: 1em;
139 }
140
141 /* <ul> styled as menus. */
142
143 ul.menu {
144   width: 60em;
145   padding: 0px;
146   margin-left: 1em;
147   list-style: none;
148 }
149
150 ul.menu li {
151   display: inline;
152   border-left: 1px solid #666;
153   padding-left: 5px;
154 }
155
156 ul.menu li.first {
157   border-left: none;
158   padding-left: 0px;
159 }