style.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. body, table, div, p, dl {
  2. font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
  3. font-size: 11px;
  4. }
  5. /* @group Heading Levels */
  6. h1 {
  7. text-align: center;
  8. font-size: 150%;
  9. color: black;
  10. }
  11. h2 {
  12. font-size: 120%;
  13. }
  14. h3 {
  15. font-size: 100%;
  16. }
  17. /* @end */
  18. caption {
  19. font-weight: bold;
  20. }
  21. div.qindex, div.navtab{
  22. background-color: #e8eef2;
  23. border: 1px solid #84b0c7;
  24. text-align: center;
  25. margin: 2px;
  26. padding: 2px;
  27. }
  28. div.qindex, div.navpath {
  29. width: 100%;
  30. line-height: 140%;
  31. }
  32. div.navtab {
  33. margin-right: 15px;
  34. }
  35. /* @group Link Styling */
  36. a {
  37. color: #153788;
  38. font-weight: normal;
  39. text-decoration: none;
  40. }
  41. .contents a:visited {
  42. color: #1b77c5;
  43. }
  44. a:hover {
  45. text-decoration: underline;
  46. }
  47. a.qindex {
  48. font-weight: bold;
  49. }
  50. a.qindexHL {
  51. font-weight: bold;
  52. background-color: #6666cc;
  53. color: #ffffff;
  54. border: 1px double #9295C2;
  55. }
  56. .contents a.qindexHL:visited {
  57. color: #ffffff;
  58. }
  59. a.el {
  60. font-weight: bold;
  61. }
  62. a.elRef {
  63. }
  64. a.code {
  65. }
  66. a.codeRef {
  67. }
  68. /* @end */
  69. dl.el {
  70. margin-left: -1cm;
  71. }
  72. .fragment {
  73. font-family: monospace, fixed;
  74. font-size: 105%;
  75. }
  76. pre.fragment {
  77. border: 1px solid #CCCCCC;
  78. background-color: #f5f5f5;
  79. padding: 4px 6px;
  80. margin: 4px 8px 4px 2px;
  81. }
  82. div.ah {
  83. background-color: black;
  84. font-weight: bold;
  85. color: #ffffff;
  86. margin-bottom: 3px;
  87. margin-top: 3px
  88. }
  89. div.groupHeader {
  90. margin-left: 16px;
  91. margin-top: 12px;
  92. margin-bottom: 6px;
  93. font-weight: bold;
  94. }
  95. div.groupText {
  96. margin-left: 16px;
  97. font-style: italic;
  98. }
  99. body {
  100. background: white;
  101. color: #333333;
  102. margin-right: 20px;
  103. margin-left: 20px;
  104. }
  105. td.indexkey {
  106. background-color: #e8eef2;
  107. font-weight: bold;
  108. border: 1px solid #CCCCCC;
  109. margin: 2px 0px 2px 0;
  110. padding: 2px 10px;
  111. }
  112. td.indexvalue {
  113. background-color: #e8eef2;
  114. border: 1px solid #CCCCCC;
  115. padding: 2px 10px;
  116. margin: 2px 0px;
  117. }
  118. tr.memlist {
  119. background-color: #f0f0f0;
  120. }
  121. p.formulaDsp {
  122. text-align: center;
  123. }
  124. img.formulaDsp {
  125. }
  126. img.formulaInl {
  127. vertical-align: middle;
  128. }
  129. /* @group Code Colorization */
  130. span.keyword {
  131. color: #008000
  132. }
  133. span.keywordtype {
  134. color: #604020
  135. }
  136. span.keywordflow {
  137. color: #e08000
  138. }
  139. span.comment {
  140. color: #800000
  141. }
  142. span.preprocessor {
  143. color: #806020
  144. }
  145. span.stringliteral {
  146. color: #002080
  147. }
  148. span.charliteral {
  149. color: #008080
  150. }
  151. span.vhdldigit {
  152. color: #ff00ff
  153. }
  154. span.vhdlchar {
  155. color: #000000
  156. }
  157. span.vhdlkeyword {
  158. color: #700070
  159. }
  160. span.vhdllogic {
  161. color: #ff0000
  162. }
  163. /* @end */
  164. .search {
  165. color: #003399;
  166. font-weight: bold;
  167. }
  168. form.search {
  169. margin-bottom: 0px;
  170. margin-top: 0px;
  171. }
  172. input.search {
  173. font-size: 75%;
  174. color: #000080;
  175. font-weight: normal;
  176. background-color: #e8eef2;
  177. }
  178. td.tiny {
  179. font-size: 75%;
  180. }
  181. .dirtab {
  182. padding: 4px;
  183. border-collapse: collapse;
  184. border: 1px solid #84b0c7;
  185. }
  186. th.dirtab {
  187. background: #e8eef2;
  188. font-weight: bold;
  189. }
  190. hr {
  191. height: 0;
  192. border: none;
  193. border-top: 1px solid #666;
  194. }
  195. /* @group Member Descriptions */
  196. .mdescLeft, .mdescRight,
  197. .memItemLeft, .memItemRight,
  198. .memTemplItemLeft, .memTemplItemRight, .memTemplParams {
  199. background-color: #FAFAFA;
  200. border: none;
  201. margin: 4px;
  202. padding: 1px 0 0 8px;
  203. }
  204. .mdescLeft, .mdescRight {
  205. padding: 0px 8px 4px 8px;
  206. color: #555;
  207. }
  208. .memItemLeft, .memItemRight, .memTemplParams {
  209. border-top: 1px solid #ccc;
  210. }
  211. .memTemplParams {
  212. color: #606060;
  213. }
  214. /* @end */
  215. /* @group Member Details */
  216. /* Styles for detailed member documentation */
  217. .memtemplate {
  218. font-size: 80%;
  219. color: #606060;
  220. font-weight: normal;
  221. margin-left: 3px;
  222. }
  223. .memnav {
  224. background-color: #e8eef2;
  225. border: 1px solid #84b0c7;
  226. text-align: center;
  227. margin: 2px;
  228. margin-right: 15px;
  229. padding: 2px;
  230. }
  231. .memitem {
  232. padding: 0;
  233. }
  234. .memname {
  235. white-space: nowrap;
  236. font-weight: bold;
  237. }
  238. .memproto, .memdoc {
  239. border: 1px solid #84b0c7;
  240. }
  241. .memproto {
  242. padding: 0;
  243. background-color: #d5e1e8;
  244. font-weight: bold;
  245. -webkit-border-top-left-radius: 8px;
  246. -webkit-border-top-right-radius: 8px;
  247. -moz-border-radius-topleft: 8px;
  248. -moz-border-radius-topright: 8px;
  249. }
  250. .memdoc {
  251. padding: 2px 5px;
  252. background-color: #eef3f5;
  253. border-top-width: 0;
  254. -webkit-border-bottom-left-radius: 8px;
  255. -webkit-border-bottom-right-radius: 8px;
  256. -moz-border-radius-bottomleft: 8px;
  257. -moz-border-radius-bottomright: 8px;
  258. }
  259. .paramkey {
  260. text-align: right;
  261. }
  262. .paramtype {
  263. white-space: nowrap;
  264. }
  265. .paramname {
  266. color: #602020;
  267. white-space: nowrap;
  268. }
  269. .paramname em {
  270. font-style: normal;
  271. }
  272. /* @end */
  273. /* @group Directory (tree) */
  274. /* for the tree view */
  275. .ftvtree {
  276. font-family: sans-serif;
  277. margin: 0.5em;
  278. }
  279. /* these are for tree view when used as main index */
  280. .directory {
  281. font-size: 9pt;
  282. font-weight: bold;
  283. }
  284. .directory h3 {
  285. margin: 0px;
  286. margin-top: 1em;
  287. font-size: 11pt;
  288. }
  289. /*
  290. The following two styles can be used to replace the root node title
  291. with an image of your choice. Simply uncomment the next two styles,
  292. specify the name of your image and be sure to set 'height' to the
  293. proper pixel height of your image.
  294. */
  295. /*
  296. .directory h3.swap {
  297. height: 61px;
  298. background-repeat: no-repeat;
  299. background-image: url("yourimage.gif");
  300. }
  301. .directory h3.swap span {
  302. display: none;
  303. }
  304. */
  305. .directory > h3 {
  306. margin-top: 0;
  307. }
  308. .directory p {
  309. margin: 0px;
  310. white-space: nowrap;
  311. }
  312. .directory div {
  313. display: none;
  314. margin: 0px;
  315. }
  316. .directory img {
  317. vertical-align: -30%;
  318. }
  319. /* these are for tree view when not used as main index */
  320. .directory-alt {
  321. font-size: 100%;
  322. font-weight: bold;
  323. }
  324. .directory-alt h3 {
  325. margin: 0px;
  326. margin-top: 1em;
  327. font-size: 11pt;
  328. }
  329. .directory-alt > h3 {
  330. margin-top: 0;
  331. }
  332. .directory-alt p {
  333. margin: 0px;
  334. white-space: nowrap;
  335. }
  336. .directory-alt div {
  337. display: none;
  338. margin: 0px;
  339. }
  340. .directory-alt img {
  341. vertical-align: -30%;
  342. }
  343. /* @end */
  344. address {
  345. font-style: normal;
  346. color: #333;
  347. }