12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163 |
- @import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
- @import url("https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap");
- :root {
- --bg-color: #2e323b;
- --bg-accent-color: #1d2025;
- --bg-accent-color-darker: #111316;
- --bg-accent-color-sidenav-opened: #4e535c;
- --bg-accent-color-darker-sidenav-opened: #5e646e;
- --bg-color-sidenav-opened: #616774;
- --header-bg-color: #0b1031;
- --header-bg-color-sidenav-opened: #0b1031;
- --doc-header-color: #5a83c0;
- --header-height: 50px;
- --accent-color: #8a2be2;
- --accent-color-light: #b05ffc;
- --accent-color-sidenav-opened: #a779d3;
- --doc-header-font-size: 29px;
- --doc-sub-header-font-size: 22px;
- --sidenav-animation-speed: 0.15s;
- --sidenav-colorblur-speed: 0.5s;
- --targetblink-animation-delay: 0.5s;
- --scrollbar-track-color: #222;
- --scrollbar-thumb-color: rgba(175, 175, 175, 0.7);
- --scrollbar-webkit-hover-color: rgba(65, 131, 196, 0.8);
- --line-height: calc(100% + 6px);
- }
- @font-face {
- font-family: "Cascadia Code";
- src: url("./cascadia-code.ttf"); /* URL can't have the "./static/" path since this CSS file is already loaded from "./static/" */
- }
- #submissions-hidden {
- display: none;
- }
- /* #MARKER BEGIN */
- html,
- body,
- #main {
- scroll-behavior: smooth;
- }
- body {
- margin: 0;
- background-color: var(--bg-color);
- color: #fff;
- font-family: "Roboto", "Segoe UI", "Arial", sans-serif;
- font-size: 18px;
- line-height: var(--line-height);
- font-weight: 200;
- overflow-y: hidden;
- transition: background-color ease-out var(--sidenav-colorblur-speed);
- /* Ah yes web development */
- -webkit-touch-callout: inherit;
- -webkit-user-select: inherit;
- -khtml-user-select: inherit;
- -moz-user-select: inherit;
- -ms-user-select: inherit;
- user-select: inherit;
- }
- .noselect {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .noa {
- color: inherit;
- }
- .noul,
- .mimica {
- cursor: pointer;
- }
- a:not(.noul),
- .mimica:not(.noul) {
- color: #8f9aff;
- text-decoration: none;
- }
- a:not(.noul):hover,
- .mimica:not(.noul):hover {
- color: #bcc2ff;
- text-decoration: underline;
- }
- .rtext {
- text-align: right;
- }
- .blackshadow {
- text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
- 1px 1px 0 #000;
- }
- .whiteshadow {
- text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
- 1px 1px 0 #fff;
- }
- body[data-sidenav="opened"] {
- background-color: var(--bg-color-sidenav-opened);
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- body[data-sidenav="closed"] {
- background-color: var(--bg-color);
- -webkit-touch-callout: inherit;
- -webkit-user-select: inherit;
- -khtml-user-select: inherit;
- -moz-user-select: inherit;
- -ms-user-select: inherit;
- user-select: inherit;
- }
- .lText {
- font-size: 120%;
- }
- /*#MARKER scrollbar*/
- ::-webkit-scrollbar {
- max-width: 10px !important;
- max-height: 10px !important;
- background: var(--scrollbar-track-color) !important;
- }
- ::-webkit-scrollbar-track,
- ::-webkit-scrollbar-corner {
- background: var(--scrollbar-track-color) !important;
- }
- ::-webkit-scrollbar-thumb {
- background: var(--scrollbar-thumb-color) !important;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: var(--scrollbar-webkit-hover-color) !important;
- }
- :root {
- scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color) !important;
- scrollbar-width: thin !important;
- }
- /*#MARKER header*/
- header {
- /* position: -webkit-sticky;
- position: sticky; */
- position: relative;
- top: 0;
- left: 0;
- background-color: var(--header-bg-color);
- /* 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%); */
- color: white;
- text-shadow: -1px -1px 0px #000, 0px -1px 0px #000, 1px -1px 0px #000,
- -1px 0px 0px #000, 1px 0px 0px #000, -1px 1px 0px #000, 0px 1px 0px #000,
- 1px 1px 0px #000;
- z-index: 1000;
- transition: filter ease-out var(--sidenav-colorblur-speed),
- width linear var(--sidenav-animation-speed);
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- width: 100%;
- height: var(--header-height);
- filter: grayscale(0%) drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
- line-height: initial;
- }
- header[data-grayscaled="true"] {
- /* filter: grayscale(100%) drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3)); */
- /* background-color: var(--header-bg-color-sidenav-opened); */
- width: 100%;
- }
- header .headeritem {
- display: inline-block;
- white-space: nowrap;
- flex-grow: 0;
- padding-top: 5px;
- padding-bottom: 5px;
- width: 100%;
- }
- header .headeritem.m {
- flex-grow: 1;
- text-align: center;
- }
- header .headeritem.r {
- text-align: right;
- }
- header #docTitle {
- cursor: pointer;
- margin: 0;
- font-size: 30px;
- color: #fff;
- }
- #headerversion {
- font-size: 18px;
- display: inline-block;
- padding-right: 10px;
- }
- #headerVersionNumber {
- font-size: 15px;
- padding-right: 6px;
- }
- #changelogLink {
- font-size: 15px;
- }
- #headersidenavopenwrapper {
- padding-left: 10px;
- }
- #docTitle {
- cursor: pointer;
- display: inline-block;
- color: #fff;
- white-space: nowrap;
- transition: color 0.4s linear, filter 0.2s linear,
- transform 0.4s cubic-bezier(0, 0, 0.27, 1.77);
- transform: rotate(0deg) scale(1);
- filter: none;
- }
- @media (max-width: 750px) {
- header #docTitle {
- font-size: 20px;
- white-space: normal;
- }
- .mobileHide {
- display: none;
- }
- }
- #docTitle:hover {
- color: var(--accent-color-light);
- transform: rotate(1deg) scale(1.15);
- filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.8));
- }
- .noa {
- cursor: default;
- }
- .noa,
- header #docTitle:hover {
- text-decoration: none;
- }
- /*#MARKER main content*/
- label {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .centered {
- text-align: center;
- }
- .miniimg {
- height: 1.1em;
- max-width: 1.6em;
- }
- .miniimg.invert {
- filter: invert(100%);
- }
- .shadow {
- filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
- }
- img.badge {
- /* badges slide up a few pixels for some reason */
- height: 1.15em;
- position: relative;
- bottom: -2.5px;
- }
- #f_langHideContainer.hidden {
- visibility: hidden;
- }
- input#f_customLang {
- width: 3em;
- }
- #uptimeTable tr td:last-child {
- padding-left: 5px;
- }
- .alternatingBgTable {
- margin: 0;
- margin-top: 10px;
- padding: 0;
- border-spacing: 0;
- }
- .alternatingBgTable tr:nth-child(2n + 1) td {
- background-color: rgba(0, 0, 0, 0.2);
- }
- .alternatingBgTable tr:nth-child(1) > th {
- border: 1px solid #fff;
- border-style: none none solid none;
- text-align: left;
- }
- .alternatingBgTable tr > td:nth-child(1) {
- padding-top: 3px;
- padding-left: 4px;
- padding-right: 10px;
- }
- .alternatingBgTable tr th:not(:first-child),
- .alternatingBgTable tr td:not(:first-child) {
- padding: 2px 10px 2px 10px;
- }
- .alternatingBgTable tr th:first-child {
- padding-right: 10px;
- padding-bottom: 2px;
- }
- .alternatingBgTable tr td:not(:first-child) {
- border: 1px solid #fff;
- border-style: none none none solid;
- }
- table tr td.g,
- span.col.g {
- color: #65b365;
- }
- table tr td.r,
- span.col.r {
- color: #ffad41;
- }
- table tr td.dr,
- span.col.dr {
- color: #aa2828;
- }
- .colB {
- color: #a9a9ff;
- }
- .colY {
- color: #ffffa9;
- }
- details summary {
- font-size: 110%;
- padding-top: 2px;
- padding-bottom: 5px;
- cursor: pointer;
- }
- details summary.big {
- font-size: 110%;
- }
- #newsList li {
- padding-top: 10px;
- }
- mark {
- border: 1px solid #777;
- border-radius: 2px;
- background-color: var(--bg-accent-color);
- display: inline-block;
- padding: 1px;
- font-family: "Cascadia Code", "Roboto Mono", "Courier New", monospace;
- font-weight: normal;
- font-variant-ligatures: none;
- color: #ccc;
- transition: background-color ease-out var(--sidenav-colorblur-speed);
- }
- body[data-sidenav="opened"] mark {
- background-color: var(--bg-accent-color-sidenav-opened);
- }
- #bodyFlexContainer {
- display: flex;
- flex-direction: column;
- flex-wrap: nowrap;
- justify-content: flex-start;
- height: 100vh;
- scroll-behavior: smooth;
- }
- #bodyFlexContainer .bodyFlexItem {
- flex-grow: 1;
- }
- .jsg_menu {
- z-index: 1001;
- }
- #devStuff {
- display: inline-block;
- width: 95vw;
- border: 2px solid #f40;
- border-radius: 10px;
- padding: 10px;
- margin-bottom: 20px;
- margin-top: 20px;
- }
- #devStuff::before {
- content: "Dev Stuff:";
- font-size: 20px;
- text-decoration: underline;
- margin-bottom: 15px;
- color: #f40;
- }
- #content {
- overflow-y: auto;
- padding: 26px;
- margin-left: 10px;
- padding-top: 0;
- margin-top: 0;
- transition: margin-left var(--sidenav-animation-speed);
- }
- @media (max-width: 750px) {
- #content {
- padding: 10px;
- margin-left: 5px;
- }
- }
- body[data-sidenav="closed"] code,
- body code {
- font-family: "Cascadia Code", "Inconsolata", "Courier New", "Consolas",
- monospace;
- font-weight: normal;
- font-variant-ligatures: none;
- font-size: 15px;
- white-space: pre;
- -moz-tab-size: 4;
- -o-tab-size: 4;
- tab-size: 4;
- background-color: #111;
- display: block;
- border-radius: 8px !important;
- border-left: 8px solid var(--accent-color) !important;
- filter: grayscale(0%);
- transition: filter ease-out var(--sidenav-colorblur-speed);
- }
- body code > .actualCode {
- padding: 0px 10px 18px 20px;
- overflow-x: auto;
- overflow-y: hidden;
- line-height: 1.25;
- }
- body code .pln:first {
- display: none;
- }
- body[data-sidenav="opened"] code {
- background-color: #555;
- filter: grayscale(50%);
- transition: filter ease-out var(--sidenav-colorblur-speed);
- }
- body code .nocode.codeheader {
- font-family: "Roboto Mono", monospace;
- font-size: 19px;
- display: block;
- padding-top: 6px;
- padding-bottom: 4px;
- border: 3px solid var(--accent-color);
- border-style: none none solid none;
- }
- body code .nocode.codeheader::before {
- font-size: 19px;
- color: var(--accent-color-light);
- content: "</>";
- padding: 0px 15px;
- }
- kbd {
- font-family: "Cascadia Code", "Inconsolata", "Roboto Mono", "Courier New",
- monospace;
- font-weight: normal;
- font-variant-ligatures: none;
- font-size: 13px;
- display: inline-block;
- padding: 3.5px 4px;
- line-height: 10px;
- color: #eee;
- vertical-align: middle;
- background-color: #555;
- border: 1px solid #333;
- border-radius: 3px;
- box-shadow: inset 0 -2px 0 #222;
- }
- .indented {
- display: inline-block;
- margin-left: 20px;
- }
- ul {
- margin-top: 5px;
- margin-bottom: 5px;
- }
- abbr {
- cursor: help;
- }
- ul.lispacer li {
- margin-bottom: 5px;
- }
- .antiBotE:not(.noul):not(.shown) {
- cursor: pointer;
- color: #8f9aff;
- text-decoration: none;
- }
- .antiBotE:not(.noul):not(.shown):hover {
- color: #bcc2ff;
- text-decoration: underline;
- }
- .antiBotE.shown {
- font-family: "Roboto Mono", "Cascadia Code", "Courier New", monospace;
- font-weight: normal;
- }
- /*#SECTION Endpoints*/
- .requestURLwrapper {
- border: 1px solid #777;
- border-radius: 2px;
- background-color: var(--bg-accent-color-darker);
- display: inline-block;
- font-size: 110%;
- padding: 3px;
- padding-left: 10px;
- padding-right: 40px;
- transition: background-color ease-out var(--sidenav-colorblur-speed);
- white-space: nowrap;
- }
- body[data-sidenav="opened"] .requestURLwrapper {
- background-color: var(--bg-accent-color-darker-sidenav-opened);
- transition: background-color ease-out var(--sidenav-colorblur-speed);
- }
- .requestMethodGET,
- .requestMethodPUT {
- display: inline-block;
- margin-right: 10px;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .requestMethodGET {
- color: #7cfc00;
- }
- .requestMethodPUT {
- color: #6495ed;
- }
- .requestURL {
- color: #ccc;
- font-family: "Roboto Mono", "Courier New", monospace;
- }
- .supportedParamsBox {
- display: inline-block;
- /* border: 1px solid #bbb;
- border-radius: 2px;
- background-color: var(--bg-accent-color);
- padding: 6px; */
- padding-right: 30px;
- }
- .placeholder {
- color: #777;
- }
- footer#copyrightNotice {
- display: block;
- margin-bottom: 10px;
- text-align: center;
- }
- footer#copyrightNotice span {
- display: inline-block;
- }
- /*#SECTION Wrappers*/
- #wrapperTable {
- border-spacing: 0;
- font-size: 110%;
- }
- #wrapperTable tr th {
- text-align: left;
- padding: 2px;
- padding-right: 20px;
- border: 1px solid white;
- border-style: none none solid none;
- }
- #wrapperTable tr th:first-child {
- padding-right: 20px;
- }
- #wrapperTable tr td {
- text-align: left;
- padding: 2px;
- padding-right: 20px;
- }
- #wrapperTable tr td.wrappericon {
- padding-right: 5px;
- }
- /*#SECTION submit*/
- #submitContainer {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- margin-left: 20px;
- }
- .submitFlexItem {
- flex-grow: 1;
- white-space: nowrap;
- }
- .submitFlexItem.l {
- width: 100%;
- margin-left: 30px;
- }
- @media (max-width: 1100px) {
- #submitContainer {
- flex-wrap: wrap;
- flex-direction: column;
- }
- .submitFlexItem {
- white-space: normal;
- }
- .submitFlexItem.l {
- margin-top: 30px;
- margin-left: 0;
- }
- }
- #submitBtn {
- font-size: 1.5em;
- }
- #submitBtn:disabled {
- cursor: not-allowed;
- }
- textarea {
- white-space: pre;
- overflow: auto;
- resize: vertical;
- width: 100%;
- max-height: 8em;
- }
- #propertyTable tr td {
- vertical-align: top;
- padding-right: 5px;
- }
- /* #SECTION contributors */
- #contributorsContainer .contributor {
- margin-top: 30px;
- }
- #contributorsContainer .contributor .contributorName {
- font-size: 115%;
- font-weight: 125%;
- }
- #contributorsContainer .contributor .contributorContact {
- display: inline;
- }
- #contributorsContainer .contributor .contributorContact:after {
- content: "\a";
- white-space: pre;
- }
- /*#MARKER sidenav*/
- #sidenav {
- display: flex;
- flex-direction: column;
- justify-content: stretch;
- height: 100%;
- width: 0;
- position: fixed;
- z-index: 1;
- top: 0;
- left: 0;
- background-color: #111;
- overflow-x: hidden;
- overflow-y: hidden;
- transition: var(--sidenav-animation-speed);
- z-index: 1002;
- filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
- white-space: nowrap;
- line-height: initial;
- }
- #sidenav a,
- .sidenav-mimica {
- flex-grow: 1;
- padding: 5px 8px 5px 32px;
- text-decoration: none;
- font-size: 20px;
- color: #a5a5a5;
- display: block;
- transition: 0.3s;
- }
- #sidenav a:hover,
- .sidenav-mimica:hover {
- cursor: pointer;
- color: #f1f1f1;
- }
- #sidenav details > summary {
- padding-left: 32px;
- }
- #sidenav details > summary:first-of-type {
- list-style-type: none;
- }
- #sidenav details > summary:-webkit-details-marker {
- display: none;
- }
- #sidenav details:not([open]) > summary::before {
- flex-grow: 1;
- padding-left: 0px;
- padding-top: 0px;
- content: "⯈";
- transform: rotate(0deg);
- display: inline-block;
- transition: transform 0.1s ease-out;
- }
- #sidenav details[open] > summary::before {
- flex-grow: 1;
- padding-left: 0px;
- padding-top: 0px;
- content: "⯈";
- transform: rotate(90deg);
- display: inline-block;
- transition: transform 0.1s ease-out;
- }
- #sidenav details > summary > span.sidenav-mimica {
- display: inline-block;
- width: 100%;
- padding-left: 0px;
- }
- #sidenav details > summary {
- cursor: pointer;
- color: #a5a5a5;
- transition: 0.3s;
- }
- #sidenav details > summary:hover {
- color: #f1f1f1;
- transition: 0.3s;
- }
- #sideNavOpen {
- white-space: nowrap;
- font-size: 30px;
- cursor: pointer;
- }
- #sideNavOpen::after {
- content: "Menu";
- }
- @media (max-width: 750px) {
- #sideNavOpen::after {
- content: "";
- }
- #changelogLink {
- font-size: 10px;
- }
- }
- #sidenav ul {
- flex-grow: 1;
- padding-top: 0;
- margin-top: 0;
- list-style-type: none;
- margin-left: 25px;
- padding-left: 0;
- }
- #sidenav ul > li > a {
- font-size: 15px;
- }
- #sidenav #sidenavContent {
- overflow-y: auto;
- overflow-x: hidden;
- }
- #sidenav .bottomspacer {
- margin-bottom: 50px;
- }
- #sidenav #sidenavHeader {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- font-size: 36px;
- width: 100%;
- }
- #sidenav #sidenavHeader .sidenavHeaderItem:not(.nopad) {
- flex-grow: 1;
- padding: 10px;
- }
- #sidenav #sidenavHeader .sidenavHeaderItem.nopad {
- flex-grow: 1;
- padding: 0px;
- padding-right: 15px;
- }
- #sidenav #sidenavHeader .sidenavHeaderItem.spacer {
- flex-grow: 5;
- }
- #sidenav .closebtn {
- font-size: 36px;
- }
- div.sidenavSpacer {
- display: block;
- min-height: 18px;
- max-height: 18px;
- }
- @media screen and (max-height: 450px) {
- .sidenav {
- padding-top: 15px;
- }
- .sidenav a {
- font-size: 18px;
- }
- }
- .docHeader .headerAnchorContainer {
- cursor: pointer;
- margin-right: 10px;
- filter: opacity(30%);
- transition: filter 0.075s linear;
- }
- .docHeader .headerAnchorContainer:hover {
- filter: opacity(100%);
- text-decoration: none !important;
- }
- .headerAnchorContainer {
- display: inline-block;
- margin-top: 20px;
- }
- .targetBlink:target {
- animation: targetBlink 1s;
- animation-iteration-count: 1;
- animation-delay: var(--targetblink-animation-delay);
- }
- @keyframes targetBlink {
- 0% {
- border-color: var(--doc-header-color);
- color: #fff;
- border-width: 2px;
- }
- 10% {
- border-width: 200%;
- }
- 25% {
- border-color: #f00;
- color: #f00;
- }
- 75% {
- border-color: #f00;
- color: #f00;
- }
- 90% {
- border-width: 200%;
- }
- 100% {
- border-color: var(--doc-header-color);
- color: #fff;
- border-width: 2px;
- }
- }
- .docHeader {
- font-size: var(--doc-header-font-size);
- border: 2px solid var(--doc-header-color);
- border-style: none none solid none;
- padding-bottom: 2px;
- margin-bottom: 10px;
- margin-top: 70px;
- line-height: initial;
- }
- .docHeader:not(:first) {
- margin-top: 50px;
- }
- .subHeaderContainer {
- display: block;
- margin-top: 25px;
- margin-bottom: 8px;
- text-decoration: underline;
- text-underline-offset: 3px; /* currently only supported in FF70+ and SF12.1+ (see https://caniuse.com/#search=text-underline-offset) */
- }
- .subHeaderContainer .subHeader {
- font-size: var(--doc-sub-header-font-size);
- }
- .subHeaderContainer a {
- vertical-align: super;
- font-size: smaller;
- text-decoration: none;
- text-underline-offset: initial;
- color: rgba(188, 194, 255, 0.4);
- transition: color 0.075s linear;
- }
- .smallText {
- font-size: small;
- }
- .subHeaderContainer a:hover {
- color: rgba(188, 194, 255, 1);
- text-decoration: inherit;
- }
- /*#SECTION usage terms */
- #usageTerms {
- display: none;
- background-color: var(--bg-accent-color);
- border: 2px solid #fff;
- border-radius: 10px;
- padding: 13px;
- padding-top: 20px;
- padding-bottom: 20px;
- margin-bottom: 20px;
- margin-top: 20px;
- }
- #usageTerms[data-animate-border="true"] {
- animation: targetBlink 1s;
- animation-iteration-count: 1;
- }
- #usageTerms > h2 {
- margin-top: 0;
- color: orangered;
- }
- #usageTermsInnerLayout {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- }
- #usageTermsInnerLayout > .itm {
- flex-grow: 1;
- }
- #usageTermsInnerLayout > .itm:last-of-type {
- text-align: right;
- }
- /*#SECTION try it */
- #tryItContainer table tr td {
- vertical-align: middle;
- }
- #tryItContainer table tr:not(:last-of-type) > td {
- padding-bottom: 15px;
- }
- #tryItFormLatency {
- font-size: 90%;
- }
- .highlightedContainer {
- display: block;
- background-color: var(--bg-accent-color);
- border: 2px solid #fff;
- border-radius: 10px;
- padding: 10px;
- padding-top: 20px;
- padding-bottom: 20px;
- margin-bottom: 20px;
- margin-top: 20px;
- }
- body[data-sidenav="opened"] .highlightedContainer {
- background-color: var(--bg-accent-color-sidenav-opened);
- }
- #tryItContainer table tr td {
- padding-right: 20px;
- }
- #catSelectMulti {
- padding-left: 20px;
- }
- .multiselect,
- #urlBuilderWrapper,
- #resultWrapper {
- background-color: #222;
- border: 1px solid #fff;
- padding: 6px;
- padding-right: 11px;
- border-radius: 5px;
- }
- body[data-sidenav="opened"] .multiselect,
- body[data-sidenav="opened"] #urlBuilderWrapper,
- body[data-sidenav="opened"] #resultWrapper {
- background-color: #555;
- }
- input[disabled] {
- cursor: not-allowed;
- }
- input[disabled] + label {
- color: #bbb;
- cursor: not-allowed;
- }
- #searchStringInput {
- width: 100%;
- }
- #urlBuilderWrapper {
- display: inline-block;
- margin-bottom: 12px;
- font-size: 16px;
- }
- #urlBuilderWrapper button {
- font-size: 17px;
- padding: 3px 8px 3px 8px;
- }
- #urlBuilderUrl {
- display: inline-block;
- padding: 10px 5px 10px 8px;
- }
|