stylesheet.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248
  1. /**
  2. * Copyright 2024 Google LLC
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /* The standard CSS for doxygen */
  17. body, table, div, p, dl {
  18. font: 400 13px/20px 'Helvetica Neue', Arial, Helvetica, Geneva, sans-serif;
  19. line-height: 20px;
  20. }
  21. /* @group Heading Levels */
  22. h1.groupheader {
  23. font-size: 150%;
  24. }
  25. .title {
  26. font-size: 150%;
  27. font-weight: bold;
  28. margin: 10px 2px;
  29. }
  30. h2.groupheader {
  31. color: #666;
  32. font-size: 20px;
  33. font-weight: normal;
  34. margin: 0 0 18px 0;
  35. border-bottom: 1px solid #666;
  36. padding-top: 8px;
  37. padding-bottom: 4px;
  38. width: 100%;
  39. clear: both;
  40. }
  41. h3.groupheader {
  42. font-size: 100%;
  43. clear: both;
  44. }
  45. h1, h2, h3, h4, h5, h6 {
  46. -webkit-transition: text-shadow 0.5s linear;
  47. -moz-transition: text-shadow 0.5s linear;
  48. -ms-transition: text-shadow 0.5s linear;
  49. -o-transition: text-shadow 0.5s linear;
  50. transition: text-shadow 0.5s linear;
  51. margin-right: 15px;
  52. }
  53. h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
  54. text-shadow: 0 0 15px cyan;
  55. }
  56. dt {
  57. font-weight: bold;
  58. }
  59. div.multicol {
  60. -moz-column-gap: 1em;
  61. -webkit-column-gap: 1em;
  62. -moz-column-count: 3;
  63. -webkit-column-count: 3;
  64. }
  65. p.startli, p.startdd, p.starttd {
  66. margin-top: 2px;
  67. }
  68. p.endli {
  69. margin-bottom: 0px;
  70. }
  71. p.enddd {
  72. margin-bottom: 4px;
  73. }
  74. p.endtd {
  75. margin-bottom: 2px;
  76. }
  77. /* @end */
  78. caption {
  79. font-weight: bold;
  80. }
  81. span.legend {
  82. font-size: 70%;
  83. text-align: center;
  84. }
  85. h3.version {
  86. font-size: 90%;
  87. text-align: center;
  88. }
  89. div.qindex, div.navtab{
  90. background-color: #EBEFF6;
  91. border: 1px solid #A3B4D7;
  92. text-align: center;
  93. }
  94. div.qindex, div.navpath {
  95. width: 100%;
  96. line-height: 140%;
  97. }
  98. div.navtab {
  99. margin-right: 15px;
  100. }
  101. /* @group Link Styling */
  102. a {
  103. color: #000;
  104. font-weight: normal;
  105. text-decoration: none;
  106. }
  107. .contents a:visited {
  108. color: #000;
  109. }
  110. a:hover {
  111. text-decoration: underline;
  112. }
  113. a.qindex {
  114. font-weight: bold;
  115. }
  116. a.qindexHL {
  117. font-weight: bold;
  118. background-color: #9CAFD4;
  119. color: #ffffff;
  120. border: 1px double #869DCA;
  121. }
  122. .contents a.qindexHL:visited {
  123. color: #ffffff;
  124. }
  125. a.el {
  126. font-weight: bold;
  127. }
  128. a.elRef {
  129. }
  130. a.code, a.code:visited {
  131. color: #4665A2;
  132. }
  133. a.codeRef, a.codeRef:visited {
  134. color: #4665A2;
  135. }
  136. /* @end */
  137. dl.el {
  138. margin-left: -1cm;
  139. }
  140. pre.fragment {
  141. border: 1px solid #C4CFE5;
  142. background-color: #FBFCFD;
  143. padding: 4px 6px;
  144. margin: 4px 8px 4px 2px;
  145. overflow: auto;
  146. word-wrap: break-word;
  147. font-size: 9pt;
  148. line-height: 125%;
  149. font-family: monospace, fixed;
  150. font-size: 105%;
  151. }
  152. div.fragment {
  153. padding: 4px;
  154. margin: 4px;
  155. background-color: #FBFCFD;
  156. border: 1px solid #C4CFE5;
  157. }
  158. div.line {
  159. font-family: monospace, fixed;
  160. font-size: 13px;
  161. min-height: 13px;
  162. line-height: 1.0;
  163. text-wrap: unrestricted;
  164. white-space: -moz-pre-wrap; /* Moz */
  165. white-space: -pre-wrap; /* Opera 4-6 */
  166. white-space: -o-pre-wrap; /* Opera 7 */
  167. white-space: pre-wrap; /* CSS3 */
  168. word-wrap: break-word; /* IE 5.5+ */
  169. text-indent: -53px;
  170. padding-left: 53px;
  171. padding-bottom: 0px;
  172. margin: 0px;
  173. -webkit-transition-property: background-color, box-shadow;
  174. -webkit-transition-duration: 0.5s;
  175. -moz-transition-property: background-color, box-shadow;
  176. -moz-transition-duration: 0.5s;
  177. -ms-transition-property: background-color, box-shadow;
  178. -ms-transition-duration: 0.5s;
  179. -o-transition-property: background-color, box-shadow;
  180. -o-transition-duration: 0.5s;
  181. transition-property: background-color, box-shadow;
  182. transition-duration: 0.5s;
  183. }
  184. div.line.glow {
  185. background-color: cyan;
  186. box-shadow: 0 0 10px cyan;
  187. }
  188. span.lineno {
  189. padding-right: 4px;
  190. text-align: right;
  191. border-right: 2px solid #0F0;
  192. background-color: #E8E8E8;
  193. white-space: pre;
  194. }
  195. span.lineno a {
  196. background-color: #D8D8D8;
  197. }
  198. span.lineno a:hover {
  199. background-color: #C8C8C8;
  200. }
  201. div.ah {
  202. background-color: black;
  203. font-weight: bold;
  204. color: #ffffff;
  205. margin-bottom: 3px;
  206. margin-top: 3px;
  207. padding: 0.2em;
  208. border: solid thin #333;
  209. border-radius: 0.5em;
  210. -webkit-border-radius: .5em;
  211. -moz-border-radius: .5em;
  212. box-shadow: 2px 2px 3px #999;
  213. -webkit-box-shadow: 2px 2px 3px #999;
  214. -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
  215. background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
  216. background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
  217. }
  218. div.groupHeader {
  219. margin-left: 16px;
  220. margin-top: 12px;
  221. font-weight: bold;
  222. }
  223. div.groupText {
  224. margin-left: 16px;
  225. font-style: italic;
  226. }
  227. body {
  228. background-color: white;
  229. color: black;
  230. margin: 0;
  231. }
  232. div.contents {
  233. margin-top: 10px;
  234. margin-left: 12px;
  235. margin-right: 8px;
  236. max-width: 700px;
  237. padding: 10px 40px;
  238. }
  239. td.indexkey {
  240. background-color: #EBEFF6;
  241. font-weight: bold;
  242. border: 1px solid #C4CFE5;
  243. margin: 2px 0px 2px 0;
  244. padding: 2px 10px;
  245. white-space: nowrap;
  246. vertical-align: top;
  247. }
  248. td.indexvalue {
  249. background-color: #EBEFF6;
  250. border: 1px solid #C4CFE5;
  251. padding: 2px 10px;
  252. margin: 2px 0px;
  253. }
  254. tr.memlist {
  255. background-color: #EEF1F7;
  256. }
  257. p.formulaDsp {
  258. text-align: center;
  259. }
  260. img.formulaDsp {
  261. }
  262. img.formulaInl {
  263. vertical-align: middle;
  264. }
  265. div.center {
  266. text-align: center;
  267. margin-top: 0px;
  268. margin-bottom: 0px;
  269. padding: 0px;
  270. }
  271. div.center img {
  272. border: 0px;
  273. }
  274. address.footer {
  275. text-align: right;
  276. padding-right: 12px;
  277. }
  278. img.footer {
  279. height: 15px;
  280. width: 52px;
  281. border: 0px;
  282. padding-bottom: 4px;
  283. vertical-align: middle;
  284. }
  285. /* @group Code Colorization */
  286. span.keyword {
  287. color: #008000
  288. }
  289. span.keywordtype {
  290. color: #604020
  291. }
  292. span.keywordflow {
  293. color: #e08000
  294. }
  295. span.comment {
  296. color: #800000
  297. }
  298. span.preprocessor {
  299. color: #806020
  300. }
  301. span.stringliteral {
  302. color: #002080
  303. }
  304. span.charliteral {
  305. color: #008080
  306. }
  307. span.vhdldigit {
  308. color: #ff00ff
  309. }
  310. span.vhdlchar {
  311. color: #000000
  312. }
  313. span.vhdlkeyword {
  314. color: #700070
  315. }
  316. span.vhdllogic {
  317. color: #ff0000
  318. }
  319. blockquote {
  320. background-color: #F7F8FB;
  321. border-left: 2px solid #9CAFD4;
  322. margin: 0 24px 0 4px;
  323. padding: 0 12px 0 16px;
  324. }
  325. /* @end */
  326. /*
  327. .search {
  328. color: #003399;
  329. font-weight: bold;
  330. }
  331. form.search {
  332. margin-bottom: 0px;
  333. margin-top: 0px;
  334. }
  335. input.search {
  336. font-size: 75%;
  337. color: #000080;
  338. font-weight: normal;
  339. background-color: #e8eef2;
  340. }
  341. */
  342. td.tiny {
  343. font-size: 75%;
  344. }
  345. .dirtab {
  346. padding: 4px;
  347. border-collapse: collapse;
  348. border: 1px solid #A3B4D7;
  349. }
  350. th.dirtab {
  351. background: #EBEFF6;
  352. font-weight: bold;
  353. }
  354. hr {
  355. height: 0px;
  356. border: none;
  357. border-top: 1px solid #4A6AAA;
  358. }
  359. hr.footer {
  360. height: 1px;
  361. }
  362. /* @group Member Descriptions */
  363. table.memberdecls {
  364. border-spacing: 0px;
  365. padding: 0px;
  366. clear: both;
  367. }
  368. .memberdecls td, .fieldtable tr {
  369. -webkit-transition-property: background-color, box-shadow;
  370. -webkit-transition-duration: 0.5s;
  371. -moz-transition-property: background-color, box-shadow;
  372. -moz-transition-duration: 0.5s;
  373. -ms-transition-property: background-color, box-shadow;
  374. -ms-transition-duration: 0.5s;
  375. -o-transition-property: background-color, box-shadow;
  376. -o-transition-duration: 0.5s;
  377. transition-property: background-color, box-shadow;
  378. transition-duration: 0.5s;
  379. }
  380. .memberdecls td.glow, .fieldtable tr.glow {
  381. background-color: #c43717;
  382. box-shadow: 0 0 15px #c43717;
  383. }
  384. .mdescLeft, .mdescRight,
  385. .memItemLeft, .memItemRight,
  386. .memTemplItemLeft, .memTemplItemRight, .memTemplParams {
  387. background-color: #F9FAFC;
  388. border: none;
  389. margin: 4px;
  390. padding: 1px 0 0 8px;
  391. }
  392. .mdescLeft, .mdescRight {
  393. padding: 0px 8px 4px 8px;
  394. color: #555;
  395. }
  396. .memSeparator {
  397. border-bottom: 1px solid #DEE4F0;
  398. line-height: 1px;
  399. margin: 0px;
  400. padding: 0px;
  401. }
  402. .memItemLeft, .memTemplItemLeft {
  403. white-space: nowrap;
  404. }
  405. .memItemRight {
  406. width: 100%;
  407. }
  408. .memTemplParams {
  409. color: #4665A2;
  410. white-space: nowrap;
  411. font-size: 80%;
  412. }
  413. /* @end */
  414. /* @group Member Details */
  415. /* Styles for detailed member documentation */
  416. .memtemplate {
  417. font-size: 80%;
  418. color: #4665A2;
  419. font-weight: normal;
  420. margin-left: 9px;
  421. }
  422. .memnav {
  423. background-color: #EBEFF6;
  424. border: 1px solid #A3B4D7;
  425. text-align: center;
  426. margin: 2px;
  427. margin-right: 15px;
  428. padding: 2px;
  429. }
  430. .mempage {
  431. width: 100%;
  432. }
  433. .memitem {
  434. padding: 0;
  435. margin-bottom: 40px;
  436. margin-right: 5px;
  437. -webkit-transition: box-shadow 0.5s linear;
  438. -moz-transition: box-shadow 0.5s linear;
  439. -ms-transition: box-shadow 0.5s linear;
  440. -o-transition: box-shadow 0.5s linear;
  441. transition: box-shadow 0.5s linear;
  442. display: table !important;
  443. width: 100%;
  444. }
  445. .memitem.glow {
  446. box-shadow: 0 0 15px #c43717;
  447. }
  448. .memname {
  449. font-weight: bold;
  450. margin-left: 6px;
  451. }
  452. .memname td {
  453. vertical-align: bottom;
  454. }
  455. .memproto, dl.reflist dt {
  456. border-top: 1px solid #ddd;
  457. border-left: 1px solid #ddd;
  458. border-right: 1px solid #ddd;
  459. padding: 6px 0px 6px 0px;
  460. color: #253555;
  461. font-weight: bold;
  462. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
  463. background-repeat:repeat-x;
  464. background-color: #EEE;
  465. /* opera specific markup */
  466. border-top-right-radius: 1px;
  467. border-top-left-radius: 1px;
  468. /* firefox specific markup */
  469. -moz-border-radius-topright: 1px;
  470. -moz-border-radius-topleft: 1px;
  471. /* webkit specific markup */
  472. -webkit-border-top-right-radius: 1px;
  473. -webkit-border-top-left-radius: 1px;
  474. }
  475. .memdoc, dl.reflist dd {
  476. border-bottom: 1px solid #ddd;
  477. border-left: 1px solid #ddd;
  478. border-right: 1px solid #ddd;
  479. padding: 6px 10px 2px 10px;
  480. background-color: #FBFBFB;
  481. border-top-width: 0;
  482. background-repeat:repeat-x;
  483. background-color: #FFFFFF;
  484. /* opera specific markup */
  485. border-bottom-left-radius: 2px;
  486. border-bottom-right-radius: 2px;
  487. /* firefox specific markup */
  488. -moz-border-radius-bottomleft: 2px;
  489. -moz-border-radius-bottomright: 2px;
  490. /* webkit specific markup */
  491. -webkit-border-bottom-left-radius: 2px;
  492. -webkit-border-bottom-right-radius: 2px;
  493. }
  494. dl.reflist dt {
  495. padding: 5px;
  496. }
  497. dl.reflist dd {
  498. margin: 0px 0px 10px 0px;
  499. padding: 5px;
  500. }
  501. .paramkey {
  502. text-align: right;
  503. }
  504. .paramtype {
  505. white-space: nowrap;
  506. }
  507. .paramname {
  508. color: #666;
  509. white-space: nowrap;
  510. }
  511. .paramname em {
  512. font-style: normal;
  513. }
  514. .paramname code {
  515. line-height: 14px;
  516. }
  517. .params, .retval, .exception, .tparams {
  518. margin-left: 0px;
  519. padding-left: 0px;
  520. }
  521. .params .paramname, .retval .paramname {
  522. font-weight: bold;
  523. vertical-align: top;
  524. }
  525. .params .paramtype {
  526. font-style: italic;
  527. vertical-align: top;
  528. }
  529. .params .paramdir {
  530. font-family: "courier new",courier,monospace;
  531. vertical-align: top;
  532. }
  533. table.mlabels {
  534. border-spacing: 0px;
  535. }
  536. td.mlabels-left {
  537. width: 100%;
  538. padding: 0px;
  539. }
  540. td.mlabels-right {
  541. display: none;
  542. vertical-align: bottom;
  543. padding: 0px;
  544. white-space: nowrap;
  545. }
  546. span.mlabels {
  547. margin-left: 8px;
  548. }
  549. span.mlabel {
  550. background-color: #728DC1;
  551. border-top:1px solid #5373B4;
  552. border-left:1px solid #5373B4;
  553. border-right:1px solid #C4CFE5;
  554. border-bottom:1px solid #C4CFE5;
  555. text-shadow: none;
  556. color: white;
  557. margin-right: 4px;
  558. padding: 2px 3px;
  559. border-radius: 3px;
  560. font-size: 7pt;
  561. white-space: nowrap;
  562. vertical-align: middle;
  563. }
  564. /* @end */
  565. /* these are for tree view when not used as main index */
  566. div.directory {
  567. margin: 10px 0px;
  568. border-top: 1px solid #A8B8D9;
  569. border-bottom: 1px solid #A8B8D9;
  570. width: 100%;
  571. }
  572. .directory table {
  573. border-collapse:collapse;
  574. }
  575. .directory td {
  576. margin: 0px;
  577. padding: 0px;
  578. vertical-align: top;
  579. }
  580. .directory td.entry {
  581. white-space: nowrap;
  582. padding-right: 6px;
  583. }
  584. .directory td.entry a {
  585. outline:none;
  586. }
  587. .directory td.entry a img {
  588. border: none;
  589. }
  590. .directory td.desc {
  591. width: 100%;
  592. padding-left: 6px;
  593. padding-right: 6px;
  594. padding-top: 3px;
  595. border-left: 1px solid rgba(0,0,0,0.05);
  596. }
  597. .directory tr.even {
  598. padding-left: 6px;
  599. background-color: #F7F8FB;
  600. }
  601. .directory img {
  602. vertical-align: -30%;
  603. }
  604. .directory .levels {
  605. white-space: nowrap;
  606. width: 100%;
  607. text-align: right;
  608. font-size: 9pt;
  609. }
  610. .directory .levels span {
  611. cursor: pointer;
  612. padding-left: 2px;
  613. padding-right: 2px;
  614. color: #3D578C;
  615. }
  616. div.dynheader {
  617. margin-top: 8px;
  618. -webkit-touch-callout: none;
  619. -webkit-user-select: none;
  620. -khtml-user-select: none;
  621. -moz-user-select: none;
  622. -ms-user-select: none;
  623. user-select: none;
  624. }
  625. address {
  626. font-style: normal;
  627. color: #2A3D61;
  628. }
  629. table.doxtable {
  630. border-collapse:collapse;
  631. margin-top: 4px;
  632. margin-bottom: 4px;
  633. }
  634. table.doxtable td, table.doxtable th {
  635. border: 1px solid #2D4068;
  636. padding: 3px 7px 2px;
  637. }
  638. table.doxtable th {
  639. background-color: #374F7F;
  640. color: #FFFFFF;
  641. font-size: 110%;
  642. padding-bottom: 4px;
  643. padding-top: 5px;
  644. }
  645. table.fieldtable {
  646. width: 100%;
  647. margin-bottom: 10px;
  648. border: 1px solid #ddd;
  649. border-spacing: 0px;
  650. -moz-border-radius: 2px;
  651. -webkit-border-radius: 2px;
  652. border-radius: 2px;
  653. }
  654. .fieldtable td, .fieldtable th {
  655. padding: 3px 7px 2px;
  656. }
  657. .fieldtable td.fieldtype, .fieldtable td.fieldname {
  658. white-space: nowrap;
  659. border-right: 1px solid #ddd;
  660. border-bottom: 1px solid #ddd;
  661. vertical-align: top;
  662. }
  663. .fieldtable td.fielddoc {
  664. border-bottom: 1px solid #ddd;
  665. width: 100%;
  666. }
  667. .fieldtable tr:last-child td {
  668. border-bottom: none;
  669. }
  670. .fieldtable th {
  671. background-color: #eee;
  672. font-size: 90%;
  673. color: #253555;
  674. padding-bottom: 4px;
  675. padding-top: 5px;
  676. text-align:left;
  677. -moz-border-radius-topleft: 2px;
  678. -moz-border-radius-topright: 2px;
  679. -webkit-border-top-left-radius: 2px;
  680. -webkit-border-top-right-radius: 2px;
  681. border-top-left-radius: 2px;
  682. border-top-right-radius: 2px;
  683. border-bottom: 1px solid #ddd;
  684. }
  685. .tabsearch {
  686. top: 0px;
  687. left: 10px;
  688. height: 36px;
  689. background-image: url('tab_b.png');
  690. z-index: 101;
  691. overflow: hidden;
  692. font-size: 13px;
  693. }
  694. .navpath ul
  695. {
  696. font-size: 11px;
  697. background-color: #eee;
  698. height:30px;
  699. line-height:30px;
  700. color:#8AA0CC;
  701. border:solid 1px #C2CDE4;
  702. overflow:hidden;
  703. margin:0px;
  704. padding:0px;
  705. }
  706. .navpath li
  707. {
  708. list-style-type:none;
  709. float:left;
  710. padding-left:10px;
  711. padding-right:15px;
  712. background-image:url('bc_s.png');
  713. background-repeat:no-repeat;
  714. background-position:right;
  715. color:#364D7C;
  716. }
  717. .navpath li.navelem a
  718. {
  719. height:32px;
  720. display:block;
  721. text-decoration: none;
  722. outline: none;
  723. color: #283A5D;
  724. font-family: 'Helvetica Neue', Arial, Helvetica, Geneva, sans-serif;
  725. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
  726. text-decoration: none;
  727. }
  728. .navpath li.navelem a:hover
  729. {
  730. color:#6884BD;
  731. }
  732. .navpath li.footer
  733. {
  734. list-style-type:none;
  735. float:right;
  736. padding-left:10px;
  737. padding-right:15px;
  738. background-image:none;
  739. background-repeat:no-repeat;
  740. background-position:right;
  741. color:#364D7C;
  742. font-size: 8pt;
  743. }
  744. code {
  745. background: #f0f6fc;
  746. border: 1px solid #d2dce6;
  747. color: #444;
  748. font-family: Monaco, monospace;
  749. font-size: 11px;
  750. padding: 0;
  751. white-space: nowrap;
  752. }
  753. div.summary
  754. {
  755. float: right;
  756. font-size: 8pt;
  757. padding-right: 5px;
  758. width: 50%;
  759. text-align: right;
  760. }
  761. div.summary a
  762. {
  763. white-space: nowrap;
  764. }
  765. div.ingroups
  766. {
  767. font-size: 8pt;
  768. width: 50%;
  769. text-align: left;
  770. padding-left: 15px;
  771. }
  772. div.ingroups a
  773. {
  774. white-space: nowrap;
  775. }
  776. div.header
  777. {
  778. background-color: #fbfbfb;
  779. margin: 0px;
  780. border-bottom: 1px solid #eee;
  781. padding: 10px 40px;
  782. }
  783. div.headertitle
  784. {
  785. padding: 5px 5px 5px 10px;
  786. }
  787. dl
  788. {
  789. padding: 0 0 0 10px;
  790. }
  791. /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */
  792. dl.section
  793. {
  794. margin-left: 0px;
  795. padding-left: 0px;
  796. }
  797. dl.note
  798. {
  799. margin-left:-7px;
  800. padding-left: 3px;
  801. border-left:4px solid;
  802. border-color: #D0C000;
  803. }
  804. dl.warning, dl.attention
  805. {
  806. margin-left:-7px;
  807. padding-left: 3px;
  808. border-left:4px solid;
  809. border-color: #FF0000;
  810. }
  811. dl.pre, dl.post, dl.invariant
  812. {
  813. margin-left:-7px;
  814. padding-left: 3px;
  815. border-left:4px solid;
  816. border-color: #00D000;
  817. }
  818. dl.deprecated
  819. {
  820. margin-left:-7px;
  821. padding-left: 3px;
  822. border-left:4px solid;
  823. border-color: #505050;
  824. }
  825. dl.todo
  826. {
  827. margin-left:-7px;
  828. padding-left: 3px;
  829. border-left:4px solid;
  830. border-color: #00C0E0;
  831. }
  832. dl.test
  833. {
  834. margin-left:-7px;
  835. padding-left: 3px;
  836. border-left:4px solid;
  837. border-color: #3030E0;
  838. }
  839. dl.bug
  840. {
  841. margin-left:-7px;
  842. padding-left: 3px;
  843. border-left:4px solid;
  844. border-color: #C08050;
  845. }
  846. dl.section dd {
  847. margin-bottom: 6px;
  848. }
  849. #home {
  850. padding: 6px 15px 0 200px;
  851. background: url("navbar-brdr.png") repeat-y right;
  852. }
  853. #projectlogo
  854. {
  855. text-align: center;
  856. vertical-align: bottom;
  857. border-collapse: separate;
  858. }
  859. #projectlogo img
  860. {
  861. border: 0px none;
  862. }
  863. #projectname
  864. {
  865. font: 300% Tahoma, Arial,sans-serif;
  866. margin: 0px;
  867. padding: 2px 0px;
  868. }
  869. #projectbrief
  870. {
  871. font: 120% Tahoma, Arial,sans-serif;
  872. margin: 0px;
  873. padding: 0px;
  874. }
  875. #projectnumber
  876. {
  877. font: 50% Tahoma, Arial,sans-serif;
  878. margin: 0px;
  879. padding: 0px;
  880. }
  881. #titlearea
  882. {
  883. padding: 0px;
  884. margin: 0px;
  885. display: block;
  886. width: 100%;
  887. background: url("bg-navbar.png") repeat-x #b23202;
  888. top: 0;
  889. z-index: 1000;
  890. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  891. -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  892. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  893. }
  894. #MSearchBox {
  895. top: 13px;
  896. }
  897. .image
  898. {
  899. text-align: left;
  900. float: left;
  901. margin-right: 40px;
  902. max-width: 640px;
  903. }
  904. .dotgraph
  905. {
  906. text-align: center;
  907. }
  908. .mscgraph
  909. {
  910. text-align: center;
  911. }
  912. .caption
  913. {
  914. font-weight: bold;
  915. }
  916. div.zoom
  917. {
  918. border: 1px solid #90A5CE;
  919. }
  920. dl.citelist {
  921. margin-bottom:50px;
  922. }
  923. dl.citelist dt {
  924. color:#334975;
  925. float:left;
  926. font-weight:bold;
  927. margin-right:10px;
  928. padding:5px;
  929. }
  930. dl.citelist dd {
  931. margin:2px 0;
  932. padding:5px 0;
  933. }
  934. div.toc {
  935. padding: 14px 25px;
  936. background-color: #F4F6FA;
  937. border: 1px solid #D8DFEE;
  938. border-radius: 7px 7px 7px 7px;
  939. float: right;
  940. height: auto;
  941. margin: 0 20px 10px 10px;
  942. width: 200px;
  943. }
  944. div.toc li {
  945. background: url("bdwn.png") no-repeat scroll 0 5px transparent;
  946. font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
  947. margin-top: 5px;
  948. padding-left: 10px;
  949. padding-top: 2px;
  950. }
  951. div.toc h3 {
  952. font: bold 12px/1.2 Arial,FreeSans,sans-serif;
  953. color: #4665A2;
  954. border-bottom: 0 none;
  955. margin: 0;
  956. }
  957. div.toc ul {
  958. list-style: none outside none;
  959. border: medium none;
  960. padding: 0px;
  961. }
  962. div.toc li.level1 {
  963. margin-left: 0px;
  964. }
  965. div.toc li.level2 {
  966. margin-left: 15px;
  967. }
  968. div.toc li.level3 {
  969. margin-left: 30px;
  970. }
  971. div.toc li.level4 {
  972. margin-left: 45px;
  973. }
  974. .inherit_header {
  975. font-weight: bold;
  976. color: gray;
  977. cursor: pointer;
  978. -webkit-touch-callout: none;
  979. -webkit-user-select: none;
  980. -khtml-user-select: none;
  981. -moz-user-select: none;
  982. -ms-user-select: none;
  983. user-select: none;
  984. }
  985. .inherit_header td {
  986. padding: 6px 0px 2px 5px;
  987. }
  988. .inherit {
  989. display: none;
  990. }
  991. tr.heading h2 {
  992. margin-top: 12px;
  993. margin-bottom: 4px;
  994. }
  995. @media print
  996. {
  997. #top { display: none; }
  998. #side-nav { display: none; }
  999. #nav-path { display: none; }
  1000. body { overflow:visible; }
  1001. h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  1002. .summary { display: none; }
  1003. .memitem { page-break-inside: avoid; }
  1004. #doc-content
  1005. {
  1006. margin-left:0 !important;
  1007. height:auto !important;
  1008. width:auto !important;
  1009. overflow:inherit;
  1010. display:inline;
  1011. }
  1012. }
  1013. /* developer.getpebble.com integration */
  1014. #top {
  1015. height: 41px;
  1016. }
  1017. .navbar-inner {
  1018. border-radius: 0;
  1019. -moz-border-radius: 0;
  1020. -webkit-border-radius: 0;
  1021. }
  1022. #nav-tree .item .label {
  1023. background-color: transparent;
  1024. }
  1025. .doc-nav-searchbox {
  1026. height: 1px;
  1027. }
  1028. #MSearchBox {
  1029. position: relative;
  1030. display: block;
  1031. line-height: 12px;
  1032. }
  1033. #MSearchField {
  1034. font-family: 'ProximaNovaRgRegular', 'Helvetica Neue', Arial, Helvetica, Geneva, sans-serif;
  1035. font-size: 12px;
  1036. padding: 0 0;
  1037. border-radius: 0;
  1038. -moz-border-radius: 0;
  1039. -webkit-border-radius: 0;
  1040. }
  1041. .SelectItem {
  1042. font-family: 'ProximaNovaRgRegular', 'Helvetica Neue', Arial, Helvetica, Geneva, sans-serif;
  1043. }
  1044. .gcolor_sample {
  1045. width: 3em;
  1046. height: 1.3em;
  1047. display: block;
  1048. float: left;
  1049. border: 1px solid #000;
  1050. margin-right: 0.5em;
  1051. }