doxygen.css 13 KB

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