doxygen.css 13 KB

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