style.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383
  1. :root {
  2. /* Light */
  3. --light-color-background: #f2f4f8;
  4. --light-color-background-secondary: #eff0f1;
  5. --light-color-warning-text: #222;
  6. --light-color-background-warning: #e6e600;
  7. --light-color-icon-background: var(--light-color-background);
  8. --light-color-accent: #c5c7c9;
  9. --light-color-active-menu-item: var(--light-color-accent);
  10. --light-color-text: #222;
  11. --light-color-text-aside: #6e6e6e;
  12. --light-color-link: #1f70c2;
  13. --light-color-ts-project: #b111c9;
  14. --light-color-ts-module: var(--light-color-ts-project);
  15. --light-color-ts-namespace: var(--light-color-ts-project);
  16. --light-color-ts-enum: #7e6f15;
  17. --light-color-ts-enum-member: var(--light-color-ts-enum);
  18. --light-color-ts-variable: #4760ec;
  19. --light-color-ts-function: #572be7;
  20. --light-color-ts-class: #1f70c2;
  21. --light-color-ts-interface: #108024;
  22. --light-color-ts-constructor: var(--light-color-ts-class);
  23. --light-color-ts-property: var(--light-color-ts-variable);
  24. --light-color-ts-method: var(--light-color-ts-function);
  25. --light-color-ts-call-signature: var(--light-color-ts-method);
  26. --light-color-ts-index-signature: var(--light-color-ts-property);
  27. --light-color-ts-constructor-signature: var(--light-color-ts-constructor);
  28. --light-color-ts-parameter: var(--light-color-ts-variable);
  29. /* type literal not included as links will never be generated to it */
  30. --light-color-ts-type-parameter: var(--light-color-ts-type-alias);
  31. --light-color-ts-accessor: var(--light-color-ts-property);
  32. --light-color-ts-get-signature: var(--light-color-ts-accessor);
  33. --light-color-ts-set-signature: var(--light-color-ts-accessor);
  34. --light-color-ts-type-alias: #d51270;
  35. /* reference not included as links will be colored with the kind that it points to */
  36. --light-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23000' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
  37. --light-color-scheme: light;
  38. /* Dark */
  39. --dark-color-background: #2b2e33;
  40. --dark-color-background-secondary: #1e2024;
  41. --dark-color-background-warning: #bebe00;
  42. --dark-color-warning-text: #222;
  43. --dark-color-icon-background: var(--dark-color-background-secondary);
  44. --dark-color-accent: #9096a2;
  45. --dark-color-active-menu-item: #5d5d6a;
  46. --dark-color-text: #f5f5f5;
  47. --dark-color-text-aside: #dddddd;
  48. --dark-color-link: #00aff4;
  49. --dark-color-ts-project: #e358ff;
  50. --dark-color-ts-module: var(--dark-color-ts-project);
  51. --dark-color-ts-namespace: var(--dark-color-ts-project);
  52. --dark-color-ts-enum: #f4d93e;
  53. --dark-color-ts-enum-member: var(--dark-color-ts-enum);
  54. --dark-color-ts-variable: #798dff;
  55. --dark-color-ts-function: #a280ff;
  56. --dark-color-ts-class: #8ac4ff;
  57. --dark-color-ts-interface: #6cff87;
  58. --dark-color-ts-constructor: var(--dark-color-ts-class);
  59. --dark-color-ts-property: var(--dark-color-ts-variable);
  60. --dark-color-ts-method: var(--dark-color-ts-function);
  61. --dark-color-ts-call-signature: var(--dark-color-ts-method);
  62. --dark-color-ts-index-signature: var(--dark-color-ts-property);
  63. --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
  64. --dark-color-ts-parameter: var(--dark-color-ts-variable);
  65. /* type literal not included as links will never be generated to it */
  66. --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias);
  67. --dark-color-ts-accessor: var(--dark-color-ts-property);
  68. --dark-color-ts-get-signature: var(--dark-color-ts-accessor);
  69. --dark-color-ts-set-signature: var(--dark-color-ts-accessor);
  70. --dark-color-ts-type-alias: #ff6492;
  71. /* reference not included as links will be colored with the kind that it points to */
  72. --dark-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23fff' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
  73. --dark-color-scheme: dark;
  74. }
  75. @media (prefers-color-scheme: light) {
  76. :root {
  77. --color-background: var(--light-color-background);
  78. --color-background-secondary: var(--light-color-background-secondary);
  79. --color-background-warning: var(--light-color-background-warning);
  80. --color-warning-text: var(--light-color-warning-text);
  81. --color-icon-background: var(--light-color-icon-background);
  82. --color-accent: var(--light-color-accent);
  83. --color-active-menu-item: var(--light-color-active-menu-item);
  84. --color-text: var(--light-color-text);
  85. --color-text-aside: var(--light-color-text-aside);
  86. --color-link: var(--light-color-link);
  87. --color-ts-module: var(--light-color-ts-module);
  88. --color-ts-namespace: var(--light-color-ts-namespace);
  89. --color-ts-enum: var(--light-color-ts-enum);
  90. --color-ts-enum-member: var(--light-color-ts-enum-member);
  91. --color-ts-variable: var(--light-color-ts-variable);
  92. --color-ts-function: var(--light-color-ts-function);
  93. --color-ts-class: var(--light-color-ts-class);
  94. --color-ts-interface: var(--light-color-ts-interface);
  95. --color-ts-constructor: var(--light-color-ts-constructor);
  96. --color-ts-property: var(--light-color-ts-property);
  97. --color-ts-method: var(--light-color-ts-method);
  98. --color-ts-call-signature: var(--light-color-ts-call-signature);
  99. --color-ts-index-signature: var(--light-color-ts-index-signature);
  100. --color-ts-constructor-signature: var(
  101. --light-color-ts-constructor-signature
  102. );
  103. --color-ts-parameter: var(--light-color-ts-parameter);
  104. --color-ts-type-parameter: var(--light-color-ts-type-parameter);
  105. --color-ts-accessor: var(--light-color-ts-accessor);
  106. --color-ts-get-signature: var(--light-color-ts-get-signature);
  107. --color-ts-set-signature: var(--light-color-ts-set-signature);
  108. --color-ts-type-alias: var(--light-color-ts-type-alias);
  109. --external-icon: var(--light-external-icon);
  110. --color-scheme: var(--light-color-scheme);
  111. }
  112. }
  113. @media (prefers-color-scheme: dark) {
  114. :root {
  115. --color-background: var(--dark-color-background);
  116. --color-background-secondary: var(--dark-color-background-secondary);
  117. --color-background-warning: var(--dark-color-background-warning);
  118. --color-warning-text: var(--dark-color-warning-text);
  119. --color-icon-background: var(--dark-color-icon-background);
  120. --color-accent: var(--dark-color-accent);
  121. --color-active-menu-item: var(--dark-color-active-menu-item);
  122. --color-text: var(--dark-color-text);
  123. --color-text-aside: var(--dark-color-text-aside);
  124. --color-link: var(--dark-color-link);
  125. --color-ts-module: var(--dark-color-ts-module);
  126. --color-ts-namespace: var(--dark-color-ts-namespace);
  127. --color-ts-enum: var(--dark-color-ts-enum);
  128. --color-ts-enum-member: var(--dark-color-ts-enum-member);
  129. --color-ts-variable: var(--dark-color-ts-variable);
  130. --color-ts-function: var(--dark-color-ts-function);
  131. --color-ts-class: var(--dark-color-ts-class);
  132. --color-ts-interface: var(--dark-color-ts-interface);
  133. --color-ts-constructor: var(--dark-color-ts-constructor);
  134. --color-ts-property: var(--dark-color-ts-property);
  135. --color-ts-method: var(--dark-color-ts-method);
  136. --color-ts-call-signature: var(--dark-color-ts-call-signature);
  137. --color-ts-index-signature: var(--dark-color-ts-index-signature);
  138. --color-ts-constructor-signature: var(
  139. --dark-color-ts-constructor-signature
  140. );
  141. --color-ts-parameter: var(--dark-color-ts-parameter);
  142. --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
  143. --color-ts-accessor: var(--dark-color-ts-accessor);
  144. --color-ts-get-signature: var(--dark-color-ts-get-signature);
  145. --color-ts-set-signature: var(--dark-color-ts-set-signature);
  146. --color-ts-type-alias: var(--dark-color-ts-type-alias);
  147. --external-icon: var(--dark-external-icon);
  148. --color-scheme: var(--dark-color-scheme);
  149. }
  150. }
  151. html {
  152. color-scheme: var(--color-scheme);
  153. }
  154. body {
  155. margin: 0;
  156. }
  157. :root[data-theme="light"] {
  158. --color-background: var(--light-color-background);
  159. --color-background-secondary: var(--light-color-background-secondary);
  160. --color-background-warning: var(--light-color-background-warning);
  161. --color-warning-text: var(--light-color-warning-text);
  162. --color-icon-background: var(--light-color-icon-background);
  163. --color-accent: var(--light-color-accent);
  164. --color-active-menu-item: var(--light-color-active-menu-item);
  165. --color-text: var(--light-color-text);
  166. --color-text-aside: var(--light-color-text-aside);
  167. --color-link: var(--light-color-link);
  168. --color-ts-module: var(--light-color-ts-module);
  169. --color-ts-namespace: var(--light-color-ts-namespace);
  170. --color-ts-enum: var(--light-color-ts-enum);
  171. --color-ts-enum-member: var(--light-color-ts-enum-member);
  172. --color-ts-variable: var(--light-color-ts-variable);
  173. --color-ts-function: var(--light-color-ts-function);
  174. --color-ts-class: var(--light-color-ts-class);
  175. --color-ts-interface: var(--light-color-ts-interface);
  176. --color-ts-constructor: var(--light-color-ts-constructor);
  177. --color-ts-property: var(--light-color-ts-property);
  178. --color-ts-method: var(--light-color-ts-method);
  179. --color-ts-call-signature: var(--light-color-ts-call-signature);
  180. --color-ts-index-signature: var(--light-color-ts-index-signature);
  181. --color-ts-constructor-signature: var(
  182. --light-color-ts-constructor-signature
  183. );
  184. --color-ts-parameter: var(--light-color-ts-parameter);
  185. --color-ts-type-parameter: var(--light-color-ts-type-parameter);
  186. --color-ts-accessor: var(--light-color-ts-accessor);
  187. --color-ts-get-signature: var(--light-color-ts-get-signature);
  188. --color-ts-set-signature: var(--light-color-ts-set-signature);
  189. --color-ts-type-alias: var(--light-color-ts-type-alias);
  190. --external-icon: var(--light-external-icon);
  191. --color-scheme: var(--light-color-scheme);
  192. }
  193. :root[data-theme="dark"] {
  194. --color-background: var(--dark-color-background);
  195. --color-background-secondary: var(--dark-color-background-secondary);
  196. --color-background-warning: var(--dark-color-background-warning);
  197. --color-warning-text: var(--dark-color-warning-text);
  198. --color-icon-background: var(--dark-color-icon-background);
  199. --color-accent: var(--dark-color-accent);
  200. --color-active-menu-item: var(--dark-color-active-menu-item);
  201. --color-text: var(--dark-color-text);
  202. --color-text-aside: var(--dark-color-text-aside);
  203. --color-link: var(--dark-color-link);
  204. --color-ts-module: var(--dark-color-ts-module);
  205. --color-ts-namespace: var(--dark-color-ts-namespace);
  206. --color-ts-enum: var(--dark-color-ts-enum);
  207. --color-ts-enum-member: var(--dark-color-ts-enum-member);
  208. --color-ts-variable: var(--dark-color-ts-variable);
  209. --color-ts-function: var(--dark-color-ts-function);
  210. --color-ts-class: var(--dark-color-ts-class);
  211. --color-ts-interface: var(--dark-color-ts-interface);
  212. --color-ts-constructor: var(--dark-color-ts-constructor);
  213. --color-ts-property: var(--dark-color-ts-property);
  214. --color-ts-method: var(--dark-color-ts-method);
  215. --color-ts-call-signature: var(--dark-color-ts-call-signature);
  216. --color-ts-index-signature: var(--dark-color-ts-index-signature);
  217. --color-ts-constructor-signature: var(
  218. --dark-color-ts-constructor-signature
  219. );
  220. --color-ts-parameter: var(--dark-color-ts-parameter);
  221. --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
  222. --color-ts-accessor: var(--dark-color-ts-accessor);
  223. --color-ts-get-signature: var(--dark-color-ts-get-signature);
  224. --color-ts-set-signature: var(--dark-color-ts-set-signature);
  225. --color-ts-type-alias: var(--dark-color-ts-type-alias);
  226. --external-icon: var(--dark-external-icon);
  227. --color-scheme: var(--dark-color-scheme);
  228. }
  229. .always-visible,
  230. .always-visible .tsd-signatures {
  231. display: inherit !important;
  232. }
  233. h1,
  234. h2,
  235. h3,
  236. h4,
  237. h5,
  238. h6 {
  239. line-height: 1.2;
  240. }
  241. h1 > a,
  242. h2 > a,
  243. h3 > a,
  244. h4 > a,
  245. h5 > a,
  246. h6 > a {
  247. text-decoration: none;
  248. color: var(--color-text);
  249. }
  250. h1 {
  251. font-size: 1.875rem;
  252. margin: 0.67rem 0;
  253. }
  254. h2 {
  255. font-size: 1.5rem;
  256. margin: 0.83rem 0;
  257. }
  258. h3 {
  259. font-size: 1.25rem;
  260. margin: 1rem 0;
  261. }
  262. h4 {
  263. font-size: 1.05rem;
  264. margin: 1.33rem 0;
  265. }
  266. h5 {
  267. font-size: 1rem;
  268. margin: 1.5rem 0;
  269. }
  270. h6 {
  271. font-size: 0.875rem;
  272. margin: 2.33rem 0;
  273. }
  274. .uppercase {
  275. text-transform: uppercase;
  276. }
  277. dl,
  278. menu,
  279. ol,
  280. ul {
  281. margin: 1em 0;
  282. }
  283. dd {
  284. margin: 0 0 0 40px;
  285. }
  286. .container {
  287. max-width: 1700px;
  288. padding: 0 2rem;
  289. }
  290. /* Footer */
  291. .tsd-generator {
  292. border-top: 1px solid var(--color-accent);
  293. padding-top: 1rem;
  294. padding-bottom: 1rem;
  295. max-height: 3.5rem;
  296. }
  297. .tsd-generator > p {
  298. margin-top: 0;
  299. margin-bottom: 0;
  300. padding: 0 1rem;
  301. }
  302. .container-main {
  303. margin: 0 auto;
  304. /* toolbar, footer, margin */
  305. min-height: calc(100vh - 41px - 56px - 4rem);
  306. }
  307. @keyframes fade-in {
  308. from {
  309. opacity: 0;
  310. }
  311. to {
  312. opacity: 1;
  313. }
  314. }
  315. @keyframes fade-out {
  316. from {
  317. opacity: 1;
  318. visibility: visible;
  319. }
  320. to {
  321. opacity: 0;
  322. }
  323. }
  324. @keyframes fade-in-delayed {
  325. 0% {
  326. opacity: 0;
  327. }
  328. 33% {
  329. opacity: 0;
  330. }
  331. 100% {
  332. opacity: 1;
  333. }
  334. }
  335. @keyframes fade-out-delayed {
  336. 0% {
  337. opacity: 1;
  338. visibility: visible;
  339. }
  340. 66% {
  341. opacity: 0;
  342. }
  343. 100% {
  344. opacity: 0;
  345. }
  346. }
  347. @keyframes pop-in-from-right {
  348. from {
  349. transform: translate(100%, 0);
  350. }
  351. to {
  352. transform: translate(0, 0);
  353. }
  354. }
  355. @keyframes pop-out-to-right {
  356. from {
  357. transform: translate(0, 0);
  358. visibility: visible;
  359. }
  360. to {
  361. transform: translate(100%, 0);
  362. }
  363. }
  364. body {
  365. background: var(--color-background);
  366. font-family: "Segoe UI", sans-serif;
  367. font-size: 16px;
  368. color: var(--color-text);
  369. }
  370. a {
  371. color: var(--color-link);
  372. text-decoration: none;
  373. }
  374. a:hover {
  375. text-decoration: underline;
  376. }
  377. a.external[target="_blank"] {
  378. background-image: var(--external-icon);
  379. background-position: top 3px right;
  380. background-repeat: no-repeat;
  381. padding-right: 13px;
  382. }
  383. code,
  384. pre {
  385. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  386. padding: 0.2em;
  387. margin: 0;
  388. font-size: 0.875rem;
  389. border-radius: 0.8em;
  390. }
  391. pre {
  392. position: relative;
  393. white-space: pre;
  394. white-space: pre-wrap;
  395. word-wrap: break-word;
  396. padding: 10px;
  397. border: 1px solid var(--color-accent);
  398. }
  399. pre code {
  400. padding: 0;
  401. font-size: 100%;
  402. }
  403. pre > button {
  404. position: absolute;
  405. top: 10px;
  406. right: 10px;
  407. opacity: 0;
  408. transition: opacity 0.1s;
  409. box-sizing: border-box;
  410. }
  411. pre:hover > button,
  412. pre > button.visible {
  413. opacity: 1;
  414. }
  415. blockquote {
  416. margin: 1em 0;
  417. padding-left: 1em;
  418. border-left: 4px solid gray;
  419. }
  420. .tsd-typography {
  421. line-height: 1.333em;
  422. }
  423. .tsd-typography ul {
  424. list-style: square;
  425. padding: 0 0 0 20px;
  426. margin: 0;
  427. }
  428. .tsd-typography .tsd-index-panel h3,
  429. .tsd-index-panel .tsd-typography h3,
  430. .tsd-typography h4,
  431. .tsd-typography h5,
  432. .tsd-typography h6 {
  433. font-size: 1em;
  434. }
  435. .tsd-typography h5,
  436. .tsd-typography h6 {
  437. font-weight: normal;
  438. }
  439. .tsd-typography p,
  440. .tsd-typography ul,
  441. .tsd-typography ol {
  442. margin: 1em 0;
  443. }
  444. .tsd-typography table {
  445. border-collapse: collapse;
  446. border: none;
  447. }
  448. .tsd-typography td,
  449. .tsd-typography th {
  450. padding: 6px 13px;
  451. border: 1px solid var(--color-accent);
  452. }
  453. .tsd-typography thead,
  454. .tsd-typography tr:nth-child(even) {
  455. background-color: var(--color-background-secondary);
  456. }
  457. .tsd-breadcrumb {
  458. margin: 0;
  459. padding: 0;
  460. color: var(--color-text-aside);
  461. }
  462. .tsd-breadcrumb a {
  463. color: var(--color-text-aside);
  464. text-decoration: none;
  465. }
  466. .tsd-breadcrumb a:hover {
  467. text-decoration: underline;
  468. }
  469. .tsd-breadcrumb li {
  470. display: inline;
  471. }
  472. .tsd-breadcrumb li:after {
  473. content: " / ";
  474. }
  475. .tsd-comment-tags {
  476. display: flex;
  477. flex-direction: column;
  478. }
  479. dl.tsd-comment-tag-group {
  480. display: flex;
  481. align-items: center;
  482. overflow: hidden;
  483. margin: 0.5em 0;
  484. }
  485. dl.tsd-comment-tag-group dt {
  486. display: flex;
  487. margin-right: 0.5em;
  488. font-size: 0.875em;
  489. font-weight: normal;
  490. }
  491. dl.tsd-comment-tag-group dd {
  492. margin: 0;
  493. }
  494. code.tsd-tag {
  495. padding: 0.25em 0.4em;
  496. border: 0.1em solid var(--color-accent);
  497. margin-right: 0.25em;
  498. font-size: 70%;
  499. }
  500. h1 code.tsd-tag:first-of-type {
  501. margin-left: 0.25em;
  502. }
  503. dl.tsd-comment-tag-group dd:before,
  504. dl.tsd-comment-tag-group dd:after {
  505. content: " ";
  506. }
  507. dl.tsd-comment-tag-group dd pre,
  508. dl.tsd-comment-tag-group dd:after {
  509. clear: both;
  510. }
  511. dl.tsd-comment-tag-group p {
  512. margin: 0;
  513. }
  514. .tsd-panel.tsd-comment .lead {
  515. font-size: 1.1em;
  516. line-height: 1.333em;
  517. margin-bottom: 2em;
  518. }
  519. .tsd-panel.tsd-comment .lead:last-child {
  520. margin-bottom: 0;
  521. }
  522. .tsd-filter-visibility h4 {
  523. font-size: 1rem;
  524. padding-top: 0.75rem;
  525. padding-bottom: 0.5rem;
  526. margin: 0;
  527. }
  528. .tsd-filter-item:not(:last-child) {
  529. margin-bottom: 0.5rem;
  530. }
  531. .tsd-filter-input {
  532. display: flex;
  533. width: fit-content;
  534. width: -moz-fit-content;
  535. align-items: center;
  536. user-select: none;
  537. -webkit-user-select: none;
  538. -moz-user-select: none;
  539. -ms-user-select: none;
  540. cursor: pointer;
  541. }
  542. .tsd-filter-input input[type="checkbox"] {
  543. cursor: pointer;
  544. position: absolute;
  545. width: 1.5em;
  546. height: 1.5em;
  547. opacity: 0;
  548. }
  549. .tsd-filter-input input[type="checkbox"]:disabled {
  550. pointer-events: none;
  551. }
  552. .tsd-filter-input svg {
  553. cursor: pointer;
  554. width: 1.5em;
  555. height: 1.5em;
  556. margin-right: 0.5em;
  557. border-radius: 0.33em;
  558. /* Leaving this at full opacity breaks event listeners on Firefox.
  559. Don't remove unless you know what you're doing. */
  560. opacity: 0.99;
  561. }
  562. .tsd-filter-input input[type="checkbox"]:focus + svg {
  563. transform: scale(0.95);
  564. }
  565. .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
  566. transform: scale(1);
  567. }
  568. .tsd-checkbox-background {
  569. fill: var(--color-accent);
  570. }
  571. input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
  572. stroke: var(--color-text);
  573. }
  574. .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
  575. fill: var(--color-background);
  576. stroke: var(--color-accent);
  577. stroke-width: 0.25rem;
  578. }
  579. .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
  580. stroke: var(--color-accent);
  581. }
  582. .tsd-theme-toggle {
  583. padding-top: 0.75rem;
  584. }
  585. .tsd-theme-toggle > h4 {
  586. display: inline;
  587. vertical-align: middle;
  588. margin-right: 0.75rem;
  589. }
  590. .tsd-hierarchy {
  591. list-style: square;
  592. margin: 0;
  593. }
  594. .tsd-hierarchy .target {
  595. font-weight: bold;
  596. }
  597. .tsd-panel-group.tsd-index-group {
  598. margin-bottom: 0;
  599. }
  600. .tsd-index-panel .tsd-index-list {
  601. list-style: none;
  602. line-height: 1.333em;
  603. margin: 0;
  604. padding: 0.25rem 0 0 0;
  605. overflow: hidden;
  606. display: grid;
  607. grid-template-columns: repeat(3, 1fr);
  608. column-gap: 1rem;
  609. grid-template-rows: auto;
  610. }
  611. @media (max-width: 1024px) {
  612. .tsd-index-panel .tsd-index-list {
  613. grid-template-columns: repeat(2, 1fr);
  614. }
  615. }
  616. @media (max-width: 768px) {
  617. .tsd-index-panel .tsd-index-list {
  618. grid-template-columns: repeat(1, 1fr);
  619. }
  620. }
  621. .tsd-index-panel .tsd-index-list li {
  622. -webkit-page-break-inside: avoid;
  623. -moz-page-break-inside: avoid;
  624. -ms-page-break-inside: avoid;
  625. -o-page-break-inside: avoid;
  626. page-break-inside: avoid;
  627. }
  628. .tsd-flag {
  629. display: inline-block;
  630. padding: 0.25em 0.4em;
  631. border-radius: 4px;
  632. color: var(--color-comment-tag-text);
  633. background-color: var(--color-comment-tag);
  634. text-indent: 0;
  635. font-size: 75%;
  636. line-height: 1;
  637. font-weight: normal;
  638. }
  639. .tsd-anchor {
  640. position: relative;
  641. top: -100px;
  642. }
  643. .tsd-member {
  644. position: relative;
  645. }
  646. .tsd-member .tsd-anchor + h3 {
  647. display: flex;
  648. align-items: center;
  649. margin-top: 0;
  650. margin-bottom: 0;
  651. border-bottom: none;
  652. }
  653. .tsd-navigation.settings {
  654. margin: 1rem 0;
  655. }
  656. .tsd-navigation > a,
  657. .tsd-navigation .tsd-accordion-summary {
  658. width: calc(100% - 0.5rem);
  659. }
  660. .tsd-navigation a,
  661. .tsd-navigation summary > span,
  662. .tsd-page-navigation a {
  663. display: inline-flex;
  664. align-items: center;
  665. padding: 0.25rem;
  666. color: var(--color-text);
  667. text-decoration: none;
  668. box-sizing: border-box;
  669. }
  670. .tsd-navigation a.current,
  671. .tsd-page-navigation a.current {
  672. background: var(--color-active-menu-item);
  673. }
  674. .tsd-navigation a:hover,
  675. .tsd-page-navigation a:hover {
  676. text-decoration: underline;
  677. }
  678. .tsd-navigation ul,
  679. .tsd-page-navigation ul {
  680. margin-top: 0;
  681. margin-bottom: 0;
  682. padding: 0;
  683. list-style: none;
  684. }
  685. .tsd-navigation li,
  686. .tsd-page-navigation li {
  687. padding: 0;
  688. max-width: 100%;
  689. }
  690. .tsd-nested-navigation {
  691. margin-left: 3rem;
  692. }
  693. .tsd-nested-navigation > li > details {
  694. margin-left: -1.5rem;
  695. }
  696. .tsd-small-nested-navigation {
  697. margin-left: 1.5rem;
  698. }
  699. .tsd-small-nested-navigation > li > details {
  700. margin-left: -1.5rem;
  701. }
  702. .tsd-nested-navigation > li > a,
  703. .tsd-nested-navigation > li > span {
  704. width: calc(100% - 1.75rem - 0.5rem);
  705. }
  706. .tsd-page-navigation ul {
  707. padding-left: 1.75rem;
  708. }
  709. #tsd-sidebar-links a {
  710. margin-top: 0;
  711. margin-bottom: 0.5rem;
  712. line-height: 1.25rem;
  713. }
  714. #tsd-sidebar-links a:last-of-type {
  715. margin-bottom: 0;
  716. }
  717. a.tsd-index-link {
  718. padding: 0.25rem 0 !important;
  719. font-size: 1rem;
  720. line-height: 1.25rem;
  721. display: inline-flex;
  722. align-items: center;
  723. color: var(--color-text);
  724. }
  725. .tsd-accordion-summary {
  726. list-style-type: none; /* hide marker on non-safari */
  727. outline: none; /* broken on safari, so just hide it */
  728. }
  729. .tsd-accordion-summary::-webkit-details-marker {
  730. display: none; /* hide marker on safari */
  731. }
  732. .tsd-accordion-summary,
  733. .tsd-accordion-summary a {
  734. user-select: none;
  735. -moz-user-select: none;
  736. -webkit-user-select: none;
  737. -ms-user-select: none;
  738. cursor: pointer;
  739. }
  740. .tsd-accordion-summary a {
  741. width: calc(100% - 1.5rem);
  742. }
  743. .tsd-accordion-summary > * {
  744. margin-top: 0;
  745. margin-bottom: 0;
  746. padding-top: 0;
  747. padding-bottom: 0;
  748. }
  749. .tsd-index-accordion .tsd-accordion-summary > svg {
  750. margin-left: 0.25rem;
  751. }
  752. .tsd-index-content > :not(:first-child) {
  753. margin-top: 0.75rem;
  754. }
  755. .tsd-index-heading {
  756. margin-top: 1.5rem;
  757. margin-bottom: 0.75rem;
  758. }
  759. .tsd-kind-icon {
  760. margin-right: 0.5rem;
  761. width: 1.25rem;
  762. height: 1.25rem;
  763. min-width: 1.25rem;
  764. min-height: 1.25rem;
  765. }
  766. .tsd-kind-icon path {
  767. transform-origin: center;
  768. transform: scale(1.1);
  769. }
  770. .tsd-signature > .tsd-kind-icon {
  771. margin-right: 0.8rem;
  772. }
  773. .tsd-panel {
  774. margin-bottom: 2.5rem;
  775. }
  776. .tsd-panel.tsd-member {
  777. margin-bottom: 4rem;
  778. }
  779. .tsd-panel:empty {
  780. display: none;
  781. }
  782. .tsd-panel > h1,
  783. .tsd-panel > h2,
  784. .tsd-panel > h3 {
  785. margin: 1.5rem -1.5rem 0.75rem -1.5rem;
  786. padding: 0 1.5rem 0.75rem 1.5rem;
  787. }
  788. .tsd-panel > h1.tsd-before-signature,
  789. .tsd-panel > h2.tsd-before-signature,
  790. .tsd-panel > h3.tsd-before-signature {
  791. margin-bottom: 0;
  792. border-bottom: none;
  793. }
  794. .tsd-panel-group {
  795. margin: 4rem 0;
  796. }
  797. .tsd-panel-group.tsd-index-group {
  798. margin: 2rem 0;
  799. }
  800. .tsd-panel-group.tsd-index-group details {
  801. margin: 2rem 0;
  802. }
  803. #tsd-search {
  804. transition: background-color 0.2s;
  805. }
  806. #tsd-search .title {
  807. position: relative;
  808. z-index: 2;
  809. }
  810. #tsd-search .field {
  811. position: absolute;
  812. left: 0;
  813. top: 0;
  814. right: 2.5rem;
  815. height: 100%;
  816. }
  817. #tsd-search .field input {
  818. box-sizing: border-box;
  819. position: relative;
  820. top: -50px;
  821. z-index: 1;
  822. width: 100%;
  823. padding: 0 10px;
  824. opacity: 0;
  825. outline: 0;
  826. border: 0;
  827. background: transparent;
  828. color: var(--color-text);
  829. }
  830. #tsd-search .field label {
  831. position: absolute;
  832. overflow: hidden;
  833. right: -40px;
  834. }
  835. #tsd-search .field input,
  836. #tsd-search .title,
  837. #tsd-toolbar-links a {
  838. transition: opacity 0.2s;
  839. }
  840. #tsd-search .results {
  841. position: absolute;
  842. visibility: hidden;
  843. top: 40px;
  844. width: 100%;
  845. margin: 0;
  846. padding: 0;
  847. list-style: none;
  848. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  849. }
  850. #tsd-search .results li {
  851. background-color: var(--color-background);
  852. line-height: initial;
  853. padding: 4px;
  854. }
  855. #tsd-search .results li:nth-child(even) {
  856. background-color: var(--color-background-secondary);
  857. }
  858. #tsd-search .results li.state {
  859. display: none;
  860. }
  861. #tsd-search .results li.current:not(.no-results),
  862. #tsd-search .results li:hover:not(.no-results) {
  863. background-color: var(--color-accent);
  864. }
  865. #tsd-search .results a {
  866. display: flex;
  867. align-items: center;
  868. padding: 0.25rem;
  869. box-sizing: border-box;
  870. }
  871. #tsd-search .results a:before {
  872. top: 10px;
  873. }
  874. #tsd-search .results span.parent {
  875. color: var(--color-text-aside);
  876. font-weight: normal;
  877. }
  878. #tsd-search.has-focus {
  879. background-color: var(--color-accent);
  880. }
  881. #tsd-search.has-focus .field input {
  882. top: 0;
  883. opacity: 1;
  884. }
  885. #tsd-search.has-focus .title,
  886. #tsd-search.has-focus #tsd-toolbar-links a {
  887. z-index: 0;
  888. opacity: 0;
  889. }
  890. #tsd-search.has-focus .results {
  891. visibility: visible;
  892. }
  893. #tsd-search.loading .results li.state.loading {
  894. display: block;
  895. }
  896. #tsd-search.failure .results li.state.failure {
  897. display: block;
  898. }
  899. #tsd-toolbar-links {
  900. position: absolute;
  901. top: 0;
  902. right: 2rem;
  903. height: 100%;
  904. display: flex;
  905. align-items: center;
  906. justify-content: flex-end;
  907. }
  908. #tsd-toolbar-links a {
  909. margin-left: 1.5rem;
  910. }
  911. #tsd-toolbar-links a:hover {
  912. text-decoration: underline;
  913. }
  914. .tsd-signature {
  915. margin: 0 0 1rem 0;
  916. padding: 1rem 0.5rem;
  917. border: 1px solid var(--color-accent);
  918. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  919. font-size: 14px;
  920. overflow-x: auto;
  921. }
  922. .tsd-signature-symbol {
  923. color: var(--color-text-aside);
  924. font-weight: normal;
  925. }
  926. .tsd-signature-type {
  927. font-style: italic;
  928. font-weight: normal;
  929. }
  930. .tsd-signatures {
  931. padding: 0;
  932. margin: 0 0 1em 0;
  933. list-style-type: none;
  934. }
  935. .tsd-signatures .tsd-signature {
  936. margin: 0;
  937. border-color: var(--color-accent);
  938. border-width: 1px 0;
  939. transition: background-color 0.1s;
  940. }
  941. .tsd-description .tsd-signatures .tsd-signature {
  942. border-width: 1px;
  943. }
  944. ul.tsd-parameter-list,
  945. ul.tsd-type-parameter-list {
  946. list-style: square;
  947. margin: 0;
  948. padding-left: 20px;
  949. }
  950. ul.tsd-parameter-list > li.tsd-parameter-signature,
  951. ul.tsd-type-parameter-list > li.tsd-parameter-signature {
  952. list-style: none;
  953. margin-left: -20px;
  954. }
  955. ul.tsd-parameter-list h5,
  956. ul.tsd-type-parameter-list h5 {
  957. font-size: 16px;
  958. margin: 1em 0 0.5em 0;
  959. }
  960. .tsd-sources {
  961. margin-top: 1rem;
  962. font-size: 0.875em;
  963. }
  964. .tsd-sources a {
  965. color: var(--color-text-aside);
  966. text-decoration: underline;
  967. }
  968. .tsd-sources ul {
  969. list-style: none;
  970. padding: 0;
  971. }
  972. .tsd-page-toolbar {
  973. position: sticky;
  974. z-index: 1;
  975. top: 0;
  976. left: 0;
  977. width: 100%;
  978. color: var(--color-text);
  979. background: var(--color-background-secondary);
  980. border-bottom: 1px var(--color-accent) solid;
  981. transition: transform 0.3s ease-in-out;
  982. }
  983. .tsd-page-toolbar a {
  984. color: var(--color-text);
  985. text-decoration: none;
  986. }
  987. .tsd-page-toolbar a.title {
  988. font-weight: bold;
  989. }
  990. .tsd-page-toolbar a.title:hover {
  991. text-decoration: underline;
  992. }
  993. .tsd-page-toolbar .tsd-toolbar-contents {
  994. display: flex;
  995. justify-content: space-between;
  996. height: 2.5rem;
  997. margin: 0 auto;
  998. }
  999. .tsd-page-toolbar .table-cell {
  1000. position: relative;
  1001. white-space: nowrap;
  1002. line-height: 40px;
  1003. }
  1004. .tsd-page-toolbar .table-cell:first-child {
  1005. width: 100%;
  1006. }
  1007. .tsd-page-toolbar .tsd-toolbar-icon {
  1008. box-sizing: border-box;
  1009. line-height: 0;
  1010. padding: 12px 0;
  1011. }
  1012. .tsd-widget {
  1013. display: inline-block;
  1014. overflow: hidden;
  1015. opacity: 0.8;
  1016. height: 40px;
  1017. transition:
  1018. opacity 0.1s,
  1019. background-color 0.2s;
  1020. vertical-align: bottom;
  1021. cursor: pointer;
  1022. }
  1023. .tsd-widget:hover {
  1024. opacity: 0.9;
  1025. }
  1026. .tsd-widget.active {
  1027. opacity: 1;
  1028. background-color: var(--color-accent);
  1029. }
  1030. .tsd-widget.no-caption {
  1031. width: 40px;
  1032. }
  1033. .tsd-widget.no-caption:before {
  1034. margin: 0;
  1035. }
  1036. .tsd-widget.options,
  1037. .tsd-widget.menu {
  1038. display: none;
  1039. }
  1040. input[type="checkbox"] + .tsd-widget:before {
  1041. background-position: -120px 0;
  1042. }
  1043. input[type="checkbox"]:checked + .tsd-widget:before {
  1044. background-position: -160px 0;
  1045. }
  1046. img {
  1047. max-width: 100%;
  1048. }
  1049. .tsd-anchor-icon {
  1050. display: inline-flex;
  1051. align-items: center;
  1052. margin-left: 0.5rem;
  1053. vertical-align: middle;
  1054. color: var(--color-text);
  1055. }
  1056. .tsd-anchor-icon svg {
  1057. width: 1em;
  1058. height: 1em;
  1059. visibility: hidden;
  1060. }
  1061. .tsd-anchor-link:hover > .tsd-anchor-icon svg {
  1062. visibility: visible;
  1063. }
  1064. .deprecated {
  1065. text-decoration: line-through !important;
  1066. }
  1067. .warning {
  1068. padding: 1rem;
  1069. color: var(--color-warning-text);
  1070. background: var(--color-background-warning);
  1071. }
  1072. .tsd-kind-project {
  1073. color: var(--color-ts-project);
  1074. }
  1075. .tsd-kind-module {
  1076. color: var(--color-ts-module);
  1077. }
  1078. .tsd-kind-namespace {
  1079. color: var(--color-ts-namespace);
  1080. }
  1081. .tsd-kind-enum {
  1082. color: var(--color-ts-enum);
  1083. }
  1084. .tsd-kind-enum-member {
  1085. color: var(--color-ts-enum-member);
  1086. }
  1087. .tsd-kind-variable {
  1088. color: var(--color-ts-variable);
  1089. }
  1090. .tsd-kind-function {
  1091. color: var(--color-ts-function);
  1092. }
  1093. .tsd-kind-class {
  1094. color: var(--color-ts-class);
  1095. }
  1096. .tsd-kind-interface {
  1097. color: var(--color-ts-interface);
  1098. }
  1099. .tsd-kind-constructor {
  1100. color: var(--color-ts-constructor);
  1101. }
  1102. .tsd-kind-property {
  1103. color: var(--color-ts-property);
  1104. }
  1105. .tsd-kind-method {
  1106. color: var(--color-ts-method);
  1107. }
  1108. .tsd-kind-call-signature {
  1109. color: var(--color-ts-call-signature);
  1110. }
  1111. .tsd-kind-index-signature {
  1112. color: var(--color-ts-index-signature);
  1113. }
  1114. .tsd-kind-constructor-signature {
  1115. color: var(--color-ts-constructor-signature);
  1116. }
  1117. .tsd-kind-parameter {
  1118. color: var(--color-ts-parameter);
  1119. }
  1120. .tsd-kind-type-literal {
  1121. color: var(--color-ts-type-literal);
  1122. }
  1123. .tsd-kind-type-parameter {
  1124. color: var(--color-ts-type-parameter);
  1125. }
  1126. .tsd-kind-accessor {
  1127. color: var(--color-ts-accessor);
  1128. }
  1129. .tsd-kind-get-signature {
  1130. color: var(--color-ts-get-signature);
  1131. }
  1132. .tsd-kind-set-signature {
  1133. color: var(--color-ts-set-signature);
  1134. }
  1135. .tsd-kind-type-alias {
  1136. color: var(--color-ts-type-alias);
  1137. }
  1138. /* if we have a kind icon, don't color the text by kind */
  1139. .tsd-kind-icon ~ span {
  1140. color: var(--color-text);
  1141. }
  1142. * {
  1143. scrollbar-width: thin;
  1144. scrollbar-color: var(--color-accent) var(--color-icon-background);
  1145. }
  1146. *::-webkit-scrollbar {
  1147. width: 0.75rem;
  1148. }
  1149. *::-webkit-scrollbar-track {
  1150. background: var(--color-icon-background);
  1151. }
  1152. *::-webkit-scrollbar-thumb {
  1153. background-color: var(--color-accent);
  1154. border-radius: 999rem;
  1155. border: 0.25rem solid var(--color-icon-background);
  1156. }
  1157. /* mobile */
  1158. @media (max-width: 769px) {
  1159. .tsd-widget.options,
  1160. .tsd-widget.menu {
  1161. display: inline-block;
  1162. }
  1163. .container-main {
  1164. display: flex;
  1165. }
  1166. html .col-content {
  1167. float: none;
  1168. max-width: 100%;
  1169. width: 100%;
  1170. }
  1171. html .col-sidebar {
  1172. position: fixed !important;
  1173. overflow-y: auto;
  1174. -webkit-overflow-scrolling: touch;
  1175. z-index: 1024;
  1176. top: 0 !important;
  1177. bottom: 0 !important;
  1178. left: auto !important;
  1179. right: 0 !important;
  1180. padding: 1.5rem 1.5rem 0 0;
  1181. width: 75vw;
  1182. visibility: hidden;
  1183. background-color: var(--color-background);
  1184. transform: translate(100%, 0);
  1185. }
  1186. html .col-sidebar > *:last-child {
  1187. padding-bottom: 20px;
  1188. }
  1189. html .overlay {
  1190. content: "";
  1191. display: block;
  1192. position: fixed;
  1193. z-index: 1023;
  1194. top: 0;
  1195. left: 0;
  1196. right: 0;
  1197. bottom: 0;
  1198. background-color: rgba(0, 0, 0, 0.75);
  1199. visibility: hidden;
  1200. }
  1201. .to-has-menu .overlay {
  1202. animation: fade-in 0.4s;
  1203. }
  1204. .to-has-menu .col-sidebar {
  1205. animation: pop-in-from-right 0.4s;
  1206. }
  1207. .from-has-menu .overlay {
  1208. animation: fade-out 0.4s;
  1209. }
  1210. .from-has-menu .col-sidebar {
  1211. animation: pop-out-to-right 0.4s;
  1212. }
  1213. .has-menu body {
  1214. overflow: hidden;
  1215. }
  1216. .has-menu .overlay {
  1217. visibility: visible;
  1218. }
  1219. .has-menu .col-sidebar {
  1220. visibility: visible;
  1221. transform: translate(0, 0);
  1222. display: flex;
  1223. flex-direction: column;
  1224. gap: 1.5rem;
  1225. max-height: 100vh;
  1226. padding: 1rem 2rem;
  1227. }
  1228. .has-menu .tsd-navigation {
  1229. max-height: 100%;
  1230. }
  1231. }
  1232. /* one sidebar */
  1233. @media (min-width: 770px) {
  1234. .container-main {
  1235. display: grid;
  1236. grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  1237. grid-template-areas: "sidebar content";
  1238. margin: 2rem auto;
  1239. }
  1240. .col-sidebar {
  1241. grid-area: sidebar;
  1242. }
  1243. .col-content {
  1244. grid-area: content;
  1245. padding: 0 1rem;
  1246. }
  1247. }
  1248. @media (min-width: 770px) and (max-width: 1399px) {
  1249. .col-sidebar {
  1250. max-height: calc(100vh - 2rem - 42px);
  1251. overflow: auto;
  1252. position: sticky;
  1253. top: 42px;
  1254. padding-top: 1rem;
  1255. }
  1256. .site-menu {
  1257. margin-top: 1rem;
  1258. }
  1259. }
  1260. /* two sidebars */
  1261. @media (min-width: 1200px) {
  1262. .container-main {
  1263. grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem);
  1264. grid-template-areas: "sidebar content toc";
  1265. }
  1266. .col-sidebar {
  1267. display: contents;
  1268. }
  1269. .page-menu {
  1270. grid-area: toc;
  1271. padding-left: 1rem;
  1272. }
  1273. .site-menu {
  1274. grid-area: sidebar;
  1275. }
  1276. .site-menu {
  1277. margin-top: 1rem 0;
  1278. }
  1279. .page-menu,
  1280. .site-menu {
  1281. max-height: calc(100vh - 2rem - 42px);
  1282. overflow: auto;
  1283. position: sticky;
  1284. top: 42px;
  1285. }
  1286. }