libvirt.css 8.8 KB
Newer Older
1 2 3 4 5 6 7
#nav {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100px;
    background: rgb(0, 95, 97);
    border-bottom: 3px solid rgb(60, 133, 124);
8
    width: 100%;
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
    display: table;
}

#home {
    background-image: url(logos/logo-banner-light-256.png);
    background-repeat: no-repeat;
    background-position: left center;
    height: 100px;
    width: 269px;
    margin-left: 1em;
    text-indent: 100%; white-space: nowrap; overflow: hidden;
}

#home a {
    color:  rgb(0, 95, 97);
    height: 100px;
    width: 269px;
    display: block;
}

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
#jumplinks {
    display: table-cell;
    vertical-align: middle;
    font-size: 16pt;
    text-align: right;
}

#jumplinks ul {
    list-style: none;
}

#jumplinks li {
    display: inline;
    padding-left: 2em;
    font-weight: bold;
}

#jumplinks a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

#jumplinks a:hover {
    color: rgb(255, 230, 0);
}

55 56 57
#search {
    display: table-cell;
    vertical-align: middle;
58
    width: 13em;
59 60 61 62 63
    text-align: right;
    padding: 1em;
}

#search input {
64
    border: 0px;
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    height: 2em;
}

#search input[type=text] {
    background: rgb(230, 230, 230);
    color: rgb(0, 0, 0);
    width: 10em;
    padding: 0px;
    padding-left: 2px;
    padding-right: 2px;
}

#search input[type=submit] {
    background: rgb(60, 133, 124);
    color: rgb(255, 255, 255);
    width: 3em;
    font-weight: bold;
}

#search input[type=submit]:active,
#search input[type=submit]:hover {
    color: rgb(255, 230, 0);
87 88 89 90 91 92
}

#body {
    border: 0px;
    left: 0px;
    margin: 0px;
93
    margin-top: 120px;
94 95
    margin-left: 1em;
    margin-right: 1em;
96 97 98
}

#content {
99 100
    margin-left: auto;
    margin-right: auto;
101 102
    padding: 0px;
    padding-bottom: 1em;
103 104
    max-width: 95%;
    width: 70em;
105 106
}

107 108 109 110
body.index #content,
body.docs #content,
body.hvsupport #content
{
111
    width: inherit;
112
}
113

114
pre {
115 116 117 118 119 120 121
    border: 1px solid #999999;
    background: #eeeeee;
    color: black;
    padding: 1em;
}

a {
122
    color: rgb(0, 95, 97);
123 124 125 126 127 128
}

div.api {
    border: 1px solid #999999;
    background: #eeeeee;
    color: black;
129
    padding: 3px;
130 131 132 133 134 135
}

div.api pre {
    margin: 0px;
    border: 0px;
    background: inherit;
136
    padding: inherit;
137 138 139 140 141
}

div.api table {
    margin: 0px;
    padding-left: 2em;
142
    border-spacing: 0px;
143 144
}

P
Philipp Hahn 已提交
145 146
div.api table td, div.variablelist table td {
    vertical-align: top;
147
    padding-left: 1em;
P
Philipp Hahn 已提交
148 149
}

150 151 152 153 154 155 156 157 158 159 160 161 162 163
h1 a, h2 a, h3 a, h4 a, h5 a {
    color: inherit;
    text-decoration: inherit;
}

#changelog .author {
    color: #3c857c;
    font-weight: bold;
}

p.image {
    text-align: center;
}

164
table {
165
    border-collapse: collapse;
166 167 168
    min-width: 60%;
    margin-left: auto;
    margin-right: auto;
169 170
}

171
table th {
172 173 174
    background: rgb(0, 95, 97);
    color: rgb(255, 255, 255);
    padding: 0.5em;
175 176
}

177
table th a {
178 179 180 181
    color: inherit;
    text-decoration: inherit;
}

182
table td, table th {
183 184 185
    border: 1px solid rgb(60, 133, 124);
}

186
table td {
187
    padding: 4px;
188 189
}

190
table tr:hover td, table col:hover td {
191 192 193
    background: #eeeeee;
}

194
table tr td:hover {
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
    background: #c5dbd8;
}

#projects {
    margin: 0px;
    border: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

#projects dl {
    margin: 0px;
    border: 0px solid white;
    height: 180px;
    position: absolute;
    top: 0px;
    left: 0px;
}

#projects #p1 {
    margin-left: 25%;
    width: 75%;
}

#projects #p2 {
    margin-left: 50%;
    width: 50%;
}

#projects #p3 {
    margin-left: 75%;
    width: 25%;
}

#projects dt, #projects dd {
    padding: 0px;
    margin: 0px;
}

#projects #p1 dt, #projects #p1 dd {
    width: 33%;
}
239

240 241 242
#projects #p2 dt, #projects #p2 dd {
    width: 50%;
}
243

244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
#projects #p3 dt, #projects #p3 dd {
    width: 99%;
}

#projects span {
    font-size: 0.8em;
    display: block;
    padding-left: 1em;
    padding-top: 0.5em;
}

#projects a {
    font-size: 0.8em;
    display: block;
    padding-left: 0.8em;
    padding-top: 1em;
260 261
}

262 263 264
#projects a {
    color: white;
    text-decoration: inherit;
265 266
}

267 268
#projects span {
    color: #ccc;
269
}
D
Daniel Veillard 已提交
270

271 272 273 274 275
span.since {
    color: #3c857c;
    font-style: italic;
    font-weight: bold;
}
276

277
span.removed {
278 279 280 281 282
    color: darkred;
    font-style: italic;
    font-weight: bold;
}

283 284 285 286 287 288 289 290 291
img.diagram {
    background: rgb(230,230,230);
    border: 2px dotted rgb(178,178,178);
    padding: 1em;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

292

293
table tbody td.y {
294 295 296
    background: rgb(220,255,220);
    text-align: center;
}
297
table tbody td.n {
298 299 300
    background: rgb(255,220,220);
    text-align: center;
}
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333

.api {
    font-family: monospace;
}

.api .type {
    font-weight: bold;
    white-space: nowrap;
    color: darkslateblue;
}

.api .keyword {
    font-weight: bold;
    color: #A2F;
}

.api .comment {
    color: #080;
    margin-left: 2em;
    position: relative;
}

.api .comment:before {
    content: ": ";
    position: absolute;
    left: -1.3em;
}

.api .undisclosed {
    font-style: italic;
    letter-spacing: .3ex;
    font-weight: bolder;
    text-transform: uppercase;
334
    margin-left: 2em;
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
}

.api .directive {
    color: teal;
}

.api :link:hover, .api :link:focus {
    color: blue;
    border-color: blue;
}

.api :link {
    text-decoration: none;
}

350 351 352 353 354 355 356 357 358 359 360 361
.api table td,.api table th {
    border: 0px;
}

.api table tr:hover td, .api table col:hover td {
    background: inherit;
}

.api table tr td:hover {
    background: inherit;
}

362 363 364 365 366 367 368 369 370 371 372 373 374 375
dl.variablelist > dt {
    display: block;
    float: left;
    font-style: italic;
    font-weight: inherit;
}

.variablelist dd {
    padding-left: 10em;
}

dl.variablelist > dt:after {
    content: ": ";
}
376

377 378 379 380 381 382
div.description pre.code {
    border: 1px dashed grey;
    background-color: inherit;
    padding: 5px 10px 5px 10px;
    margin-left: 2.5em;
}
383 384 385 386 387 388

a.headerlink {
    text-decoration: none!important;
    visibility: hidden;
}

389
h1:hover > a.headerlink,
390 391 392 393 394 395 396
h2:hover > a.headerlink,
h3:hover > a.headerlink,
h4:hover > a.headerlink,
h5:hover > a.headerlink,
h6:hover > a.headerlink {
    visibility: visible;
}
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425

div.panel {
    width: 24%;
    margin-left: 7%;
    float: left;
    background: rgb(230, 230, 230);
}

div.panel h2 {
    margin-top: 0px;
    padding: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    background: rgb(0, 95, 97);
    color: rgb(255, 255, 255);
    text-align: center;
}

body.index h1 {
    border: 0px;
    text-indent: 100%; white-space: nowrap; overflow: hidden;
    background: url(logos/logo-banner-dark-800.png) no-repeat center center;
    height: 300px;
}

br.clear {
    clear: both;
    border: 0px;
}
D
Daniel P. Berrange 已提交
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464

#footer {
    clear: both;
    border-top: 3px solid rgb(60, 133, 124);
    margin-top: 2em;
    padding: 1em;
    background: rgb(0, 95, 97);
    color: rgb(255, 255, 255);
}

#footer a {
    color: inherit;
    text-decoration: none;
}

#footer a:hover {
    color: rgb(255, 230, 0);
}

#conduct {
    float: right;
    text-align: right;
    font-size: smaller;
    margin-right: 3em;
}

#conduct a {
    text-decoration: underline;
}

#contact, #community {
    float: left;
    padding: 0px;
    margin-left: 3em;
}

#footer h3 {
    margin:0px;
    font-size: 1em;
465
    color: rgb(60, 133, 124);
D
Daniel P. Berrange 已提交
466 467 468 469 470 471 472
}

#footer ul {
    list-style: none;
    margin: 0px;
    font-size: smaller;
}
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488

div.panel dd {
    font-size: smaller;
}

div.panel a {
    text-decoration: none;
}

div.panel ul,
div.panel p,
div.panel dl {
    padding: 0.5em;
    margin: 0px;
}

489 490 491 492

div.panel ul {
    margin-left: 1em;
}
493 494 495 496 497 498 499
div.panel dt {
    margin: 0px;
}
div.panel dd {
    margin: 0px;
    margin-bottom: 1em;
}
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514

dl.mail dt {
    background: rgb(0, 97, 95);
    color: rgb(255, 255, 255);
    font-weight: bold;
    padding: 0.5em;
}
dl.mail dt a {
    color: inherit;
    text-decoration: none;
}
dl.mail dt a:hover {
    color:  rgb(255, 230, 0);
    text-decoration: none;
}
515 516 517 518

td.enumvalue {
    white-space: nowrap;
}
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557

#advancedsearch {
    display: none;
    vertical-align: bottom;
    position: absolute;
    padding: 1em;
    padding-top: 0em;
    margin-top: 0em;
    top: 100px;
    right: 0px;
    width: 13em;
    text-align: left;
    color: white;
    background: rgb(0, 95, 97);
    border-left: 3px solid rgb(60, 133, 124);
    border-bottom: 3px solid rgb(60, 133, 124);
}

/* Use div.advancedsearch, not #advancedsearch because the
 * 'advancedsearch' class is set dynamically when javascript
 * loads. This ensures that the advancedsearch options are
 * not displayed when javascript is disabled.
*/
#search:hover div.advancedsearch {
    display: table;
}

#advancedsearch span {
    display: block;
}

#advancedsearch input[type=radio] {
    height: inherit;
    display: inline;
}

#advancedsearch label {
    display: inline;
}
558

559
.removedhv {
560 561
    color: darkred;
}
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576

ul.news-section-content {
    margin-top: 0.5em;
}

ul.news-section-content li dl dt {
    margin: 0;
}

ul.news-section-content li dl dd {
    margin-left: 1em;
    margin-right: 0;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
577 578 579 580 581

.literal, code {
    font-family: monospace;
    background: #eeeeee;
}