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 54
|
/* Taken from the Zmanda wiki, for at least a little bit of visual continuity */
body {
font: small sans-serif;
background: #82B1C8 0 0 no-repeat;
color: black;
}
div.pod {
background: white;
margin-left: 11em;
margin-top: 2em;
padding: .6em;
padding-top: 0;
border: thin gray ridge;
}
pre {
padding: 1em;
border: 1px dashed #2f6fab;
color: black;
background-color: #f9f9f9;
line-height: 1.1em;
}
h1, h2, h3, h4, h5, h6 {
color: black;
background: none;
font-weight: normal;
margin: 0;
padding-top: .5em;
padding-bottom: .17em;
border-bottom: 1px solid #5C706D;
}
h1 { font-size: 188%; }
h2 { font-size: 150%; }
h3, h4, h5, h6 {
border-bottom: none;
font-weight: bold;
}
h3 { font-size: 132%; }
h4 { font-size: 116%; }
h5 { font-size: 100%; }
h6 { font-size: 80%; }
/* for the module title */
h1.module {
border-bottom: none;
text-align: center;
}
/* HR's are ugly */
hr {
display: none;
}
|