doxygen.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  1. /* The standard CSS for doxygen */
  2. body, table, div, p, dl
  3. {
  4. font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
  5. font-size: 12px;
  6. }
  7. body
  8. {
  9. margin:0px;
  10. padding:0px;
  11. background-color:#000000;
  12. background-repeat:no-repeat;
  13. background-position:center center;
  14. background-attachment:fixed;
  15. /*
  16. background-image: -moz-linear-gradient(center top, #FFFFFF 0%, #FFF8F0 5%, #FFEEDD 95%, #FFDDBB);
  17. background-image: -webkit-gradient(linear,center top,center bottom,from(#FFFFFF), color-stop(0.05,#FFF8F0), color-stop(0.05,#FFF8F0), color-stop(0.95,#FFEEDD), to(#FFDDBB));
  18. */
  19. min-height:1200px;
  20. overflow:auto;
  21. }
  22. p
  23. {
  24. background-color:#FFFFFF;
  25. }
  26. /* @group Heading Levels */
  27. h1
  28. {
  29. color:#FF8000;
  30. font-family:Century;
  31. font-size: 150%;
  32. }
  33. h2
  34. {
  35. color:#FF8000;
  36. font-family:Century;
  37. font-size: 120%;
  38. }
  39. h3 {
  40. font-family:Century;
  41. font-size: 100%;
  42. }
  43. dt {
  44. font-weight: bold;
  45. }
  46. div.multicol {
  47. -moz-column-gap: 1em;
  48. -webkit-column-gap: 1em;
  49. -moz-column-count: 3;
  50. -webkit-column-count: 3;
  51. }
  52. p.startli, p.startdd, p.starttd {
  53. margin-top: 2px;
  54. }
  55. p.endli {
  56. margin-bottom: 0px;
  57. }
  58. p.enddd {
  59. margin-bottom: 4px;
  60. }
  61. p.endtd {
  62. margin-bottom: 2px;
  63. }
  64. /* @end */
  65. caption {
  66. font-weight: bold;
  67. }
  68. span.legend {
  69. font-size: 70%;
  70. text-align: center;
  71. }
  72. h3.version {
  73. font-size: 90%;
  74. text-align: center;
  75. }
  76. div.qindex, div.navtab{
  77. background-color: #FFF8F0;
  78. border: 0px solid #FF8000;
  79. text-align: center;
  80. margin: 2px;
  81. padding: 2px;
  82. }
  83. div.qindex, div.navpath {
  84. width: 100%;
  85. line-height: 140%;
  86. }
  87. div.navtab {
  88. margin-right: 15px;
  89. }
  90. /* @group Link Styling */
  91. a {
  92. color: #000000;
  93. font-weight: normal;
  94. /*text-decoration: none;*/
  95. }
  96. .contents a:visited {
  97. color: #606060;
  98. }
  99. .contents{
  100. background-color: #FFFFFF;
  101. margin:0px;
  102. margin-left:auto;
  103. margin-right:auto;
  104. padding:0px;
  105. padding-top:8px;
  106. padding-bottom:8px;
  107. width:1000px;
  108. }
  109. div.textblock{
  110. background-color: #FFFFFF;
  111. padding-top: 4px;
  112. padding-bottom: 4px;
  113. padding-left: 32px;
  114. padding-right: 32px;
  115. }
  116. a:hover {
  117. text-decoration: underline;
  118. }
  119. a.qindex {
  120. font-weight: bold;
  121. }
  122. a.qindexHL {
  123. font-weight: bold;
  124. background-color: #9CAFD4;
  125. color: #ffffff;
  126. border: 0px double #869DCA;
  127. }
  128. .contents a.qindexHL:visited {
  129. color: #ffffff;
  130. }
  131. a.el {
  132. font-weight: bold;
  133. /*
  134. font-family: Century;
  135. font-size: 150%;
  136. color:#FF8000;
  137. */
  138. }
  139. a.elRef {
  140. }
  141. a.code {
  142. color: #4665A2;
  143. }
  144. a.codeRef {
  145. color: #4665A2;
  146. }
  147. /* @end */
  148. dl.el {
  149. margin-left: -1cm;
  150. }
  151. .fragment {
  152. font-family: monospace, fixed;
  153. font-size: 105%;
  154. }
  155. pre.fragment {
  156. border: 0px solid #FF8000;
  157. background-color: #FFF8F0;
  158. padding: 4px 6px;
  159. margin: 4px 8px 4px 2px;
  160. overflow: auto;
  161. word-wrap: break-word;
  162. font-size: 9pt;
  163. line-height: 125%;
  164. }
  165. div.ah {
  166. background-color: black;
  167. font-weight: bold;
  168. color: #ffffff;
  169. margin-bottom: 3px;
  170. margin-top: 3px;
  171. padding: 0.2em;
  172. border: solid thin #333;
  173. border-radius: 0.5em;
  174. -webkit-border-radius: .5em;
  175. -moz-border-radius: .5em;
  176. box-shadow: 2px 2px 3px #999;
  177. -webkit-box-shadow: 2px 2px 3px #999;
  178. -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
  179. background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
  180. background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
  181. }
  182. div.groupHeader {
  183. margin-left: 16px;
  184. margin-top: 12px;
  185. font-weight: bold;
  186. }
  187. div.groupText {
  188. margin-left: 16px;
  189. font-style: italic;
  190. }
  191. td.indexkey {
  192. font-weight: bold;
  193. border: 0px solid #C4CFE5;
  194. margin: 2px 0px 2px 0;
  195. padding: 4px 10px;
  196. }
  197. td.indexvalue {
  198. border: 0px solid #C4CFE5;
  199. padding: 2px 10px;
  200. margin: 2px 0px;
  201. }
  202. tr.memlist {
  203. background-color: #FFF8F0;
  204. }
  205. p.formulaDsp {
  206. text-align: center;
  207. }
  208. img.formulaDsp {
  209. }
  210. img.formulaInl {
  211. vertical-align: middle;
  212. }
  213. div.center {
  214. text-align: center;
  215. margin-top: 0px;
  216. margin-bottom: 0px;
  217. padding: 0px;
  218. }
  219. div.center img {
  220. border: 0px;
  221. }
  222. address.footer {
  223. margin-left:auto;
  224. margin-right:auto;
  225. width:1000px;
  226. text-align: right;
  227. padding-right: 12px;
  228. color: #FFEEDD;
  229. }
  230. img.footer {
  231. border: 0px;
  232. vertical-align: middle;
  233. }
  234. /* @group Code Colorization */
  235. span.keyword {
  236. color: #008000
  237. }
  238. span.keywordtype {
  239. color: #604020
  240. }
  241. span.keywordflow {
  242. color: #e08000
  243. }
  244. span.comment {
  245. color: #800000
  246. }
  247. span.preprocessor {
  248. color: #806020
  249. }
  250. span.stringliteral {
  251. color: #002080
  252. }
  253. span.charliteral {
  254. color: #008080
  255. }
  256. span.vhdldigit {
  257. color: #ff00ff
  258. }
  259. span.vhdlchar {
  260. color: #000000
  261. }
  262. span.vhdlkeyword {
  263. color: #700070
  264. }
  265. span.vhdllogic {
  266. color: #ff0000
  267. }
  268. /* @end */
  269. /*
  270. .search {
  271. color: #003399;
  272. font-weight: bold;
  273. }
  274. form.search {
  275. margin-bottom: 0px;
  276. margin-top: 0px;
  277. }
  278. input.search {
  279. font-size: 75%;
  280. color: #000080;
  281. font-weight: normal;
  282. background-color: #e8eef2;
  283. }
  284. */
  285. td.tiny {
  286. font-size: 75%;
  287. }
  288. .dirtab {
  289. padding: 4px;
  290. border-collapse: collapse;
  291. border: 0px solid #A3B4D7;
  292. }
  293. th.dirtab {
  294. background: #EBEFF6;
  295. font-weight: bold;
  296. }
  297. hr {
  298. height: 0px;
  299. border: none;
  300. border-top: 0px solid #FF8000;
  301. }
  302. hr.footer {
  303. height: 1px;
  304. margin-left:auto;
  305. margin-right:auto;
  306. width:1000px;
  307. }
  308. /* @group Member Descriptions */
  309. table.memberdecls {
  310. border-spacing: 0px;
  311. padding: 0px;
  312. }
  313. .mdescLeft, .mdescRight,
  314. .memItemLeft, .memItemRight,
  315. .memTemplItemLeft, .memTemplItemRight, .memTemplParams {
  316. background-color: #FFFCF8;
  317. border: none;
  318. margin: 4px;
  319. padding: 1px 0 0 8px;
  320. }
  321. .mdescLeft, .mdescRight {
  322. padding: 0px 8px 4px 8px;
  323. color: #000000;
  324. }
  325. .memItemLeft, .memItemRight, .memTemplParams {
  326. border-top: 4px solid #FFFFFF;
  327. }
  328. .memItemLeft, .memTemplItemLeft {
  329. white-space: nowrap;
  330. }
  331. .memTemplParams {
  332. color: #404040;
  333. white-space: nowrap;
  334. }
  335. /* @end */
  336. /* @group Member Details */
  337. /* Styles for detailed member documentation */
  338. .memtemplate {
  339. font-size: 80%;
  340. color: #4665A2;
  341. font-weight: normal;
  342. margin-left: 9px;
  343. }
  344. .memnav {
  345. background-color: #EBEFF6;
  346. border: 0px solid #A3B4D7;
  347. text-align: center;
  348. margin: 2px;
  349. margin-right: 15px;
  350. padding: 2px;
  351. }
  352. .memitem {
  353. padding: 8px;
  354. margin-bottom: 10px;
  355. }
  356. .memname {
  357. white-space: nowrap;
  358. font-weight: bold;
  359. margin-left: 6px;
  360. }
  361. .memproto {
  362. border-top: 0px solid #FF8000;
  363. border-left: 0px solid #FF8000;
  364. border-right: 0px solid #FF8000;
  365. padding: 6px 0px 6px 0px;
  366. color: #253555;
  367. font-weight: bold;
  368. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
  369. /* opera specific markup */
  370. box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  371. border-top-right-radius: 8px;
  372. border-top-left-radius: 8px;
  373. /* firefox specific markup */
  374. -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
  375. -moz-border-radius-topright: 8px;
  376. -moz-border-radius-topleft: 8px;
  377. /* webkit specific markup */
  378. -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  379. -webkit-border-top-right-radius: 8px;
  380. -webkit-border-top-left-radius: 8px;
  381. /*background-image:url('nav_f.png');*/
  382. background-repeat:repeat-x;
  383. background-color: #FFFFFF;
  384. background-image: -moz-linear-gradient(center top, #FFF8F0 0%, #FFFFFF 60%, #FFFFFF 95%, #FFFFFF);
  385. background-image: -webkit-gradient(linear,center top,center bottom,from(#FFF8F0), color-stop(0.2,#FFFFFF), color-stop(0.60,#FFFFFF), color-stop(0.95,#FFFFFF), to(#FFFFFF));
  386. }
  387. .memdoc {
  388. border-bottom: 0px solid #FF8000;
  389. border-left: 0px solid #FF8000;
  390. border-right: 0px solid #FF8000;
  391. padding: 2px 5px;
  392. background-color: #FFFFFF;
  393. border-top-width: 0;
  394. /* opera specific markup */
  395. border-bottom-left-radius: 8px;
  396. border-bottom-right-radius: 8px;
  397. box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  398. /* firefox specific markup */
  399. -moz-border-radius-bottomleft: 8px;
  400. -moz-border-radius-bottomright: 8px;
  401. -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
  402. background-image: -moz-linear-gradient(center top, #FFFFFF 0%, #FFFFFF 60%, #FFF8F0 90%, #FFEEDD);
  403. /* webkit specific markup */
  404. -webkit-border-bottom-left-radius: 8px;
  405. -webkit-border-bottom-right-radius: 8px;
  406. -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  407. background-image: -webkit-gradient(linear,center top,center bottom,from(#FFFFFF), color-stop(0.6,#FFFFFF), color-stop(0.60,#FFFFFF), color-stop(0.90,#FFF8F0), to(#FFEEDD));
  408. }
  409. .paramkey {
  410. text-align: right;
  411. }
  412. .paramtype {
  413. white-space: nowrap;
  414. }
  415. .paramname {
  416. color: #602020;
  417. white-space: nowrap;
  418. }
  419. .paramname em {
  420. font-style: normal;
  421. }
  422. .params, .retval, .exception, .tparams {
  423. border-spacing: 6px 2px;
  424. }
  425. .params .paramname, .retval .paramname {
  426. font-weight: bold;
  427. vertical-align: top;
  428. }
  429. .params .paramtype {
  430. font-style: italic;
  431. vertical-align: top;
  432. }
  433. .params .paramdir {
  434. font-family: "courier new",courier,monospace;
  435. vertical-align: top;
  436. }
  437. /* @end */
  438. /* @group Directory (tree) */
  439. /* for the tree view */
  440. .ftvtree {
  441. font-family: sans-serif;
  442. margin: 0px;
  443. }
  444. /* these are for tree view when used as main index */
  445. .directory {
  446. font-size: 9pt;
  447. font-weight: bold;
  448. margin: 5px;
  449. }
  450. .directory h3 {
  451. margin: 0px;
  452. margin-top: 1em;
  453. font-size: 11pt;
  454. }
  455. /*
  456. The following two styles can be used to replace the root node title
  457. with an image of your choice. Simply uncomment the next two styles,
  458. specify the name of your image and be sure to set 'height' to the
  459. proper pixel height of your image.
  460. */
  461. /*
  462. .directory h3.swap {
  463. height: 61px;
  464. background-repeat: no-repeat;
  465. background-image: url("yourimage.gif");
  466. }
  467. .directory h3.swap span {
  468. display: none;
  469. }
  470. */
  471. .directory > h3 {
  472. margin-top: 0;
  473. }
  474. .directory p {
  475. margin: 0px;
  476. white-space: nowrap;
  477. }
  478. .directory div {
  479. display: none;
  480. margin: 0px;
  481. }
  482. .directory img {
  483. vertical-align: -30%;
  484. }
  485. /* these are for tree view when not used as main index */
  486. .directory-alt {
  487. font-size: 100%;
  488. font-weight: bold;
  489. }
  490. .directory-alt h3 {
  491. margin: 0px;
  492. margin-top: 1em;
  493. font-size: 11pt;
  494. }
  495. .directory-alt > h3 {
  496. margin-top: 0;
  497. }
  498. .directory-alt p {
  499. margin: 0px;
  500. white-space: nowrap;
  501. }
  502. .directory-alt div {
  503. display: none;
  504. margin: 0px;
  505. }
  506. .directory-alt img {
  507. vertical-align: -30%;
  508. }
  509. /* @end */
  510. div.dynheader {
  511. margin-top: 8px;
  512. }
  513. address {
  514. font-style: normal;
  515. color: #804000;
  516. }
  517. table.doxtable {
  518. border-collapse:collapse;
  519. }
  520. table.doxtable td, table.doxtable th {
  521. border: 0px solid #2D4068;
  522. padding: 3px 7px 2px;
  523. }
  524. table.doxtable th {
  525. background-color: #374F7F;
  526. color: #FFFFFF;
  527. font-size: 110%;
  528. padding-bottom: 4px;
  529. padding-top: 5px;
  530. text-align:left;
  531. }
  532. .tabsearch {
  533. top: 0px;
  534. left: 10px;
  535. height: 36px;
  536. /*background-image: url('tab_b.png');*/
  537. z-index: 101;
  538. overflow: hidden;
  539. font-size: 13px;
  540. }
  541. .navpath ul
  542. {
  543. font-size: 11px;
  544. background-color: #FFEEDD;
  545. height:30px;
  546. line-height:30px;
  547. overflow:hidden;
  548. margin:0px;
  549. padding:0px;
  550. }
  551. .navpath li
  552. {
  553. list-style-type:none;
  554. float:left;
  555. padding-left:10px;
  556. padding-right:15px;
  557. /*background-image:url('bc_s.png');*/
  558. background-repeat:no-repeat;
  559. background-position:right;
  560. }
  561. .navpath li.navelem a
  562. {
  563. height:32px;
  564. display:block;
  565. text-decoration: none;
  566. outline: none;
  567. }
  568. .navpath li.navelem a:hover
  569. {
  570. color:#FF8000;
  571. }
  572. .navpath li.footer
  573. {
  574. list-style-type:none;
  575. float:right;
  576. padding-left:10px;
  577. padding-right:15px;
  578. background-image:none;
  579. background-repeat:no-repeat;
  580. background-position:right;
  581. color:#FFEEDD;
  582. font-size: 8pt;
  583. }
  584. div.summary
  585. {
  586. float: right;
  587. font-size: 8pt;
  588. padding-right: 5px;
  589. width: 50%;
  590. text-align: right;
  591. }
  592. div.summary a
  593. {
  594. white-space: nowrap;
  595. }
  596. div.ingroups
  597. {
  598. font-size: 8pt;
  599. padding-left: 5px;
  600. width: 50%;
  601. text-align: left;
  602. }
  603. div.ingroups a
  604. {
  605. white-space: nowrap;
  606. }
  607. div.header
  608. {
  609. background-color:#FFEEDD;
  610. background-image: -moz-linear-gradient(center top, #FFEEDD 0%, #FFEEDD 5%, #FFEEDD 80%, #FFFFFF);
  611. background-image: -webkit-gradient(linear,center top,center bottom,from(#FFEEDD), color-stop(0.05,#FFEEDD), color-stop(0.05,#FFEEDD), color-stop(0.80,#FFEEDD), to(#FFFFFF));
  612. padding:0px;
  613. margin:0px;
  614. margin-left:auto;
  615. margin-right:auto;
  616. width:1000px;
  617. border-bottom: 0px solid #FFC080;
  618. }
  619. div.headertitle
  620. {
  621. margin: 0px;
  622. padding: 5px;
  623. padding-bottom:10px;
  624. padding-top:10px;
  625. }
  626. dl
  627. {
  628. padding: 0 0 0 10px;
  629. }
  630. dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug
  631. {
  632. border-color: #FF8000;
  633. border-left:4px solid;
  634. padding: 0 0 0 6px;
  635. }
  636. dl.note
  637. {
  638. border-color: #FFDDBB;
  639. }
  640. dl.warning, dl.attention
  641. {
  642. border-color: #FF0000;
  643. }
  644. dl.pre, dl.post, dl.invariant
  645. {
  646. border-color: #00D000;
  647. }
  648. dl.deprecated
  649. {
  650. border-color: #505050;
  651. }
  652. dl.todo
  653. {
  654. border-color: #00C0E0;
  655. }
  656. dl.test
  657. {
  658. border-color: #3030E0;
  659. }
  660. dl.bug
  661. {
  662. border-color: #C08050;
  663. }
  664. #projectlogo
  665. {
  666. text-align: center;
  667. vertical-align: bottom;
  668. border-collapse: separate;
  669. }
  670. #projectlogo img
  671. {
  672. border: 0px none;
  673. }
  674. #projectname
  675. {
  676. font: 300% arial,sans-serif;
  677. margin: 0px;
  678. padding: 0px;
  679. }
  680. #projectbrief
  681. {
  682. font: 120% arial,sans-serif;
  683. margin: 0px;
  684. padding: 0px;
  685. }
  686. #projectnumber
  687. {
  688. font: 50% arial,sans-serif;
  689. margin: 0px;
  690. padding: 0px;
  691. }
  692. #titlearea
  693. {
  694. padding: 0px;
  695. margin: 0px;
  696. width: 100%;
  697. border-bottom: 0px solid #FF8000;
  698. background-color:#FFFFFF;
  699. }
  700. #top
  701. {
  702. margin-left:auto;
  703. margin-right:auto;
  704. width:1000px;
  705. /*background-color:#000000;*/
  706. }