doxygen.css 15 KB

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