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