Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 8.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  1. body {
  2. max-width: 80em;
  3. margin: 0;
  4. margin-left: auto;
  5. margin-right: auto;
  6. background: #FFF;
  7. color: #000;
  8. }
  9. #titlearea {
  10. display: none;
  11. }
  12. h1 {
  13. font-size: 180%;
  14. font-weight: 900;
  15. }
  16. h2 {
  17. font-size: 140%;
  18. font-weight: 700;
  19. }
  20. h3 {
  21. font-size: 120%;
  22. font-weight: 700;
  23. }
  24. h4 {
  25. font-size: 110%;
  26. font-weight: 700;
  27. }
  28. h5 {
  29. font-size: 100%;
  30. font-weight: 700;
  31. }
  32. h6 {
  33. font-size: 100%;
  34. font-weight: 600;
  35. }
  36. p {
  37. margin: 0 0 1em 0;
  38. }
  39. dt {
  40. font-weight: 700;
  41. }
  42. p.startli,p.startdd,p.starttd {
  43. margin-top: 2px;
  44. }
  45. p.endli {
  46. margin-bottom: 0;
  47. }
  48. p.enddd {
  49. margin-bottom: 4px;
  50. }
  51. p.endtd {
  52. margin-bottom: 2px;
  53. }
  54. caption {
  55. font-weight: 700;
  56. }
  57. span.legend {
  58. font-size: small;
  59. text-align: center;
  60. }
  61. h3.version {
  62. font-size: small;
  63. text-align: center;
  64. }
  65. div.qindex,div.navtab {
  66. background-color: #EBEFF6;
  67. border: 1px solid #A3B4D7;
  68. text-align: center;
  69. margin: 2px;
  70. padding: 2px;
  71. }
  72. div.navtab {
  73. margin-right: 15px;
  74. }
  75. /* @group Link Styling */
  76. a {
  77. color: #546E00;
  78. text-decoration: none;
  79. }
  80. .contents a:visited {
  81. color: #344E00;
  82. }
  83. a:hover {
  84. text-decoration: underline;
  85. }
  86. a.qindexHL {
  87. background-color: #9CAFD4;
  88. color: #FFF;
  89. border: 1px double #869DCA;
  90. }
  91. code {
  92. color: #444;
  93. }
  94. a.code {
  95. color: #4665A2;
  96. }
  97. a.codeRef {
  98. color: #4665A2;
  99. }
  100. /* @end */
  101. dl.el {
  102. margin-left: -1cm;
  103. }
  104. .fragment {
  105. font-family: monospace, fixed;
  106. }
  107. pre.fragment {
  108. border: 1px solid #C4C4C4;
  109. background-color: #F9F9F9;
  110. padding: 4px 6px;
  111. margin: 4px 8px 4px 2px;
  112. overflow: auto;
  113. line-height: 125%;
  114. }
  115. div.ah {
  116. background-color: #000;
  117. font-weight: 700;
  118. color: #FFF;
  119. margin-bottom: 3px;
  120. margin-top: 3px;
  121. padding: .2em;
  122. border: thin solid #333;
  123. }
  124. div.groupHeader {
  125. margin-left: 16px;
  126. margin-top: 12px;
  127. margin-bottom: 6px;
  128. font-weight: 700;
  129. }
  130. a + h2.groupheader {
  131. display: none;
  132. }
  133. div.groupText {
  134. margin-left: 16px;
  135. font-style: italic;
  136. }
  137. div.contents {
  138. margin-top: 10px;
  139. margin-left: 10px;
  140. margin-right: 10px;
  141. }
  142. td.indexkey {
  143. background-color: #EBEFF6;
  144. font-weight: 700;
  145. border: 1px solid #C4CFE5;
  146. margin: 2px 0;
  147. padding: 2px 10px;
  148. }
  149. td.indexvalue {
  150. background-color: #EBEFF6;
  151. border: 1px solid #C4CFE5;
  152. padding: 2px 10px;
  153. margin: 2px 0;
  154. }
  155. tr.memlist {
  156. background-color: #EEF1F7;
  157. }
  158. p.formulaDsp {
  159. text-align: center;
  160. }
  161. img.formulaInl {
  162. vertical-align: middle;
  163. }
  164. div.center {
  165. text-align: center;
  166. margin-top: 0;
  167. margin-bottom: 0;
  168. padding: 0;
  169. }
  170. div.center img {
  171. border: 0;
  172. }
  173. address.footer {
  174. text-align: right;
  175. padding-right: 12px;
  176. }
  177. img.footer {
  178. border: 0;
  179. vertical-align: middle;
  180. }
  181. /* @group Code Colorization */
  182. span.keyword {
  183. color: green;
  184. }
  185. span.keywordtype {
  186. color: #3E873E;
  187. }
  188. span.keywordflow {
  189. color: #e08000;
  190. }
  191. span.comment {
  192. color: maroon;
  193. }
  194. span.preprocessor {
  195. color: #806020;
  196. }
  197. span.stringliteral {
  198. color: #002080;
  199. }
  200. span.charliteral {
  201. color: teal;
  202. }
  203. span.vhdldigit {
  204. color: #F0F;
  205. }
  206. span.vhdlkeyword {
  207. color: #700070;
  208. }
  209. span.vhdllogic {
  210. color: red;
  211. }
  212. /* @end */
  213. td.tiny {
  214. font-size: x-small;
  215. }
  216. .dirtab {
  217. padding: 4px;
  218. border-collapse: collapse;
  219. border: 1px solid #A3B4D7;
  220. }
  221. th.dirtab {
  222. background: #EBEFF6;
  223. font-weight: 700;
  224. }
  225. hr {
  226. height: 0;
  227. border: none;
  228. border-top: 1px solid #DDD;
  229. margin: 2em 0 1em;
  230. }
  231. hr.footer {
  232. height: 1px;
  233. }
  234. /* @group Member Descriptions */
  235. table.memberdecls {
  236. border-spacing: 0.125em;
  237. }
  238. h2.groupheader {
  239. margin: 0.5em 0 0.25em 0;
  240. }
  241. .mdescLeft,.mdescRight,.memItemLeft,.memItemRight,.memTemplItemLeft,.memTemplItemRight,.memTemplParams {
  242. margin: 0;
  243. padding: 0;
  244. }
  245. .mdescLeft,.mdescRight {
  246. color: #555;
  247. }
  248. .memItemLeft,.memItemRight,.memTemplParams {
  249. border: 0;
  250. font-family: monospace, fixed;
  251. }
  252. .memItemLeft,.memTemplItemLeft {
  253. white-space: nowrap;
  254. padding-left: 2em;
  255. padding-right: 1em;
  256. }
  257. .memItemLeft a.el {
  258. font-weight: bold;
  259. }
  260. .memTemplParams {
  261. color: #464646;
  262. white-space: nowrap;
  263. }
  264. td.memSeparator {
  265. display: none;
  266. }
  267. td.mlabels-right {
  268. vertical-align: top;
  269. padding-top: 4px;
  270. color: #AA6;
  271. }
  272. .memtitle {
  273. display: none;
  274. }
  275. /* @end */
  276. /* @group Member Details */
  277. /* Styles for detailed member documentation */
  278. .memtemplate {
  279. color: #4665A2;
  280. font-weight: bold;
  281. }
  282. .memnav {
  283. background-color: #EBEFF6;
  284. border: 1px solid #A3B4D7;
  285. text-align: center;
  286. margin: 2px;
  287. margin-right: 15px;
  288. padding: 2px;
  289. }
  290. .memitem {
  291. padding: 0;
  292. margin: 1em 0 1em 0;
  293. }
  294. .memproto {
  295. padding: 0;
  296. font-weight: bold;
  297. color: #000;
  298. }
  299. .memproto .paramname {
  300. color: #444;
  301. font-style: normal;
  302. }
  303. .memdoc {
  304. padding: 0 0 0.5em 2em;
  305. }
  306. .paramkey {
  307. text-align: right;
  308. }
  309. .paramtype {
  310. color: #3E873E;
  311. white-space: nowrap;
  312. }
  313. .paramname {
  314. color: #444;
  315. white-space: nowrap;
  316. font-weight: bold;
  317. }
  318. td.paramname {
  319. vertical-align: top;
  320. }
  321. .fieldname {
  322. color: #000;
  323. }
  324. td.fieldname {
  325. padding-right: 1em;
  326. vertical-align: top;
  327. }
  328. td.fieldtype {
  329. vertical-align: top;
  330. color: #444;
  331. padding-right: 0.5em;
  332. }
  333. td.fielddoc p {
  334. margin: 0;
  335. }
  336. /* @end */
  337. /* @group Directory (tree) */
  338. /* for the tree view */
  339. .ftvtree {
  340. font-family: sans-serif;
  341. margin: 0;
  342. }
  343. /* these are for tree view when used as main index */
  344. .directory {
  345. font-size: small;
  346. margin: 0.5em;
  347. }
  348. .directory h3 {
  349. margin: 0;
  350. margin-top: 1em;
  351. font-size: 11pt;
  352. }
  353. .directory > h3 {
  354. margin-top: 0;
  355. }
  356. .directory p {
  357. margin: 0;
  358. white-space: nowrap;
  359. }
  360. .directory div {
  361. display: none;
  362. margin: 0;
  363. }
  364. .directory img {
  365. vertical-align: -30%;
  366. }
  367. /* these are for tree view when not used as main index */
  368. .directory-alt {
  369. font-size: 100%;
  370. font-weight: bold;
  371. }
  372. .directory-alt h3 {
  373. margin: 0;
  374. margin-top: 1em;
  375. font-size: 11pt;
  376. }
  377. .directory-alt > h3 {
  378. margin-top: 0;
  379. }
  380. .directory-alt p {
  381. margin: 0;
  382. white-space: nowrap;
  383. }
  384. .directory-alt div {
  385. display: none;
  386. margin: 0;
  387. }
  388. .directory-alt img {
  389. vertical-align: -30%;
  390. }
  391. /* @end */
  392. div.dynheader {
  393. margin-top: 8px;
  394. }
  395. address {
  396. font-style: normal;
  397. color: #2A3D61;
  398. }
  399. table.doxtable {
  400. border-collapse: collapse;
  401. margin: 0.5em;
  402. }
  403. table.doxtable td,table.doxtable th {
  404. border: 1px solid #DDD;
  405. padding: 3px 7px 2px;
  406. }
  407. table.doxtable th {
  408. background-color: #F3F3F3;
  409. color: #000;
  410. padding-bottom: 4px;
  411. padding-top: 5px;
  412. text-align: left;
  413. font-weight: bold;
  414. }
  415. .tabsearch {
  416. top: 0;
  417. left: 10px;
  418. height: 36px;
  419. z-index: 101;
  420. overflow: hidden;
  421. font-size: 13px;
  422. }
  423. div.navpath {
  424. padding: 0.25em;
  425. }
  426. .navpath ul {
  427. font-size: x-small;
  428. color: #8AA0CC;
  429. overflow: hidden;
  430. margin: 0;
  431. padding: 0;
  432. }
  433. .navpath li {
  434. list-style-type: none;
  435. float: left;
  436. padding-left: 10px;
  437. padding-right: 15px;
  438. color: #364D7C;
  439. }
  440. .navpath a {
  441. display: block;
  442. text-decoration: none;
  443. outline: none;
  444. }
  445. .navpath a:hover {
  446. color: #6884BD;
  447. }
  448. div.summary {
  449. float: right;
  450. font-size: x-small;
  451. padding: 0.25em 0.5em 0 0;
  452. width: 50%;
  453. text-align: right;
  454. }
  455. div.summary a {
  456. white-space: nowrap;
  457. }
  458. div.header {
  459. background-color: #F3F3F3;
  460. margin: 0;
  461. border: 0;
  462. }
  463. div.headertitle {
  464. font-size: 180%;
  465. font-weight: bold;
  466. color: #FFF;
  467. padding: 0.125em 0.25em 0.125em 0.25em;
  468. background-color: #333;
  469. background: linear-gradient(to bottom, #333 0%, #111 100%);
  470. border: solid 1px #444;
  471. border-top: 0;
  472. border-radius: 0 0 6px 6px;
  473. }
  474. div.line {
  475. font-family: monospace, fixed;
  476. font-size: 13px;
  477. min-height: 13px;
  478. line-height: 1.0;
  479. text-wrap: avoid;
  480. white-space: pre-wrap;
  481. text-indent: -53px;
  482. padding-left: 53px;
  483. padding-bottom: 0;
  484. margin: 0;
  485. }
  486. .glow {
  487. background-color: cyan;
  488. box-shadow: 0 0 10px cyan;
  489. }
  490. span.lineno {
  491. padding-right: 4px;
  492. text-align: right;
  493. border-right: 2px solid #0F0;
  494. background-color: #E8E8E8;
  495. white-space: pre;
  496. }
  497. span.lineno a {
  498. background-color: #D8D8D8;
  499. }
  500. span.lineno a:hover {
  501. background-color: #C8C8C8;
  502. }
  503. .tabs, .tabs2, .navpath {
  504. background-image: none;
  505. background-color: #333;
  506. background: linear-gradient(to bottom, #333 0%, #111 100%);
  507. border: 0;
  508. border-bottom: solid 2px #000;
  509. padding: 0;
  510. padding-top: 2px;
  511. font-size: small;
  512. }
  513. #navrow1 {
  514. border: 0;
  515. }
  516. th {
  517. text-align: left;
  518. }
  519. .mlabel {
  520. padding: 0.125em;
  521. }
  522. /* tabs*/
  523. .tablist {
  524. margin: 0;
  525. padding: 0;
  526. display: table;
  527. }
  528. .tablist li {
  529. display: table-cell;
  530. line-height: 2em;
  531. list-style: none;
  532. background-color: #333;
  533. background: linear-gradient(to bottom, #444 0%, #222 100%);
  534. border: 1px solid #222;
  535. border-bottom: 0;
  536. border-radius: 6px 6px 0 0;
  537. color: #DDD;
  538. }
  539. .tablist a {
  540. display: block;
  541. padding: 0 20px;
  542. font-weight: bold;
  543. color: #859900;
  544. text-decoration: none;
  545. outline: none;
  546. }
  547. .header a {
  548. color: #859900;
  549. }
  550. .tabs3 .tablist a {
  551. padding: 0 10px;
  552. }
  553. .tablist a:hover {
  554. color: #fff;
  555. text-shadow: 0 1px 1px rgba(0, 0, 0, 1.0);
  556. text-decoration: none;
  557. }
  558. .tablist li.current a {
  559. color: #fff;
  560. text-shadow: 0 1px 1px rgba(0, 0, 0, 1.0);
  561. }
  562. span.icon {
  563. display: none;
  564. }