index.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163
  1. @import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
  2. @import url("https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap");
  3. :root {
  4. --bg-color: #2e323b;
  5. --bg-accent-color: #1d2025;
  6. --bg-accent-color-darker: #111316;
  7. --bg-accent-color-sidenav-opened: #4e535c;
  8. --bg-accent-color-darker-sidenav-opened: #5e646e;
  9. --bg-color-sidenav-opened: #616774;
  10. --header-bg-color: #0b1031;
  11. --header-bg-color-sidenav-opened: #0b1031;
  12. --doc-header-color: #5a83c0;
  13. --header-height: 50px;
  14. --accent-color: #8a2be2;
  15. --accent-color-light: #b05ffc;
  16. --accent-color-sidenav-opened: #a779d3;
  17. --doc-header-font-size: 29px;
  18. --doc-sub-header-font-size: 22px;
  19. --sidenav-animation-speed: 0.15s;
  20. --sidenav-colorblur-speed: 0.5s;
  21. --targetblink-animation-delay: 0.5s;
  22. --scrollbar-track-color: #222;
  23. --scrollbar-thumb-color: rgba(175, 175, 175, 0.7);
  24. --scrollbar-webkit-hover-color: rgba(65, 131, 196, 0.8);
  25. --line-height: calc(100% + 6px);
  26. }
  27. @font-face {
  28. font-family: "Cascadia Code";
  29. src: url("./cascadia-code.ttf"); /* URL can't have the "./static/" path since this CSS file is already loaded from "./static/" */
  30. }
  31. #submissions-hidden {
  32. display: none;
  33. }
  34. /* #MARKER BEGIN */
  35. html,
  36. body,
  37. #main {
  38. scroll-behavior: smooth;
  39. }
  40. body {
  41. margin: 0;
  42. background-color: var(--bg-color);
  43. color: #fff;
  44. font-family: "Roboto", "Segoe UI", "Arial", sans-serif;
  45. font-size: 18px;
  46. line-height: var(--line-height);
  47. font-weight: 200;
  48. overflow-y: hidden;
  49. transition: background-color ease-out var(--sidenav-colorblur-speed);
  50. /* Ah yes web development */
  51. -webkit-touch-callout: inherit;
  52. -webkit-user-select: inherit;
  53. -khtml-user-select: inherit;
  54. -moz-user-select: inherit;
  55. -ms-user-select: inherit;
  56. user-select: inherit;
  57. }
  58. .noselect {
  59. -webkit-touch-callout: none;
  60. -webkit-user-select: none;
  61. -khtml-user-select: none;
  62. -moz-user-select: none;
  63. -ms-user-select: none;
  64. user-select: none;
  65. }
  66. .noa {
  67. color: inherit;
  68. }
  69. .noul,
  70. .mimica {
  71. cursor: pointer;
  72. }
  73. a:not(.noul),
  74. .mimica:not(.noul) {
  75. color: #8f9aff;
  76. text-decoration: none;
  77. }
  78. a:not(.noul):hover,
  79. .mimica:not(.noul):hover {
  80. color: #bcc2ff;
  81. text-decoration: underline;
  82. }
  83. .rtext {
  84. text-align: right;
  85. }
  86. .blackshadow {
  87. text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
  88. 1px 1px 0 #000;
  89. }
  90. .whiteshadow {
  91. text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
  92. 1px 1px 0 #fff;
  93. }
  94. body[data-sidenav="opened"] {
  95. background-color: var(--bg-color-sidenav-opened);
  96. -webkit-touch-callout: none;
  97. -webkit-user-select: none;
  98. -khtml-user-select: none;
  99. -moz-user-select: none;
  100. -ms-user-select: none;
  101. user-select: none;
  102. }
  103. body[data-sidenav="closed"] {
  104. background-color: var(--bg-color);
  105. -webkit-touch-callout: inherit;
  106. -webkit-user-select: inherit;
  107. -khtml-user-select: inherit;
  108. -moz-user-select: inherit;
  109. -ms-user-select: inherit;
  110. user-select: inherit;
  111. }
  112. .lText {
  113. font-size: 120%;
  114. }
  115. /*#MARKER scrollbar*/
  116. ::-webkit-scrollbar {
  117. max-width: 10px !important;
  118. max-height: 10px !important;
  119. background: var(--scrollbar-track-color) !important;
  120. }
  121. ::-webkit-scrollbar-track,
  122. ::-webkit-scrollbar-corner {
  123. background: var(--scrollbar-track-color) !important;
  124. }
  125. ::-webkit-scrollbar-thumb {
  126. background: var(--scrollbar-thumb-color) !important;
  127. }
  128. ::-webkit-scrollbar-thumb:hover {
  129. background: var(--scrollbar-webkit-hover-color) !important;
  130. }
  131. :root {
  132. scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color) !important;
  133. scrollbar-width: thin !important;
  134. }
  135. /*#MARKER header*/
  136. header {
  137. /* position: -webkit-sticky;
  138. position: sticky; */
  139. position: relative;
  140. top: 0;
  141. left: 0;
  142. background-color: var(--header-bg-color);
  143. /* background: linear-gradient(0deg, rgba(255,213,0,1) 0%, rgba(255,213,0,1) 50%, rgba(0,91,187,1) 50%, rgba(0,91,187,1) 100%); */
  144. color: white;
  145. text-shadow: -1px -1px 0px #000, 0px -1px 0px #000, 1px -1px 0px #000,
  146. -1px 0px 0px #000, 1px 0px 0px #000, -1px 1px 0px #000, 0px 1px 0px #000,
  147. 1px 1px 0px #000;
  148. z-index: 1000;
  149. transition: filter ease-out var(--sidenav-colorblur-speed),
  150. width linear var(--sidenav-animation-speed);
  151. display: flex;
  152. flex-direction: row;
  153. flex-wrap: nowrap;
  154. width: 100%;
  155. height: var(--header-height);
  156. filter: grayscale(0%) drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
  157. line-height: initial;
  158. }
  159. header[data-grayscaled="true"] {
  160. /* filter: grayscale(100%) drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3)); */
  161. /* background-color: var(--header-bg-color-sidenav-opened); */
  162. width: 100%;
  163. }
  164. header .headeritem {
  165. display: inline-block;
  166. white-space: nowrap;
  167. flex-grow: 0;
  168. padding-top: 5px;
  169. padding-bottom: 5px;
  170. width: 100%;
  171. }
  172. header .headeritem.m {
  173. flex-grow: 1;
  174. text-align: center;
  175. }
  176. header .headeritem.r {
  177. text-align: right;
  178. }
  179. header #docTitle {
  180. cursor: pointer;
  181. margin: 0;
  182. font-size: 30px;
  183. color: #fff;
  184. }
  185. #headerversion {
  186. font-size: 18px;
  187. display: inline-block;
  188. padding-right: 10px;
  189. }
  190. #headerVersionNumber {
  191. font-size: 15px;
  192. padding-right: 6px;
  193. }
  194. #changelogLink {
  195. font-size: 15px;
  196. }
  197. #headersidenavopenwrapper {
  198. padding-left: 10px;
  199. }
  200. #docTitle {
  201. cursor: pointer;
  202. display: inline-block;
  203. color: #fff;
  204. white-space: nowrap;
  205. transition: color 0.4s linear, filter 0.2s linear,
  206. transform 0.4s cubic-bezier(0, 0, 0.27, 1.77);
  207. transform: rotate(0deg) scale(1);
  208. filter: none;
  209. }
  210. @media (max-width: 750px) {
  211. header #docTitle {
  212. font-size: 20px;
  213. white-space: normal;
  214. }
  215. .mobileHide {
  216. display: none;
  217. }
  218. }
  219. #docTitle:hover {
  220. color: var(--accent-color-light);
  221. transform: rotate(1deg) scale(1.15);
  222. filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.8));
  223. }
  224. .noa {
  225. cursor: default;
  226. }
  227. .noa,
  228. header #docTitle:hover {
  229. text-decoration: none;
  230. }
  231. /*#MARKER main content*/
  232. label {
  233. -webkit-touch-callout: none;
  234. -webkit-user-select: none;
  235. -khtml-user-select: none;
  236. -moz-user-select: none;
  237. -ms-user-select: none;
  238. user-select: none;
  239. }
  240. .centered {
  241. text-align: center;
  242. }
  243. .miniimg {
  244. height: 1.1em;
  245. max-width: 1.6em;
  246. }
  247. .miniimg.invert {
  248. filter: invert(100%);
  249. }
  250. .shadow {
  251. filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
  252. }
  253. img.badge {
  254. /* badges slide up a few pixels for some reason */
  255. height: 1.15em;
  256. position: relative;
  257. bottom: -2.5px;
  258. }
  259. #f_langHideContainer.hidden {
  260. visibility: hidden;
  261. }
  262. input#f_customLang {
  263. width: 3em;
  264. }
  265. #uptimeTable tr td:last-child {
  266. padding-left: 5px;
  267. }
  268. .alternatingBgTable {
  269. margin: 0;
  270. margin-top: 10px;
  271. padding: 0;
  272. border-spacing: 0;
  273. }
  274. .alternatingBgTable tr:nth-child(2n + 1) td {
  275. background-color: rgba(0, 0, 0, 0.2);
  276. }
  277. .alternatingBgTable tr:nth-child(1) > th {
  278. border: 1px solid #fff;
  279. border-style: none none solid none;
  280. text-align: left;
  281. }
  282. .alternatingBgTable tr > td:nth-child(1) {
  283. padding-top: 3px;
  284. padding-left: 4px;
  285. padding-right: 10px;
  286. }
  287. .alternatingBgTable tr th:not(:first-child),
  288. .alternatingBgTable tr td:not(:first-child) {
  289. padding: 2px 10px 2px 10px;
  290. }
  291. .alternatingBgTable tr th:first-child {
  292. padding-right: 10px;
  293. padding-bottom: 2px;
  294. }
  295. .alternatingBgTable tr td:not(:first-child) {
  296. border: 1px solid #fff;
  297. border-style: none none none solid;
  298. }
  299. table tr td.g,
  300. span.col.g {
  301. color: #65b365;
  302. }
  303. table tr td.r,
  304. span.col.r {
  305. color: #ffad41;
  306. }
  307. table tr td.dr,
  308. span.col.dr {
  309. color: #aa2828;
  310. }
  311. .colB {
  312. color: #a9a9ff;
  313. }
  314. .colY {
  315. color: #ffffa9;
  316. }
  317. details summary {
  318. font-size: 110%;
  319. padding-top: 2px;
  320. padding-bottom: 5px;
  321. cursor: pointer;
  322. }
  323. details summary.big {
  324. font-size: 110%;
  325. }
  326. #newsList li {
  327. padding-top: 10px;
  328. }
  329. mark {
  330. border: 1px solid #777;
  331. border-radius: 2px;
  332. background-color: var(--bg-accent-color);
  333. display: inline-block;
  334. padding: 1px;
  335. font-family: "Cascadia Code", "Roboto Mono", "Courier New", monospace;
  336. font-weight: normal;
  337. font-variant-ligatures: none;
  338. color: #ccc;
  339. transition: background-color ease-out var(--sidenav-colorblur-speed);
  340. }
  341. body[data-sidenav="opened"] mark {
  342. background-color: var(--bg-accent-color-sidenav-opened);
  343. }
  344. #bodyFlexContainer {
  345. display: flex;
  346. flex-direction: column;
  347. flex-wrap: nowrap;
  348. justify-content: flex-start;
  349. height: 100vh;
  350. scroll-behavior: smooth;
  351. }
  352. #bodyFlexContainer .bodyFlexItem {
  353. flex-grow: 1;
  354. }
  355. .jsg_menu {
  356. z-index: 1001;
  357. }
  358. #devStuff {
  359. display: inline-block;
  360. width: 95vw;
  361. border: 2px solid #f40;
  362. border-radius: 10px;
  363. padding: 10px;
  364. margin-bottom: 20px;
  365. margin-top: 20px;
  366. }
  367. #devStuff::before {
  368. content: "Dev Stuff:";
  369. font-size: 20px;
  370. text-decoration: underline;
  371. margin-bottom: 15px;
  372. color: #f40;
  373. }
  374. #content {
  375. overflow-y: auto;
  376. padding: 26px;
  377. margin-left: 10px;
  378. padding-top: 0;
  379. margin-top: 0;
  380. transition: margin-left var(--sidenav-animation-speed);
  381. }
  382. @media (max-width: 750px) {
  383. #content {
  384. padding: 10px;
  385. margin-left: 5px;
  386. }
  387. }
  388. body[data-sidenav="closed"] code,
  389. body code {
  390. font-family: "Cascadia Code", "Inconsolata", "Courier New", "Consolas",
  391. monospace;
  392. font-weight: normal;
  393. font-variant-ligatures: none;
  394. font-size: 15px;
  395. white-space: pre;
  396. -moz-tab-size: 4;
  397. -o-tab-size: 4;
  398. tab-size: 4;
  399. background-color: #111;
  400. display: block;
  401. border-radius: 8px !important;
  402. border-left: 8px solid var(--accent-color) !important;
  403. filter: grayscale(0%);
  404. transition: filter ease-out var(--sidenav-colorblur-speed);
  405. }
  406. body code > .actualCode {
  407. padding: 0px 10px 18px 20px;
  408. overflow-x: auto;
  409. overflow-y: hidden;
  410. line-height: 1.25;
  411. }
  412. body code .pln:first {
  413. display: none;
  414. }
  415. body[data-sidenav="opened"] code {
  416. background-color: #555;
  417. filter: grayscale(50%);
  418. transition: filter ease-out var(--sidenav-colorblur-speed);
  419. }
  420. body code .nocode.codeheader {
  421. font-family: "Roboto Mono", monospace;
  422. font-size: 19px;
  423. display: block;
  424. padding-top: 6px;
  425. padding-bottom: 4px;
  426. border: 3px solid var(--accent-color);
  427. border-style: none none solid none;
  428. }
  429. body code .nocode.codeheader::before {
  430. font-size: 19px;
  431. color: var(--accent-color-light);
  432. content: "</>";
  433. padding: 0px 15px;
  434. }
  435. kbd {
  436. font-family: "Cascadia Code", "Inconsolata", "Roboto Mono", "Courier New",
  437. monospace;
  438. font-weight: normal;
  439. font-variant-ligatures: none;
  440. font-size: 13px;
  441. display: inline-block;
  442. padding: 3.5px 4px;
  443. line-height: 10px;
  444. color: #eee;
  445. vertical-align: middle;
  446. background-color: #555;
  447. border: 1px solid #333;
  448. border-radius: 3px;
  449. box-shadow: inset 0 -2px 0 #222;
  450. }
  451. .indented {
  452. display: inline-block;
  453. margin-left: 20px;
  454. }
  455. ul {
  456. margin-top: 5px;
  457. margin-bottom: 5px;
  458. }
  459. abbr {
  460. cursor: help;
  461. }
  462. ul.lispacer li {
  463. margin-bottom: 5px;
  464. }
  465. .antiBotE:not(.noul):not(.shown) {
  466. cursor: pointer;
  467. color: #8f9aff;
  468. text-decoration: none;
  469. }
  470. .antiBotE:not(.noul):not(.shown):hover {
  471. color: #bcc2ff;
  472. text-decoration: underline;
  473. }
  474. .antiBotE.shown {
  475. font-family: "Roboto Mono", "Cascadia Code", "Courier New", monospace;
  476. font-weight: normal;
  477. }
  478. /*#SECTION Endpoints*/
  479. .requestURLwrapper {
  480. border: 1px solid #777;
  481. border-radius: 2px;
  482. background-color: var(--bg-accent-color-darker);
  483. display: inline-block;
  484. font-size: 110%;
  485. padding: 3px;
  486. padding-left: 10px;
  487. padding-right: 40px;
  488. transition: background-color ease-out var(--sidenav-colorblur-speed);
  489. white-space: nowrap;
  490. }
  491. body[data-sidenav="opened"] .requestURLwrapper {
  492. background-color: var(--bg-accent-color-darker-sidenav-opened);
  493. transition: background-color ease-out var(--sidenav-colorblur-speed);
  494. }
  495. .requestMethodGET,
  496. .requestMethodPUT {
  497. display: inline-block;
  498. margin-right: 10px;
  499. -webkit-touch-callout: none;
  500. -webkit-user-select: none;
  501. -khtml-user-select: none;
  502. -moz-user-select: none;
  503. -ms-user-select: none;
  504. user-select: none;
  505. }
  506. .requestMethodGET {
  507. color: #7cfc00;
  508. }
  509. .requestMethodPUT {
  510. color: #6495ed;
  511. }
  512. .requestURL {
  513. color: #ccc;
  514. font-family: "Roboto Mono", "Courier New", monospace;
  515. }
  516. .supportedParamsBox {
  517. display: inline-block;
  518. /* border: 1px solid #bbb;
  519. border-radius: 2px;
  520. background-color: var(--bg-accent-color);
  521. padding: 6px; */
  522. padding-right: 30px;
  523. }
  524. .placeholder {
  525. color: #777;
  526. }
  527. footer#copyrightNotice {
  528. display: block;
  529. margin-bottom: 10px;
  530. text-align: center;
  531. }
  532. footer#copyrightNotice span {
  533. display: inline-block;
  534. }
  535. /*#SECTION Wrappers*/
  536. #wrapperTable {
  537. border-spacing: 0;
  538. font-size: 110%;
  539. }
  540. #wrapperTable tr th {
  541. text-align: left;
  542. padding: 2px;
  543. padding-right: 20px;
  544. border: 1px solid white;
  545. border-style: none none solid none;
  546. }
  547. #wrapperTable tr th:first-child {
  548. padding-right: 20px;
  549. }
  550. #wrapperTable tr td {
  551. text-align: left;
  552. padding: 2px;
  553. padding-right: 20px;
  554. }
  555. #wrapperTable tr td.wrappericon {
  556. padding-right: 5px;
  557. }
  558. /*#SECTION submit*/
  559. #submitContainer {
  560. display: flex;
  561. flex-direction: row;
  562. flex-wrap: nowrap;
  563. margin-left: 20px;
  564. }
  565. .submitFlexItem {
  566. flex-grow: 1;
  567. white-space: nowrap;
  568. }
  569. .submitFlexItem.l {
  570. width: 100%;
  571. margin-left: 30px;
  572. }
  573. @media (max-width: 1100px) {
  574. #submitContainer {
  575. flex-wrap: wrap;
  576. flex-direction: column;
  577. }
  578. .submitFlexItem {
  579. white-space: normal;
  580. }
  581. .submitFlexItem.l {
  582. margin-top: 30px;
  583. margin-left: 0;
  584. }
  585. }
  586. #submitBtn {
  587. font-size: 1.5em;
  588. }
  589. #submitBtn:disabled {
  590. cursor: not-allowed;
  591. }
  592. textarea {
  593. white-space: pre;
  594. overflow: auto;
  595. resize: vertical;
  596. width: 100%;
  597. max-height: 8em;
  598. }
  599. #propertyTable tr td {
  600. vertical-align: top;
  601. padding-right: 5px;
  602. }
  603. /* #SECTION contributors */
  604. #contributorsContainer .contributor {
  605. margin-top: 30px;
  606. }
  607. #contributorsContainer .contributor .contributorName {
  608. font-size: 115%;
  609. font-weight: 125%;
  610. }
  611. #contributorsContainer .contributor .contributorContact {
  612. display: inline;
  613. }
  614. #contributorsContainer .contributor .contributorContact:after {
  615. content: "\a";
  616. white-space: pre;
  617. }
  618. /*#MARKER sidenav*/
  619. #sidenav {
  620. display: flex;
  621. flex-direction: column;
  622. justify-content: stretch;
  623. height: 100%;
  624. width: 0;
  625. position: fixed;
  626. z-index: 1;
  627. top: 0;
  628. left: 0;
  629. background-color: #111;
  630. overflow-x: hidden;
  631. overflow-y: hidden;
  632. transition: var(--sidenav-animation-speed);
  633. z-index: 1002;
  634. filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
  635. white-space: nowrap;
  636. line-height: initial;
  637. }
  638. #sidenav a,
  639. .sidenav-mimica {
  640. flex-grow: 1;
  641. padding: 5px 8px 5px 32px;
  642. text-decoration: none;
  643. font-size: 20px;
  644. color: #a5a5a5;
  645. display: block;
  646. transition: 0.3s;
  647. }
  648. #sidenav a:hover,
  649. .sidenav-mimica:hover {
  650. cursor: pointer;
  651. color: #f1f1f1;
  652. }
  653. #sidenav details > summary {
  654. padding-left: 32px;
  655. }
  656. #sidenav details > summary:first-of-type {
  657. list-style-type: none;
  658. }
  659. #sidenav details > summary:-webkit-details-marker {
  660. display: none;
  661. }
  662. #sidenav details:not([open]) > summary::before {
  663. flex-grow: 1;
  664. padding-left: 0px;
  665. padding-top: 0px;
  666. content: "⯈";
  667. transform: rotate(0deg);
  668. display: inline-block;
  669. transition: transform 0.1s ease-out;
  670. }
  671. #sidenav details[open] > summary::before {
  672. flex-grow: 1;
  673. padding-left: 0px;
  674. padding-top: 0px;
  675. content: "⯈";
  676. transform: rotate(90deg);
  677. display: inline-block;
  678. transition: transform 0.1s ease-out;
  679. }
  680. #sidenav details > summary > span.sidenav-mimica {
  681. display: inline-block;
  682. width: 100%;
  683. padding-left: 0px;
  684. }
  685. #sidenav details > summary {
  686. cursor: pointer;
  687. color: #a5a5a5;
  688. transition: 0.3s;
  689. }
  690. #sidenav details > summary:hover {
  691. color: #f1f1f1;
  692. transition: 0.3s;
  693. }
  694. #sideNavOpen {
  695. white-space: nowrap;
  696. font-size: 30px;
  697. cursor: pointer;
  698. }
  699. #sideNavOpen::after {
  700. content: "Menu";
  701. }
  702. @media (max-width: 750px) {
  703. #sideNavOpen::after {
  704. content: "";
  705. }
  706. #changelogLink {
  707. font-size: 10px;
  708. }
  709. }
  710. #sidenav ul {
  711. flex-grow: 1;
  712. padding-top: 0;
  713. margin-top: 0;
  714. list-style-type: none;
  715. margin-left: 25px;
  716. padding-left: 0;
  717. }
  718. #sidenav ul > li > a {
  719. font-size: 15px;
  720. }
  721. #sidenav #sidenavContent {
  722. overflow-y: auto;
  723. overflow-x: hidden;
  724. }
  725. #sidenav .bottomspacer {
  726. margin-bottom: 50px;
  727. }
  728. #sidenav #sidenavHeader {
  729. display: flex;
  730. flex-direction: row;
  731. flex-wrap: nowrap;
  732. font-size: 36px;
  733. width: 100%;
  734. }
  735. #sidenav #sidenavHeader .sidenavHeaderItem:not(.nopad) {
  736. flex-grow: 1;
  737. padding: 10px;
  738. }
  739. #sidenav #sidenavHeader .sidenavHeaderItem.nopad {
  740. flex-grow: 1;
  741. padding: 0px;
  742. padding-right: 15px;
  743. }
  744. #sidenav #sidenavHeader .sidenavHeaderItem.spacer {
  745. flex-grow: 5;
  746. }
  747. #sidenav .closebtn {
  748. font-size: 36px;
  749. }
  750. div.sidenavSpacer {
  751. display: block;
  752. min-height: 18px;
  753. max-height: 18px;
  754. }
  755. @media screen and (max-height: 450px) {
  756. .sidenav {
  757. padding-top: 15px;
  758. }
  759. .sidenav a {
  760. font-size: 18px;
  761. }
  762. }
  763. .docHeader .headerAnchorContainer {
  764. cursor: pointer;
  765. margin-right: 10px;
  766. filter: opacity(30%);
  767. transition: filter 0.075s linear;
  768. }
  769. .docHeader .headerAnchorContainer:hover {
  770. filter: opacity(100%);
  771. text-decoration: none !important;
  772. }
  773. .headerAnchorContainer {
  774. display: inline-block;
  775. margin-top: 20px;
  776. }
  777. .targetBlink:target {
  778. animation: targetBlink 1s;
  779. animation-iteration-count: 1;
  780. animation-delay: var(--targetblink-animation-delay);
  781. }
  782. @keyframes targetBlink {
  783. 0% {
  784. border-color: var(--doc-header-color);
  785. color: #fff;
  786. border-width: 2px;
  787. }
  788. 10% {
  789. border-width: 200%;
  790. }
  791. 25% {
  792. border-color: #f00;
  793. color: #f00;
  794. }
  795. 75% {
  796. border-color: #f00;
  797. color: #f00;
  798. }
  799. 90% {
  800. border-width: 200%;
  801. }
  802. 100% {
  803. border-color: var(--doc-header-color);
  804. color: #fff;
  805. border-width: 2px;
  806. }
  807. }
  808. .docHeader {
  809. font-size: var(--doc-header-font-size);
  810. border: 2px solid var(--doc-header-color);
  811. border-style: none none solid none;
  812. padding-bottom: 2px;
  813. margin-bottom: 10px;
  814. margin-top: 70px;
  815. line-height: initial;
  816. }
  817. .docHeader:not(:first) {
  818. margin-top: 50px;
  819. }
  820. .subHeaderContainer {
  821. display: block;
  822. margin-top: 25px;
  823. margin-bottom: 8px;
  824. text-decoration: underline;
  825. text-underline-offset: 3px; /* currently only supported in FF70+ and SF12.1+ (see https://caniuse.com/#search=text-underline-offset) */
  826. }
  827. .subHeaderContainer .subHeader {
  828. font-size: var(--doc-sub-header-font-size);
  829. }
  830. .subHeaderContainer a {
  831. vertical-align: super;
  832. font-size: smaller;
  833. text-decoration: none;
  834. text-underline-offset: initial;
  835. color: rgba(188, 194, 255, 0.4);
  836. transition: color 0.075s linear;
  837. }
  838. .smallText {
  839. font-size: small;
  840. }
  841. .subHeaderContainer a:hover {
  842. color: rgba(188, 194, 255, 1);
  843. text-decoration: inherit;
  844. }
  845. /*#SECTION usage terms */
  846. #usageTerms {
  847. display: none;
  848. background-color: var(--bg-accent-color);
  849. border: 2px solid #fff;
  850. border-radius: 10px;
  851. padding: 13px;
  852. padding-top: 20px;
  853. padding-bottom: 20px;
  854. margin-bottom: 20px;
  855. margin-top: 20px;
  856. }
  857. #usageTerms[data-animate-border="true"] {
  858. animation: targetBlink 1s;
  859. animation-iteration-count: 1;
  860. }
  861. #usageTerms > h2 {
  862. margin-top: 0;
  863. color: orangered;
  864. }
  865. #usageTermsInnerLayout {
  866. display: flex;
  867. flex-direction: row;
  868. flex-wrap: nowrap;
  869. }
  870. #usageTermsInnerLayout > .itm {
  871. flex-grow: 1;
  872. }
  873. #usageTermsInnerLayout > .itm:last-of-type {
  874. text-align: right;
  875. }
  876. /*#SECTION try it */
  877. #tryItContainer table tr td {
  878. vertical-align: middle;
  879. }
  880. #tryItContainer table tr:not(:last-of-type) > td {
  881. padding-bottom: 15px;
  882. }
  883. #tryItFormLatency {
  884. font-size: 90%;
  885. }
  886. .highlightedContainer {
  887. display: block;
  888. background-color: var(--bg-accent-color);
  889. border: 2px solid #fff;
  890. border-radius: 10px;
  891. padding: 10px;
  892. padding-top: 20px;
  893. padding-bottom: 20px;
  894. margin-bottom: 20px;
  895. margin-top: 20px;
  896. }
  897. body[data-sidenav="opened"] .highlightedContainer {
  898. background-color: var(--bg-accent-color-sidenav-opened);
  899. }
  900. #tryItContainer table tr td {
  901. padding-right: 20px;
  902. }
  903. #catSelectMulti {
  904. padding-left: 20px;
  905. }
  906. .multiselect,
  907. #urlBuilderWrapper,
  908. #resultWrapper {
  909. background-color: #222;
  910. border: 1px solid #fff;
  911. padding: 6px;
  912. padding-right: 11px;
  913. border-radius: 5px;
  914. }
  915. body[data-sidenav="opened"] .multiselect,
  916. body[data-sidenav="opened"] #urlBuilderWrapper,
  917. body[data-sidenav="opened"] #resultWrapper {
  918. background-color: #555;
  919. }
  920. input[disabled] {
  921. cursor: not-allowed;
  922. }
  923. input[disabled] + label {
  924. color: #bbb;
  925. cursor: not-allowed;
  926. }
  927. #searchStringInput {
  928. width: 100%;
  929. }
  930. #urlBuilderWrapper {
  931. display: inline-block;
  932. margin-bottom: 12px;
  933. font-size: 16px;
  934. }
  935. #urlBuilderWrapper button {
  936. font-size: 17px;
  937. padding: 3px 8px 3px 8px;
  938. }
  939. #urlBuilderUrl {
  940. display: inline-block;
  941. padding: 10px 5px 10px 8px;
  942. }