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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
body {
font-family: Verdana,Arial;
color: black;
background-color: white;
font-size: 12px; }
body.navigationframe {
font-family: Verdana,Arial;
color: black;
background-color: white;
font-size: 12px; }
img { border:0px; }
body.navigationframe h2 {
background:darkblue;
color:white;
text-align:center;
padding:0;
}
h1 {
border-color:black;
border-top-style:solid;
border-left-style:solid;
color:darkblue;
font-weight:normal;
padding-left:4px;
}
h2 {
font-weight:normal;
}
h3 {
font-weight:bold;
color:darkblue;
}
a {
color:darkblue;
text-decoration: none;
border-bottom:dashed 1px; }
ul.useslist {
list-style-type:none;
margin-left:10px;
}
ul.hierarchy {
list-style-type:none;
margin-left:10px;
}
ul.hierarchylevel {
list-style-type:none;
margin-left:20px;
}
ul.authors{
list-style-type:none;
margin-left:10px;
}
p.unitlink {
padding-left:10px;
}
p.declaration { padding-left:10px; color:darkblue; }
table { border-spacing:2px; padding:4px; width:100%; }
table.markerlegend { width:auto; }
table.markerlegend td.legendmarker { text-align:center; }
table.sections {
border-collapse: collapse;
background:white;
width:auto;
}
table.sections tr {
border-left: hidden;
}
table.sections td {
border-left: solid 1px darkgray;
}
table.summary {
border-collapse:collapse;
border-top:double gray;
border-bottom:double gray;
}
table.summary tr {
background:transparent;
padding:5px;
border-top:solid 1px gray;
}
table.summary b { font-weight:normal; }
table.summary td { border:none; }
table.summary td.itemcode { width:100%; }
table.detail td.itemcode { width:100%; }
table.detail {
border-collapse:collapse;
border-top:solid 2px black;
border-left:solid 2px black;
}
table.detail tr {
background:transparent;
font-weight:normal;
color:black;
}
table.detail b {
font-weight:normal;
color:darkblue;
}
table.detail td.visibility img {
display:none;
}
table.unitstable {
border-collapse:collapse;
border-top:double black;
border-bottom:double black;
}
table.unitstable tr {
background:transparent;
border-top:solid 1px gray;
}
table.unitstable tr.listheader {
color:darkblue;
text-align:left;
border-top:double black;
border-bottom:double black;
}
table.classestable {
border-collapse:collapse;
border-top:double black;
border-bottom:double black;
}
table.classestable tr {
background:transparent;
border-top:solid 1px gray;
}
table.classestable tr.listheader {
color:darkblue;
text-align:left;
border-top:double black;
border-bottom:double black;
}
table.itemstable {
border-collapse:collapse;
border-top:double black;
border-bottom:double black;
}
table.itemstable tr {
background:transparent;
border-top:solid 1px gray;
}
table.itemstable tr.listheader {
color:darkblue;
text-align:left;
border-top:double black;
border-bottom:double black;
}
td { vertical-align:top; padding:4px; }
td.itemname {white-space:nowrap; }
td.itemunit {white-space:nowrap; }
td.itemdesc { width:100%; }
td.visibility a { border:none; }
div.nodescription {color:red;}
dl.parameters {;}
dl.parameters dt {color:blue;}
dl.parameters dd {;}
/* Style applied to Pascal code in documentation
(e.g. produced by @longcode tag) } */
span.pascal_string { color: #000080; }
span.pascal_keyword { font-weight: bolder; }
span.pascal_comment { color: #000080; font-style: italic; }
span.pascal_compiler_comment { color: #008000; }
p.hint_directive { color: red; }
input#search_text { }
input#search_submit_button { }
acronym.mispelling { background-color: #ffa; }
|