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
|
/*
* Stylesheet copied from the DocBook XSL Stylesheets reference.css
*/
div.legalnotice {
font-size: 80%;
}
div.note, div.tip, div.warning {
margin-left: 5%;
margin-right: 10%;
padding: 5px;
}
div.note, div.tip {
border-left: solid #d5dee3 20px;
border-right: solid #d5dee3 20px;
}
div.note, div.tip {
border-left: solid palegreen 20px;
border-right: solid palegreen 20px;
}
div.warning {
border-left: solid yellow 20px;
border-right: solid yellow 20px;
}
div.note p, div.tip p, div.warning p {
margin-top: 0px;
margin-bottom: 4px;
}
div.note h3, div.tip h3, div.warning h3 {
margin-top: 0;
}
div.informalexample {
background-color: #d5dee3;
border-top-width: 2px;
border-top-style: double;
border-top-color: #d3d3d3;
border-bottom-width: 2px;
border-bottom-style: double;
border-bottom-color: #d3d3d3;
padding: 4px;
margin: 0em;
margin-left: 2em;
}
pre.programlisting, pre.synopsis {
whitespace: pre;
font-family: monospace;
background-color: #d5dee3;
border-top-width: 1px;
border-top-style: single;
border-top-color: #d3d3d3;
border-bottom-width: 1px;
border-bottom-style: single;
border-bottom-color: #d3d3d3;
padding: 4px;
margin: 0em;
margin-top: 6px;
margin-bottom: 6px;
}
div.informalexample pre {
whitespace: pre;
font-family: monospace;
border-top-width: 0px;
border-bottom-width: 0px;
padding: 0px;
}
/* Parameter and PI titles */
div.refnamediv h2 {
font-size: 2em;
}
/* Table rendering */
div.revhistory table, div.informaltable table {
border-collapse: collapse;
border-top: 0.5pt solid black;
border-bottom: 0.5pt solid black;
border-left: 0.5pt solid black;
border-right: 0.5pt solid black;
}
div.revhistory td, div.revhistory th,
div.informaltable td, div.informaltable th {
padding: 2;
}
/* TOC rendering */
div.toc span.part {
font-family: Tahoma, Ariel, Helvetica, sans-serif;
font-weight: bold;
font-size: 20;
margin-top: 1in;
}
div.toc span.glossary {
font-weight: bold;
}
div.toc span.index {
font-weight: bold;
}
div.toc span.preface {
font-weight: bold;
}
div.toc span.appendix {
font-weight: bold;
}
div.toc span.chapter {
font-weight: bold;
}
|