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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
body {
font-family: Verdana, "Bitstream Vera Sans", sans-serif;
font-size: large;
}
h1 {
font-weight: normal;
font-variant: small-caps;
}
h2, h3 {
font-weight: normal;
}
a {
color: #182C41 !important;
font-weight: normal;
transition: background-color 0.2s linear;
}
a:hover {
background-color: #eef;
}
a[name] {
background-color: #fff;
}
pre {
background: #eef;
border: solid 1px #aaf;
padding: 0.5em;
}
pre.programlisting .command, pre.programlisting .filename, pre.programlisting .option, pre.programlisting .replaceable {
background: none;
}
.command {
font-style: italic;
font-weight: normal;
padding: 1px;
}
.filename {
background: #eee;
padding: 1px;
}
.option {
background: rgba(150,150,150,0.2);
padding: 1px;
}
.replaceable {
background: rgba(150,150,150,0.2);
padding: 1px;
}
table.variablelist {
border: none;
}
.variablelist th,td {
border: solid 1px #ddd;
}
div.book div.toc {
background: url("gbp.svg") no-repeat;
background-position: center;
}
div .titlepage table p.title {
font-size: 300%;
font-weight: normal;
margin: 0.5em;
}
body.chapter table.navigation th {
font-weight: normal;
margin: 0.5em;
}
body.appendix table.navigation th {
font-weight: normal;
margin: 0.5em;
}
body.refentry table.navigation th {
font-weight: normal;
margin: 0.5em;
}
body.refentry code.option, body.refentry tt.replaceable, body.refentry tt.filename {
background: none;
}
table.warning {
border-style: solid;
border-width: 5px;
border-collapse: collapse;
background: rgba(252, 175, 62, 0.1);
border-color: rgba(252, 175, 62, 0.2);
}
table.warning td {
border-width: 2px;
border-color: rgba(252, 175, 62, 0.2);
}
table.footnotes td {
border: none;
}
div.mediaobject {
background: #f5f5f5;
border-width: 2px;
border-color: lightgrey;
border-style: solid;
}
div.mediaobject img {
margin-left: auto;
margin-right: auto;
display: block;
padding: 5px 0px 0px 0px;
}
div.mediaobject p {
text-align: center;
font-style: italic;
}
|