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 193 194 195
|
/*
fpdoc.css
Modified for use with Lazarus LCL and LazUtils documentation
*/
body {
background-color: white;
color: black;
font-family: "Roboto", "DejaVu Sans", "Arial", Helvetica, sans-serif;
font-size: 11pt;
}
tt, span.kw, pre {
font-family: "Courier New", Courier, monospace;
font-size: 11pt;
}
a:link {
color: blue;
}
a:visited {
color: darkblue;
}
a:active {
color: red;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1, h2, td.h2 {
color: #005A9C;
}
/* Especially for Netscape on Linux: */
h3, td.h3 {
font-size: 11pt;
}
/* source fragments */
span.code {
white-space: nowrap;
font-weight: bold;
/* font-size: 1em; */
}
/* symbols in source fragments */
span.sym {
color: darkred;
}
/* keywords in source fragments */
span.kw {
font-weight: bold;
}
/* comments in source fragments */
span.cmt {
color: darkcyan;
font-style: italic;
}
/* directives in source fragments */
span.dir {
color: OrangeRed;
font-style: italic;
}
/* numbers in source fragments */
span.num {
color: darkmagenta;
}
/* characters (#...) in source fragments */
span.chr {
color: darkcyan;
}
/* strings in source fragments */
span.str {
color: blue;
}
/* assembler passages in source fragments */
span.asm {
color: green;
}
td {
vertical-align: baseline;
}
td.pre {
white-space: pre;
}
table caption {
font-weight: bold;
}
p.cmt {
color: gray;
}
span.warning {
color: red;
font-weight: bold;
}
span.file {
color: darkgreen;
}
table.remark {
background-color: #ffffc0;
}
table.bar {
background-color: #a0c0ff;
}
table.bar tr td {
font-size: .875em;
}
span.bartitle {
font-style: normal;
font-weight: bold;
color: darkblue;
}
span.footer {
font-style: italic;
color: darkblue;
}
/* definition list */
dl {
display: block;
}
/* definition list: term */
dt {
font-weight: bold;
color: darkgreen;
}
/* definition list: description */
dd {
margin-left: 1.5em;
padding-bottom: .3em;
}
/* for browsers in standards compliance mode */
td p { margin: 0px; }
var { font-weight: bold; }
/* used in custom page footers */
hr.footer-sep { margin-top: .667em; }
table.footer {
width: 100%;
margin-top: .5em;
font-style: normal;
font-size: .875em;
color: Black;
}
td.footer-doc { width: 42%; text-align: left; font-weight: bold; }
td.footer-ver { width: 33%; text-align: center; color: Gray; }
td.footer-date { width: 25%; text-align: right; color: Gray; }
/* used on the class hierarchy page */
span.toggletreeclose {
background: url(minus.png) center left no-repeat;
padding-left: 20px;
}
span.toggletreeopen {
background: url(plus.png) center left no-repeat;
padding-left: 20px;
}
li.classtree ul { display: block; }
ul.classtreelist { list-style-type: none; }
ul.classtreelist li { padding-left: 0px; }
li.classtreeclosed ul { display: none; }
|