Created
September 27, 2024 14:25
-
-
Save slorber/2cea4d3fc8d6e0b50dcebdc58596d514 to your computer and use it in GitHub Desktop.
Docusaurus CSS with/without LightningCSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--ifm-color-scheme: light; | |
--ifm-dark-value: 10%; | |
--ifm-darker-value: 15%; | |
--ifm-darkest-value: 30%; | |
--ifm-light-value: 15%; | |
--ifm-lighter-value: 30%; | |
--ifm-lightest-value: 50%; | |
--ifm-contrast-background-value: 90%; | |
--ifm-contrast-foreground-value: 70%; | |
--ifm-contrast-background-dark-value: 70%; | |
--ifm-contrast-foreground-dark-value: 90%; | |
--ifm-color-primary: #3578e5; | |
--ifm-color-secondary: #ebedf0; | |
--ifm-color-success: #00a400; | |
--ifm-color-info: #54c7ec; | |
--ifm-color-warning: #ffba00; | |
--ifm-color-danger: #fa383e; | |
--ifm-color-primary-dark: #306cce; | |
--ifm-color-primary-darker: #2d66c3; | |
--ifm-color-primary-darkest: #2554a0; | |
--ifm-color-primary-light: #538ce9; | |
--ifm-color-primary-lighter: #72a1ed; | |
--ifm-color-primary-lightest: #9abcf2; | |
--ifm-color-primary-contrast-background: #ebf2fc; | |
--ifm-color-primary-contrast-foreground: #102445; | |
--ifm-color-secondary-dark: #d4d5d8; | |
--ifm-color-secondary-darker: #c8c9cc; | |
--ifm-color-secondary-darkest: #a4a6a8; | |
--ifm-color-secondary-light: #eef0f2; | |
--ifm-color-secondary-lighter: #f1f2f5; | |
--ifm-color-secondary-lightest: #f5f6f8; | |
--ifm-color-secondary-contrast-background: #fdfdfe; | |
--ifm-color-secondary-contrast-foreground: #474748; | |
--ifm-color-success-dark: #009400; | |
--ifm-color-success-darker: #008b00; | |
--ifm-color-success-darkest: #007300; | |
--ifm-color-success-light: #26b226; | |
--ifm-color-success-lighter: #4dbf4d; | |
--ifm-color-success-lightest: #80d280; | |
--ifm-color-success-contrast-background: #e6f6e6; | |
--ifm-color-success-contrast-foreground: #003100; | |
--ifm-color-info-dark: #4cb3d4; | |
--ifm-color-info-darker: #47a9c9; | |
--ifm-color-info-darkest: #3b8ba5; | |
--ifm-color-info-light: #6ecfef; | |
--ifm-color-info-lighter: #87d8f2; | |
--ifm-color-info-lightest: #aae3f6; | |
--ifm-color-info-contrast-background: #eef9fd; | |
--ifm-color-info-contrast-foreground: #193c47; | |
--ifm-color-warning-dark: #e6a700; | |
--ifm-color-warning-darker: #d99e00; | |
--ifm-color-warning-darkest: #b38200; | |
--ifm-color-warning-light: #ffc426; | |
--ifm-color-warning-lighter: #ffcf4d; | |
--ifm-color-warning-lightest: #ffdd80; | |
--ifm-color-warning-contrast-background: #fff8e6; | |
--ifm-color-warning-contrast-foreground: #4d3800; | |
--ifm-color-danger-dark: #e13238; | |
--ifm-color-danger-darker: #d53035; | |
--ifm-color-danger-darkest: #af272b; | |
--ifm-color-danger-light: #fb565b; | |
--ifm-color-danger-lighter: #fb7478; | |
--ifm-color-danger-lightest: #fd9c9f; | |
--ifm-color-danger-contrast-background: #ffebec; | |
--ifm-color-danger-contrast-foreground: #4b1113; | |
--ifm-color-white: #fff; | |
--ifm-color-black: #000; | |
--ifm-color-gray-0: var(--ifm-color-white); | |
--ifm-color-gray-100: #f5f6f7; | |
--ifm-color-gray-200: #ebedf0; | |
--ifm-color-gray-300: #dadde1; | |
--ifm-color-gray-400: #ccd0d5; | |
--ifm-color-gray-500: #bec3c9; | |
--ifm-color-gray-600: #8d949e; | |
--ifm-color-gray-700: #606770; | |
--ifm-color-gray-800: #444950; | |
--ifm-color-gray-900: #1c1e21; | |
--ifm-color-gray-1000: var(--ifm-color-black); | |
--ifm-color-emphasis-0: var(--ifm-color-gray-0); | |
--ifm-color-emphasis-100: var(--ifm-color-gray-100); | |
--ifm-color-emphasis-200: var(--ifm-color-gray-200); | |
--ifm-color-emphasis-300: var(--ifm-color-gray-300); | |
--ifm-color-emphasis-400: var(--ifm-color-gray-400); | |
--ifm-color-emphasis-500: var(--ifm-color-gray-500); | |
--ifm-color-emphasis-600: var(--ifm-color-gray-600); | |
--ifm-color-emphasis-700: var(--ifm-color-gray-700); | |
--ifm-color-emphasis-800: var(--ifm-color-gray-800); | |
--ifm-color-emphasis-900: var(--ifm-color-gray-900); | |
--ifm-color-emphasis-1000: var(--ifm-color-gray-1000); | |
--ifm-color-content: var(--ifm-color-emphasis-900); | |
--ifm-color-content-inverse: var(--ifm-color-emphasis-0); | |
--ifm-color-content-secondary: #525860; | |
--ifm-background-color: transparent; | |
--ifm-background-surface-color: var(--ifm-color-content-inverse); | |
--ifm-global-border-width: 1px; | |
--ifm-global-radius: 0.4rem; | |
--ifm-hover-overlay: #0000000d; | |
--ifm-font-color-base: var(--ifm-color-content); | |
--ifm-font-color-base-inverse: var(--ifm-color-content-inverse); | |
--ifm-font-color-secondary: var(--ifm-color-content-secondary); | |
--ifm-font-family-base: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, | |
Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Helvetica, | |
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
--ifm-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, | |
"Liberation Mono", "Courier New", monospace; | |
--ifm-font-size-base: 100%; | |
--ifm-font-weight-light: 300; | |
--ifm-font-weight-normal: 400; | |
--ifm-font-weight-semibold: 500; | |
--ifm-font-weight-bold: 700; | |
--ifm-font-weight-base: var(--ifm-font-weight-normal); | |
--ifm-line-height-base: 1.65; | |
--ifm-global-spacing: 1rem; | |
--ifm-spacing-vertical: var(--ifm-global-spacing); | |
--ifm-spacing-horizontal: var(--ifm-global-spacing); | |
--ifm-transition-fast: 0.2s; | |
--ifm-transition-slow: 0.4s; | |
--ifm-transition-timing-default: cubic-bezier(0.08, 0.52, 0.52, 1); | |
--ifm-global-shadow-lw: 0 1px 2px 0 #0000001a; | |
--ifm-global-shadow-md: 0 5px 40px #0003; | |
--ifm-global-shadow-tl: 0 12px 28px 0 #0003, 0 2px 4px 0 #0000001a; | |
--ifm-z-index-dropdown: 100; | |
--ifm-z-index-fixed: 200; | |
--ifm-z-index-overlay: 400; | |
--ifm-container-width: 1140px; | |
--ifm-container-width-xl: 1320px; | |
--ifm-code-background: #f6f7f8; | |
--ifm-code-border-radius: var(--ifm-global-radius); | |
--ifm-code-font-size: 90%; | |
--ifm-code-padding-horizontal: 0.1rem; | |
--ifm-code-padding-vertical: 0.1rem; | |
--ifm-pre-background: var(--ifm-code-background); | |
--ifm-pre-border-radius: var(--ifm-code-border-radius); | |
--ifm-pre-color: inherit; | |
--ifm-pre-line-height: 1.45; | |
--ifm-pre-padding: 1rem; | |
--ifm-heading-color: inherit; | |
--ifm-heading-margin-top: 0; | |
--ifm-heading-margin-bottom: var(--ifm-spacing-vertical); | |
--ifm-heading-font-family: var(--ifm-font-family-base); | |
--ifm-heading-font-weight: var(--ifm-font-weight-bold); | |
--ifm-heading-line-height: 1.25; | |
--ifm-h1-font-size: 2rem; | |
--ifm-h2-font-size: 1.5rem; | |
--ifm-h3-font-size: 1.25rem; | |
--ifm-h4-font-size: 1rem; | |
--ifm-h5-font-size: 0.875rem; | |
--ifm-h6-font-size: 0.85rem; | |
--ifm-image-alignment-padding: 1.25rem; | |
--ifm-leading-desktop: 1.25; | |
--ifm-leading: calc(var(--ifm-leading-desktop) * 1rem); | |
--ifm-list-left-padding: 2rem; | |
--ifm-list-margin: 1rem; | |
--ifm-list-item-margin: 0.25rem; | |
--ifm-list-paragraph-margin: 1rem; | |
--ifm-table-cell-padding: 0.75rem; | |
--ifm-table-background: transparent; | |
--ifm-table-stripe-background: #00000008; | |
--ifm-table-border-width: 1px; | |
--ifm-table-border-color: var(--ifm-color-emphasis-300); | |
--ifm-table-head-background: inherit; | |
--ifm-table-head-color: inherit; | |
--ifm-table-head-font-weight: var(--ifm-font-weight-bold); | |
--ifm-table-cell-color: inherit; | |
--ifm-link-color: var(--ifm-color-primary); | |
--ifm-link-decoration: none; | |
--ifm-link-hover-color: var(--ifm-link-color); | |
--ifm-link-hover-decoration: underline; | |
--ifm-paragraph-margin-bottom: var(--ifm-leading); | |
--ifm-blockquote-font-size: var(--ifm-font-size-base); | |
--ifm-blockquote-border-left-width: 2px; | |
--ifm-blockquote-padding-horizontal: var(--ifm-spacing-horizontal); | |
--ifm-blockquote-padding-vertical: 0; | |
--ifm-blockquote-shadow: none; | |
--ifm-blockquote-color: var(--ifm-color-emphasis-800); | |
--ifm-blockquote-border-color: var(--ifm-color-emphasis-300); | |
--ifm-hr-background-color: var(--ifm-color-emphasis-500); | |
--ifm-hr-height: 1px; | |
--ifm-hr-margin-vertical: 1.5rem; | |
--ifm-scrollbar-size: 7px; | |
--ifm-scrollbar-track-background-color: #f1f1f1; | |
--ifm-scrollbar-thumb-background-color: silver; | |
--ifm-scrollbar-thumb-hover-background-color: #a7a7a7; | |
--ifm-alert-background-color: inherit; | |
--ifm-alert-border-color: inherit; | |
--ifm-alert-border-radius: var(--ifm-global-radius); | |
--ifm-alert-border-width: 0px; | |
--ifm-alert-border-left-width: 5px; | |
--ifm-alert-color: var(--ifm-font-color-base); | |
--ifm-alert-padding-horizontal: var(--ifm-spacing-horizontal); | |
--ifm-alert-padding-vertical: var(--ifm-spacing-vertical); | |
--ifm-alert-shadow: var(--ifm-global-shadow-lw); | |
--ifm-avatar-intro-margin: 1rem; | |
--ifm-avatar-intro-alignment: inherit; | |
--ifm-avatar-photo-size: 3rem; | |
--ifm-badge-background-color: inherit; | |
--ifm-badge-border-color: inherit; | |
--ifm-badge-border-radius: var(--ifm-global-radius); | |
--ifm-badge-border-width: var(--ifm-global-border-width); | |
--ifm-badge-color: var(--ifm-color-white); | |
--ifm-badge-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 0.5); | |
--ifm-badge-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25); | |
--ifm-breadcrumb-border-radius: 1.5rem; | |
--ifm-breadcrumb-spacing: 0.5rem; | |
--ifm-breadcrumb-color-active: var(--ifm-color-primary); | |
--ifm-breadcrumb-item-background-active: var(--ifm-hover-overlay); | |
--ifm-breadcrumb-padding-horizontal: 0.8rem; | |
--ifm-breadcrumb-padding-vertical: 0.4rem; | |
--ifm-breadcrumb-size-multiplier: 1; | |
--ifm-breadcrumb-separator: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 256 256"><g><g><polygon points="79.093,0 48.907,30.187 146.72,128 48.907,225.813 79.093,256 207.093,128"/></g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>'); | |
--ifm-breadcrumb-separator-filter: none; | |
--ifm-breadcrumb-separator-size: 0.5rem; | |
--ifm-breadcrumb-separator-size-multiplier: 1.25; | |
--ifm-button-background-color: inherit; | |
--ifm-button-border-color: var(--ifm-button-background-color); | |
--ifm-button-border-width: var(--ifm-global-border-width); | |
--ifm-button-color: var(--ifm-font-color-base-inverse); | |
--ifm-button-font-weight: var(--ifm-font-weight-bold); | |
--ifm-button-padding-horizontal: 1.5rem; | |
--ifm-button-padding-vertical: 0.375rem; | |
--ifm-button-size-multiplier: 1; | |
--ifm-button-transition-duration: var(--ifm-transition-fast); | |
--ifm-button-border-radius: calc( | |
var(--ifm-global-radius) * var(--ifm-button-size-multiplier) | |
); | |
--ifm-button-group-spacing: 2px; | |
--ifm-card-background-color: var(--ifm-background-surface-color); | |
--ifm-card-border-radius: calc(var(--ifm-global-radius) * 2); | |
--ifm-card-horizontal-spacing: var(--ifm-global-spacing); | |
--ifm-card-vertical-spacing: var(--ifm-global-spacing); | |
--ifm-toc-border-color: var(--ifm-color-emphasis-300); | |
--ifm-toc-link-color: var(--ifm-color-content-secondary); | |
--ifm-toc-padding-vertical: 0.5rem; | |
--ifm-toc-padding-horizontal: 0.5rem; | |
--ifm-dropdown-background-color: var(--ifm-background-surface-color); | |
--ifm-dropdown-font-weight: var(--ifm-font-weight-semibold); | |
--ifm-dropdown-link-color: var(--ifm-font-color-base); | |
--ifm-dropdown-hover-background-color: var(--ifm-hover-overlay); | |
--ifm-footer-background-color: var(--ifm-color-emphasis-100); | |
--ifm-footer-color: inherit; | |
--ifm-footer-link-color: var(--ifm-color-emphasis-700); | |
--ifm-footer-link-hover-color: var(--ifm-color-primary); | |
--ifm-footer-link-horizontal-spacing: 0.5rem; | |
--ifm-footer-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 2); | |
--ifm-footer-padding-vertical: calc(var(--ifm-spacing-vertical) * 2); | |
--ifm-footer-title-color: inherit; | |
--ifm-footer-logo-max-width: min(30rem, 90vw); | |
--ifm-hero-background-color: var(--ifm-background-surface-color); | |
--ifm-hero-text-color: var(--ifm-color-emphasis-800); | |
--ifm-menu-color: var(--ifm-color-emphasis-700); | |
--ifm-menu-color-active: var(--ifm-color-primary); | |
--ifm-menu-color-background-active: var(--ifm-hover-overlay); | |
--ifm-menu-color-background-hover: var(--ifm-hover-overlay); | |
--ifm-menu-link-padding-horizontal: 0.75rem; | |
--ifm-menu-link-padding-vertical: 0.375rem; | |
--ifm-menu-link-sublist-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path fill="rgba(0,0,0,0.5)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>'); | |
--ifm-menu-link-sublist-icon-filter: none; | |
--ifm-navbar-background-color: var(--ifm-background-surface-color); | |
--ifm-navbar-height: 3.75rem; | |
--ifm-navbar-item-padding-horizontal: 0.75rem; | |
--ifm-navbar-item-padding-vertical: 0.25rem; | |
--ifm-navbar-link-color: var(--ifm-font-color-base); | |
--ifm-navbar-link-hover-color: var(--ifm-color-primary); | |
--ifm-navbar-link-active-color: var(--ifm-link-color); | |
--ifm-navbar-padding-horizontal: var(--ifm-spacing-horizontal); | |
--ifm-navbar-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.5); | |
--ifm-navbar-shadow: var(--ifm-global-shadow-lw); | |
--ifm-navbar-search-input-background-color: var(--ifm-color-emphasis-200); | |
--ifm-navbar-search-input-color: var(--ifm-color-emphasis-800); | |
--ifm-navbar-search-input-placeholder-color: var(--ifm-color-emphasis-500); | |
--ifm-navbar-search-input-icon: url('data:image/svg+xml;utf8,<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="16px" width="16px"><path d="M6.02945,10.20327a4.17382,4.17382,0,1,1,4.17382-4.17382A4.15609,4.15609,0,0,1,6.02945,10.20327Zm9.69195,4.2199L10.8989,9.59979A5.88021,5.88021,0,0,0,12.058,6.02856,6.00467,6.00467,0,1,0,9.59979,10.8989l4.82338,4.82338a.89729.89729,0,0,0,1.29912,0,.89749.89749,0,0,0-.00087-1.29909Z" /></svg>'); | |
--ifm-navbar-sidebar-width: 83vw; | |
--ifm-pagination-border-radius: var(--ifm-global-radius); | |
--ifm-pagination-color-active: var(--ifm-color-primary); | |
--ifm-pagination-font-size: 1rem; | |
--ifm-pagination-item-active-background: var(--ifm-hover-overlay); | |
--ifm-pagination-page-spacing: 0.2em; | |
--ifm-pagination-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 1); | |
--ifm-pagination-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25); | |
--ifm-pagination-nav-border-radius: var(--ifm-global-radius); | |
--ifm-pagination-nav-color-hover: var(--ifm-color-primary); | |
--ifm-pills-color-active: var(--ifm-color-primary); | |
--ifm-pills-color-background-active: var(--ifm-hover-overlay); | |
--ifm-pills-spacing: 0.125rem; | |
--ifm-tabs-color: var(--ifm-font-color-secondary); | |
--ifm-tabs-color-active: var(--ifm-color-primary); | |
--ifm-tabs-color-active-border: var(--ifm-tabs-color-active); | |
--ifm-tabs-padding-horizontal: 1rem; | |
--ifm-tabs-padding-vertical: 1rem; | |
} | |
* { | |
box-sizing: border-box; | |
} | |
html { | |
background-color: var(--ifm-background-color); | |
color: var(--ifm-font-color-base); | |
color-scheme: var(--ifm-color-scheme); | |
font: var(--ifm-font-size-base) / var(--ifm-line-height-base) | |
var(--ifm-font-family-base); | |
-webkit-font-smoothing: antialiased; | |
-webkit-tap-highlight-color: transparent; | |
text-rendering: optimizelegibility; | |
-webkit-text-size-adjust: 100%; | |
-moz-text-size-adjust: 100%; | |
text-size-adjust: 100%; | |
} | |
body { | |
word-wrap: break-word; | |
margin: 0; | |
} | |
iframe { | |
color-scheme: normal; | |
border: 0; | |
} | |
.container { | |
max-width: var(--ifm-container-width); | |
padding: 0 var(--ifm-spacing-horizontal); | |
width: 100%; | |
margin: 0 auto; | |
} | |
.container--fluid { | |
max-width: inherit; | |
} | |
.row { | |
margin: 0 calc(var(--ifm-spacing-horizontal) * -1); | |
flex-wrap: wrap; | |
display: flex; | |
} | |
.row--no-gutters { | |
margin-left: 0; | |
margin-right: 0; | |
} | |
.row--no-gutters > .col { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
.row--align-top { | |
align-items: flex-start; | |
} | |
.row--align-bottom { | |
align-items: flex-end; | |
} | |
.row--align-center { | |
align-items: center; | |
} | |
.row--align-stretch { | |
align-items: stretch; | |
} | |
.row--align-baseline { | |
align-items: baseline; | |
} | |
.col { | |
--ifm-col-width: 100%; | |
max-width: var(--ifm-col-width); | |
padding: 0 var(--ifm-spacing-horizontal); | |
flex: 1 0; | |
width: 100%; | |
margin-left: 0; | |
} | |
.col[class*="col--"] { | |
flex: 0 0 var(--ifm-col-width); | |
} | |
.col--1 { | |
--ifm-col-width: calc(1 / 12 * 100%); | |
} | |
.col--offset-1 { | |
margin-left: 8.33333%; | |
} | |
.col--2 { | |
--ifm-col-width: calc(2 / 12 * 100%); | |
} | |
.col--offset-2 { | |
margin-left: 16.6667%; | |
} | |
.col--3 { | |
--ifm-col-width: calc(3 / 12 * 100%); | |
} | |
.col--offset-3 { | |
margin-left: 25%; | |
} | |
.col--4 { | |
--ifm-col-width: calc(4 / 12 * 100%); | |
} | |
.col--offset-4 { | |
margin-left: 33.3333%; | |
} | |
.col--5 { | |
--ifm-col-width: calc(5 / 12 * 100%); | |
} | |
.col--offset-5 { | |
margin-left: 41.6667%; | |
} | |
.col--6 { | |
--ifm-col-width: calc(6 / 12 * 100%); | |
} | |
.col--offset-6 { | |
margin-left: 50%; | |
} | |
.col--7 { | |
--ifm-col-width: calc(7 / 12 * 100%); | |
} | |
.col--offset-7 { | |
margin-left: 58.3333%; | |
} | |
.col--8 { | |
--ifm-col-width: calc(8 / 12 * 100%); | |
} | |
.col--offset-8 { | |
margin-left: 66.6667%; | |
} | |
.col--9 { | |
--ifm-col-width: calc(9 / 12 * 100%); | |
} | |
.col--offset-9 { | |
margin-left: 75%; | |
} | |
.col--10 { | |
--ifm-col-width: calc(10 / 12 * 100%); | |
} | |
.col--offset-10 { | |
margin-left: 83.3333%; | |
} | |
.col--11 { | |
--ifm-col-width: calc(11 / 12 * 100%); | |
} | |
.col--offset-11 { | |
margin-left: 91.6667%; | |
} | |
.col--12 { | |
--ifm-col-width: calc(12 / 12 * 100%); | |
} | |
.col--offset-12 { | |
margin-left: 100%; | |
} | |
.margin--none { | |
margin: 0 !important; | |
} | |
.margin-top--none { | |
margin-top: 0 !important; | |
} | |
.margin-left--none { | |
margin-left: 0 !important; | |
} | |
.margin-bottom--none { | |
margin-bottom: 0 !important; | |
} | |
.margin-right--none { | |
margin-right: 0 !important; | |
} | |
.margin-vert--none { | |
margin-top: 0 !important; | |
margin-bottom: 0 !important; | |
} | |
.margin-horiz--none { | |
margin-left: 0 !important; | |
margin-right: 0 !important; | |
} | |
.margin--xs { | |
margin: 0.25rem !important; | |
} | |
.margin-top--xs { | |
margin-top: 0.25rem !important; | |
} | |
.margin-left--xs { | |
margin-left: 0.25rem !important; | |
} | |
.margin-bottom--xs { | |
margin-bottom: 0.25rem !important; | |
} | |
.margin-right--xs { | |
margin-right: 0.25rem !important; | |
} | |
.margin-vert--xs { | |
margin-top: 0.25rem !important; | |
margin-bottom: 0.25rem !important; | |
} | |
.margin-horiz--xs { | |
margin-left: 0.25rem !important; | |
margin-right: 0.25rem !important; | |
} | |
.margin--sm { | |
margin: 0.5rem !important; | |
} | |
.margin-top--sm { | |
margin-top: 0.5rem !important; | |
} | |
.margin-left--sm { | |
margin-left: 0.5rem !important; | |
} | |
.margin-bottom--sm { | |
margin-bottom: 0.5rem !important; | |
} | |
.margin-right--sm { | |
margin-right: 0.5rem !important; | |
} | |
.margin-vert--sm { | |
margin-top: 0.5rem !important; | |
margin-bottom: 0.5rem !important; | |
} | |
.margin-horiz--sm { | |
margin-left: 0.5rem !important; | |
margin-right: 0.5rem !important; | |
} | |
.margin--md { | |
margin: 1rem !important; | |
} | |
.margin-top--md { | |
margin-top: 1rem !important; | |
} | |
.margin-left--md { | |
margin-left: 1rem !important; | |
} | |
.margin-bottom--md { | |
margin-bottom: 1rem !important; | |
} | |
.margin-right--md { | |
margin-right: 1rem !important; | |
} | |
.margin-vert--md { | |
margin-top: 1rem !important; | |
margin-bottom: 1rem !important; | |
} | |
.margin-horiz--md { | |
margin-left: 1rem !important; | |
margin-right: 1rem !important; | |
} | |
.margin--lg { | |
margin: 2rem !important; | |
} | |
.margin-top--lg { | |
margin-top: 2rem !important; | |
} | |
.margin-left--lg { | |
margin-left: 2rem !important; | |
} | |
.margin-bottom--lg { | |
margin-bottom: 2rem !important; | |
} | |
.margin-right--lg { | |
margin-right: 2rem !important; | |
} | |
.margin-vert--lg { | |
margin-top: 2rem !important; | |
margin-bottom: 2rem !important; | |
} | |
.margin-horiz--lg { | |
margin-left: 2rem !important; | |
margin-right: 2rem !important; | |
} | |
.margin--xl { | |
margin: 5rem !important; | |
} | |
.margin-top--xl { | |
margin-top: 5rem !important; | |
} | |
.margin-left--xl { | |
margin-left: 5rem !important; | |
} | |
.margin-bottom--xl { | |
margin-bottom: 5rem !important; | |
} | |
.margin-right--xl { | |
margin-right: 5rem !important; | |
} | |
.margin-vert--xl { | |
margin-top: 5rem !important; | |
margin-bottom: 5rem !important; | |
} | |
.margin-horiz--xl { | |
margin-left: 5rem !important; | |
margin-right: 5rem !important; | |
} | |
.padding--none { | |
padding: 0 !important; | |
} | |
.padding-top--none { | |
padding-top: 0 !important; | |
} | |
.padding-left--none { | |
padding-left: 0 !important; | |
} | |
.padding-bottom--none { | |
padding-bottom: 0 !important; | |
} | |
.padding-right--none { | |
padding-right: 0 !important; | |
} | |
.padding-vert--none { | |
padding-top: 0 !important; | |
padding-bottom: 0 !important; | |
} | |
.padding-horiz--none { | |
padding-left: 0 !important; | |
padding-right: 0 !important; | |
} | |
.padding--xs { | |
padding: 0.25rem !important; | |
} | |
.padding-top--xs { | |
padding-top: 0.25rem !important; | |
} | |
.padding-left--xs { | |
padding-left: 0.25rem !important; | |
} | |
.padding-bottom--xs { | |
padding-bottom: 0.25rem !important; | |
} | |
.padding-right--xs { | |
padding-right: 0.25rem !important; | |
} | |
.padding-vert--xs { | |
padding-top: 0.25rem !important; | |
padding-bottom: 0.25rem !important; | |
} | |
.padding-horiz--xs { | |
padding-left: 0.25rem !important; | |
padding-right: 0.25rem !important; | |
} | |
.padding--sm { | |
padding: 0.5rem !important; | |
} | |
.padding-top--sm { | |
padding-top: 0.5rem !important; | |
} | |
.padding-left--sm { | |
padding-left: 0.5rem !important; | |
} | |
.padding-bottom--sm { | |
padding-bottom: 0.5rem !important; | |
} | |
.padding-right--sm { | |
padding-right: 0.5rem !important; | |
} | |
.padding-vert--sm { | |
padding-top: 0.5rem !important; | |
padding-bottom: 0.5rem !important; | |
} | |
.padding-horiz--sm { | |
padding-left: 0.5rem !important; | |
padding-right: 0.5rem !important; | |
} | |
.padding--md { | |
padding: 1rem !important; | |
} | |
.padding-top--md { | |
padding-top: 1rem !important; | |
} | |
.padding-left--md { | |
padding-left: 1rem !important; | |
} | |
.padding-bottom--md { | |
padding-bottom: 1rem !important; | |
} | |
.padding-right--md { | |
padding-right: 1rem !important; | |
} | |
.padding-vert--md { | |
padding-top: 1rem !important; | |
padding-bottom: 1rem !important; | |
} | |
.padding-horiz--md { | |
padding-left: 1rem !important; | |
padding-right: 1rem !important; | |
} | |
.padding--lg { | |
padding: 2rem !important; | |
} | |
.padding-top--lg { | |
padding-top: 2rem !important; | |
} | |
.padding-left--lg { | |
padding-left: 2rem !important; | |
} | |
.padding-bottom--lg { | |
padding-bottom: 2rem !important; | |
} | |
.padding-right--lg { | |
padding-right: 2rem !important; | |
} | |
.padding-vert--lg { | |
padding-top: 2rem !important; | |
padding-bottom: 2rem !important; | |
} | |
.padding-horiz--lg { | |
padding-left: 2rem !important; | |
padding-right: 2rem !important; | |
} | |
.padding--xl { | |
padding: 5rem !important; | |
} | |
.padding-top--xl { | |
padding-top: 5rem !important; | |
} | |
.padding-left--xl { | |
padding-left: 5rem !important; | |
} | |
.padding-bottom--xl { | |
padding-bottom: 5rem !important; | |
} | |
.padding-right--xl { | |
padding-right: 5rem !important; | |
} | |
.padding-vert--xl { | |
padding-top: 5rem !important; | |
padding-bottom: 5rem !important; | |
} | |
.padding-horiz--xl { | |
padding-left: 5rem !important; | |
padding-right: 5rem !important; | |
} | |
code { | |
background-color: var(--ifm-code-background); | |
border-radius: var(--ifm-code-border-radius); | |
font-family: var(--ifm-font-family-monospace); | |
font-size: var(--ifm-code-font-size); | |
padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal); | |
vertical-align: middle; | |
border: 0.1rem solid #0000001a; | |
} | |
a code { | |
color: inherit; | |
} | |
pre { | |
background-color: var(--ifm-pre-background); | |
border-radius: var(--ifm-pre-border-radius); | |
color: var(--ifm-pre-color); | |
font: var(--ifm-code-font-size) / var(--ifm-pre-line-height) | |
var(--ifm-font-family-monospace); | |
margin: 0 0 var(--ifm-spacing-vertical); | |
padding: var(--ifm-pre-padding); | |
overflow: auto; | |
} | |
pre code { | |
font-size: 100%; | |
line-height: inherit; | |
background-color: #0000; | |
border: none; | |
padding: 0; | |
} | |
kbd { | |
background-color: var(--ifm-color-emphasis-0); | |
border: 1px solid var(--ifm-color-emphasis-400); | |
box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-400); | |
color: var(--ifm-color-emphasis-800); | |
font: 80% var(--ifm-font-family-monospace); | |
border-radius: 0.2rem; | |
padding: 0.15rem 0.3rem; | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
color: var(--ifm-heading-color); | |
font-family: var(--ifm-heading-font-family); | |
font-weight: var(--ifm-heading-font-weight); | |
line-height: var(--ifm-heading-line-height); | |
margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0; | |
} | |
h1 { | |
font-size: var(--ifm-h1-font-size); | |
} | |
h2 { | |
font-size: var(--ifm-h2-font-size); | |
} | |
h3 { | |
font-size: var(--ifm-h3-font-size); | |
} | |
h4 { | |
font-size: var(--ifm-h4-font-size); | |
} | |
h5 { | |
font-size: var(--ifm-h5-font-size); | |
} | |
h6 { | |
font-size: var(--ifm-h6-font-size); | |
} | |
img { | |
max-width: 100%; | |
} | |
img[align="right"] { | |
padding-left: var(--image-alignment-padding); | |
} | |
img[align="left"] { | |
padding-right: var(--image-alignment-padding); | |
} | |
.markdown { | |
--ifm-h1-vertical-rhythm-top: 3; | |
--ifm-h2-vertical-rhythm-top: 2; | |
--ifm-h3-vertical-rhythm-top: 1.5; | |
--ifm-heading-vertical-rhythm-top: 1.25; | |
--ifm-h1-vertical-rhythm-bottom: 1.25; | |
--ifm-heading-vertical-rhythm-bottom: 1; | |
} | |
.markdown:before { | |
content: ""; | |
display: table; | |
} | |
.markdown:after { | |
clear: both; | |
content: ""; | |
display: table; | |
} | |
.markdown > :last-child { | |
margin-bottom: 0 !important; | |
} | |
.markdown h1:first-child { | |
--ifm-h1-font-size: 3rem; | |
margin-bottom: calc( | |
var(--ifm-h1-vertical-rhythm-bottom) * var(--ifm-leading) | |
); | |
} | |
.markdown > h2 { | |
--ifm-h2-font-size: 2rem; | |
margin-bottom: calc( | |
var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading) | |
); | |
margin-top: calc(var(--ifm-h2-vertical-rhythm-top) * var(--ifm-leading)); | |
} | |
.markdown > h3 { | |
--ifm-h3-font-size: 1.5rem; | |
margin-bottom: calc( | |
var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading) | |
); | |
margin-top: calc(var(--ifm-h3-vertical-rhythm-top) * var(--ifm-leading)); | |
} | |
.markdown > h4, | |
.markdown > h5, | |
.markdown > h6 { | |
margin-bottom: calc( | |
var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading) | |
); | |
margin-top: calc(var(--ifm-heading-vertical-rhythm-top) * var(--ifm-leading)); | |
} | |
.markdown > pre, | |
.markdown > ul, | |
.markdown > p { | |
margin-bottom: var(--ifm-leading); | |
} | |
.markdown li { | |
word-wrap: break-word; | |
} | |
.markdown li > p { | |
margin-top: var(--ifm-list-paragraph-margin); | |
} | |
.markdown li + li { | |
margin-top: var(--ifm-list-item-margin); | |
} | |
ul, | |
ol { | |
margin: 0 0 var(--ifm-list-margin); | |
padding-left: var(--ifm-list-left-padding); | |
} | |
ol ol, | |
ul ol { | |
list-style-type: lower-roman; | |
} | |
ul ul, | |
ul ol, | |
ol ol, | |
ol ul { | |
margin: 0; | |
} | |
ul ul ol, | |
ul ol ol, | |
ol ul ol, | |
ol ol ol { | |
list-style-type: lower-alpha; | |
} | |
table { | |
border-collapse: collapse; | |
margin-bottom: var(--ifm-spacing-vertical); | |
display: block; | |
overflow: auto; | |
} | |
table thead tr { | |
border-bottom: 2px solid var(--ifm-table-border-color); | |
} | |
table thead { | |
background-color: var(--ifm-table-stripe-background); | |
} | |
table tr { | |
background-color: var(--ifm-table-background); | |
border-top: var(--ifm-table-border-width) solid var(--ifm-table-border-color); | |
} | |
table tr:nth-child(2n) { | |
background-color: var(--ifm-table-stripe-background); | |
} | |
table th, | |
table td { | |
border: var(--ifm-table-border-width) solid var(--ifm-table-border-color); | |
padding: var(--ifm-table-cell-padding); | |
} | |
table th { | |
background-color: var(--ifm-table-head-background); | |
color: var(--ifm-table-head-color); | |
font-weight: var(--ifm-table-head-font-weight); | |
} | |
table td { | |
color: var(--ifm-table-cell-color); | |
} | |
strong { | |
font-weight: var(--ifm-font-weight-bold); | |
} | |
a { | |
color: var(--ifm-link-color); | |
-webkit-text-decoration: var(--ifm-link-decoration); | |
text-decoration: var(--ifm-link-decoration); | |
transition: color var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
a:hover { | |
color: var(--ifm-link-hover-color); | |
-webkit-text-decoration: var(--ifm-link-hover-decoration); | |
text-decoration: var(--ifm-link-hover-decoration); | |
} | |
a:not([href]) { | |
text-decoration: none; | |
} | |
p { | |
margin: 0 0 var(--ifm-paragraph-margin-bottom); | |
} | |
blockquote { | |
border-left: var(--ifm-blockquote-border-left-width) solid | |
var(--ifm-blockquote-border-color); | |
box-shadow: var(--ifm-blockquote-shadow); | |
color: var(--ifm-blockquote-color); | |
font-size: var(--ifm-blockquote-font-size); | |
margin: 0 0 var(--ifm-spacing-vertical); | |
padding: var(--ifm-blockquote-padding-vertical) | |
var(--ifm-blockquote-padding-horizontal); | |
} | |
blockquote > :first-child { | |
margin-top: 0; | |
} | |
blockquote > :last-child { | |
margin-bottom: 0; | |
} | |
hr { | |
background-color: var(--ifm-hr-background-color); | |
height: var(--ifm-hr-height); | |
margin: var(--ifm-hr-margin-vertical) 0; | |
border: 0; | |
} | |
.shadow--lw { | |
box-shadow: var(--ifm-global-shadow-lw) !important; | |
} | |
.shadow--md { | |
box-shadow: var(--ifm-global-shadow-md) !important; | |
} | |
.shadow--tl { | |
box-shadow: var(--ifm-global-shadow-tl) !important; | |
} | |
.text--primary { | |
color: var(--ifm-color-primary); | |
} | |
.text--secondary { | |
color: var(--ifm-color-secondary); | |
} | |
.text--success { | |
color: var(--ifm-color-success); | |
} | |
.text--info { | |
color: var(--ifm-color-info); | |
} | |
.text--warning { | |
color: var(--ifm-color-warning); | |
} | |
.text--danger { | |
color: var(--ifm-color-danger); | |
} | |
.text--center { | |
text-align: center; | |
} | |
.text--left { | |
text-align: left; | |
} | |
.text--justify { | |
text-align: justify; | |
} | |
.text--right { | |
text-align: right; | |
} | |
.text--capitalize { | |
text-transform: capitalize; | |
} | |
.text--lowercase { | |
text-transform: lowercase; | |
} | |
.text--uppercase { | |
text-transform: uppercase; | |
} | |
.text--light { | |
font-weight: var(--ifm-font-weight-light); | |
} | |
.text--normal { | |
font-weight: var(--ifm-font-weight-normal); | |
} | |
.text--semibold { | |
font-weight: var(--ifm-font-weight-semibold); | |
} | |
.text--bold { | |
font-weight: var(--ifm-font-weight-bold); | |
} | |
.text--italic { | |
font-style: italic; | |
} | |
.text--truncate { | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
overflow: hidden; | |
} | |
.text--break { | |
word-wrap: break-word !important; | |
word-break: break-word !important; | |
} | |
.text--no-decoration, | |
.text--no-decoration:hover { | |
text-decoration: none; | |
} | |
.clean-btn { | |
color: inherit; | |
cursor: pointer; | |
background: 0 0; | |
border: none; | |
padding: 0; | |
font-family: inherit; | |
} | |
.clean-list { | |
padding-left: 0; | |
list-style: none; | |
} | |
.alert--primary { | |
--ifm-alert-background-color: var(--ifm-color-primary-contrast-background); | |
--ifm-alert-background-color-highlight: #3578e526; | |
--ifm-alert-foreground-color: var(--ifm-color-primary-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-primary-dark); | |
} | |
.alert--secondary { | |
--ifm-alert-background-color: var(--ifm-color-secondary-contrast-background); | |
--ifm-alert-background-color-highlight: #ebedf026; | |
--ifm-alert-foreground-color: var(--ifm-color-secondary-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-secondary-dark); | |
} | |
.alert--success { | |
--ifm-alert-background-color: var(--ifm-color-success-contrast-background); | |
--ifm-alert-background-color-highlight: #00a40026; | |
--ifm-alert-foreground-color: var(--ifm-color-success-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-success-dark); | |
} | |
.alert--info { | |
--ifm-alert-background-color: var(--ifm-color-info-contrast-background); | |
--ifm-alert-background-color-highlight: #54c7ec26; | |
--ifm-alert-foreground-color: var(--ifm-color-info-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-info-dark); | |
} | |
.alert--warning { | |
--ifm-alert-background-color: var(--ifm-color-warning-contrast-background); | |
--ifm-alert-background-color-highlight: #ffba0026; | |
--ifm-alert-foreground-color: var(--ifm-color-warning-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-warning-dark); | |
} | |
.alert--danger { | |
--ifm-alert-background-color: var(--ifm-color-danger-contrast-background); | |
--ifm-alert-background-color-highlight: #fa383e26; | |
--ifm-alert-foreground-color: var(--ifm-color-danger-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-danger-dark); | |
} | |
.alert { | |
--ifm-code-background: var(--ifm-alert-background-color-highlight); | |
--ifm-link-color: var(--ifm-alert-foreground-color); | |
--ifm-link-hover-color: var(--ifm-alert-foreground-color); | |
--ifm-link-decoration: underline; | |
--ifm-tabs-color: var(--ifm-alert-foreground-color); | |
--ifm-tabs-color-active: var(--ifm-alert-foreground-color); | |
--ifm-tabs-color-active-border: var(--ifm-alert-border-color); | |
background-color: var(--ifm-alert-background-color); | |
border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color); | |
border-left-width: var(--ifm-alert-border-left-width); | |
border-radius: var(--ifm-alert-border-radius); | |
box-shadow: var(--ifm-alert-shadow); | |
color: var(--ifm-alert-foreground-color); | |
padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal); | |
} | |
.alert__heading { | |
font: bold var(--ifm-h5-font-size) / var(--ifm-heading-line-height) | |
var(--ifm-heading-font-family); | |
text-transform: uppercase; | |
align-items: center; | |
margin-bottom: 0.5rem; | |
display: flex; | |
} | |
.alert__icon { | |
margin-right: 0.4em; | |
display: inline-flex; | |
} | |
.alert__icon svg { | |
fill: var(--ifm-alert-foreground-color); | |
stroke: var(--ifm-alert-foreground-color); | |
stroke-width: 0; | |
} | |
.alert .close { | |
color: var(--ifm-alert-foreground-color); | |
margin: calc(var(--ifm-alert-padding-vertical) * -1) | |
calc(var(--ifm-alert-padding-horizontal) * -1) 0 0; | |
opacity: 0.75; | |
} | |
.alert .close:hover, | |
.alert .close:focus { | |
opacity: 1; | |
} | |
.alert a { | |
-webkit-text-decoration-color: var(--ifm-alert-border-color); | |
text-decoration-color: var(--ifm-alert-border-color); | |
} | |
.alert a:hover { | |
text-decoration-thickness: 2px; | |
} | |
.avatar { | |
-moz-column-gap: var(--ifm-avatar-intro-margin); | |
column-gap: var(--ifm-avatar-intro-margin); | |
display: flex; | |
} | |
.avatar__photo { | |
height: var(--ifm-avatar-photo-size); | |
width: var(--ifm-avatar-photo-size); | |
border-radius: 50%; | |
display: block; | |
overflow: hidden; | |
} | |
.avatar__photo--sm { | |
--ifm-avatar-photo-size: 2rem; | |
} | |
.avatar__photo--lg { | |
--ifm-avatar-photo-size: 4rem; | |
} | |
.avatar__photo--xl { | |
--ifm-avatar-photo-size: 6rem; | |
} | |
.avatar__intro { | |
text-align: var(--ifm-avatar-intro-alignment); | |
flex-direction: column; | |
flex: 1; | |
justify-content: center; | |
display: flex; | |
} | |
.avatar__name { | |
font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height) | |
var(--ifm-font-family-base); | |
} | |
.avatar__subtitle { | |
margin-top: 0.25rem; | |
} | |
.avatar--vertical { | |
--ifm-avatar-intro-alignment: center; | |
--ifm-avatar-intro-margin: 0.5rem; | |
flex-direction: column; | |
align-items: center; | |
} | |
.badge { | |
background-color: var(--ifm-badge-background-color); | |
border: var(--ifm-badge-border-width) solid var(--ifm-badge-border-color); | |
border-radius: var(--ifm-badge-border-radius); | |
color: var(--ifm-badge-color); | |
font-size: 75%; | |
font-weight: var(--ifm-font-weight-bold); | |
padding: var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal); | |
line-height: 1; | |
display: inline-block; | |
} | |
.badge--primary { | |
--ifm-badge-background-color: var(--ifm-color-primary); | |
--ifm-badge-border-color: var(--ifm-badge-background-color); | |
} | |
.badge--secondary { | |
--ifm-badge-background-color: var(--ifm-color-secondary); | |
--ifm-badge-border-color: var(--ifm-badge-background-color); | |
color: var(--ifm-color-black); | |
} | |
.badge--success { | |
--ifm-badge-background-color: var(--ifm-color-success); | |
--ifm-badge-border-color: var(--ifm-badge-background-color); | |
} | |
.badge--info { | |
--ifm-badge-background-color: var(--ifm-color-info); | |
--ifm-badge-border-color: var(--ifm-badge-background-color); | |
} | |
.badge--warning { | |
--ifm-badge-background-color: var(--ifm-color-warning); | |
--ifm-badge-border-color: var(--ifm-badge-background-color); | |
} | |
.badge--danger { | |
--ifm-badge-background-color: var(--ifm-color-danger); | |
--ifm-badge-border-color: var(--ifm-badge-background-color); | |
} | |
.breadcrumbs { | |
margin-bottom: 0; | |
padding-left: 0; | |
} | |
.breadcrumbs__item { | |
display: inline-block; | |
} | |
.breadcrumbs__item:not(:last-child):after { | |
background: var(--ifm-breadcrumb-separator) center; | |
content: " "; | |
filter: var(--ifm-breadcrumb-separator-filter); | |
height: calc( | |
var(--ifm-breadcrumb-separator-size) * var(--ifm-breadcrumb-size-multiplier) * | |
var(--ifm-breadcrumb-separator-size-multiplier) | |
); | |
margin: 0 var(--ifm-breadcrumb-spacing); | |
opacity: 0.5; | |
width: calc( | |
var(--ifm-breadcrumb-separator-size) * var(--ifm-breadcrumb-size-multiplier) * | |
var(--ifm-breadcrumb-separator-size-multiplier) | |
); | |
display: inline-block; | |
} | |
.breadcrumbs__item--active .breadcrumbs__link { | |
background: var(--ifm-breadcrumb-item-background-active); | |
color: var(--ifm-breadcrumb-color-active); | |
} | |
.breadcrumbs__link { | |
border-radius: var(--ifm-breadcrumb-border-radius); | |
color: var(--ifm-font-color-base); | |
font-size: calc(1rem * var(--ifm-breadcrumb-size-multiplier)); | |
padding: calc( | |
var(--ifm-breadcrumb-padding-vertical) * | |
var(--ifm-breadcrumb-size-multiplier) | |
) | |
calc( | |
var(--ifm-breadcrumb-padding-horizontal) * | |
var(--ifm-breadcrumb-size-multiplier) | |
); | |
transition-property: background, color; | |
transition-duration: var(--ifm-transition-fast); | |
transition-timing-function: var(--ifm-transition-timing-default); | |
display: inline-block; | |
} | |
.breadcrumbs__link:link:hover, | |
.breadcrumbs__link:visited:hover, | |
area[href].breadcrumbs__link:hover { | |
background: var(--ifm-breadcrumb-item-background-active); | |
text-decoration: none; | |
} | |
.breadcrumbs__link:any-link:hover { | |
background: var(--ifm-breadcrumb-item-background-active); | |
text-decoration: none; | |
} | |
.breadcrumbs--sm { | |
--ifm-breadcrumb-size-multiplier: 0.8; | |
} | |
.breadcrumbs--lg { | |
--ifm-breadcrumb-size-multiplier: 1.2; | |
} | |
.button { | |
background-color: var(--ifm-button-background-color); | |
border: var(--ifm-button-border-width) solid var(--ifm-button-border-color); | |
border-radius: var(--ifm-button-border-radius); | |
color: var(--ifm-button-color); | |
cursor: pointer; | |
font-size: calc(0.875rem * var(--ifm-button-size-multiplier)); | |
font-weight: var(--ifm-button-font-weight); | |
padding: calc( | |
var(--ifm-button-padding-vertical) * var(--ifm-button-size-multiplier) | |
) | |
calc( | |
var(--ifm-button-padding-horizontal) * var(--ifm-button-size-multiplier) | |
); | |
text-align: center; | |
-webkit-user-select: none; | |
user-select: none; | |
vertical-align: middle; | |
white-space: nowrap; | |
transition-property: color, background, border-color; | |
transition-duration: var(--ifm-button-transition-duration); | |
transition-timing-function: var(--ifm-transition-timing-default); | |
line-height: 1.5; | |
display: inline-block; | |
} | |
.button:hover { | |
color: var(--ifm-button-color); | |
text-decoration: none; | |
} | |
.button--outline { | |
--ifm-button-background-color: transparent; | |
--ifm-button-color: var(--ifm-button-border-color); | |
} | |
.button--outline:hover { | |
--ifm-button-background-color: var(--ifm-button-border-color); | |
} | |
.button--outline:hover, | |
.button--outline:active, | |
.button--outline.button--active { | |
--ifm-button-color: var(--ifm-font-color-base-inverse); | |
} | |
.button--link { | |
--ifm-button-background-color: transparent; | |
--ifm-button-border-color: transparent; | |
color: var(--ifm-link-color); | |
-webkit-text-decoration: var(--ifm-link-decoration); | |
text-decoration: var(--ifm-link-decoration); | |
} | |
.button--link:hover, | |
.button--link:active, | |
.button--link.button--active { | |
color: var(--ifm-link-hover-color); | |
-webkit-text-decoration: var(--ifm-link-hover-decoration); | |
text-decoration: var(--ifm-link-hover-decoration); | |
} | |
.button.disabled, | |
.button:disabled, | |
.button[disabled] { | |
opacity: 0.65; | |
pointer-events: none; | |
} | |
.button--sm { | |
--ifm-button-size-multiplier: 0.8; | |
} | |
.button--lg { | |
--ifm-button-size-multiplier: 1.35; | |
} | |
.button--block { | |
width: 100%; | |
display: block; | |
} | |
.button.button--secondary { | |
color: var(--ifm-color-gray-900); | |
} | |
.button.button--secondary.button--outline:not(.button--active):not(:hover) { | |
color: var(--ifm-font-color-base); | |
} | |
:where(.button--primary) { | |
--ifm-button-background-color: var(--ifm-color-primary); | |
--ifm-button-border-color: var(--ifm-color-primary); | |
} | |
:where(.button--primary):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-primary-dark); | |
--ifm-button-border-color: var(--ifm-color-primary-dark); | |
} | |
.button--primary:active, | |
.button--primary.button--active { | |
--ifm-button-background-color: var(--ifm-color-primary-darker); | |
--ifm-button-border-color: var(--ifm-color-primary-darker); | |
} | |
:where(.button--secondary) { | |
--ifm-button-background-color: var(--ifm-color-secondary); | |
--ifm-button-border-color: var(--ifm-color-secondary); | |
} | |
:where(.button--secondary):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-secondary-dark); | |
--ifm-button-border-color: var(--ifm-color-secondary-dark); | |
} | |
.button--secondary:active, | |
.button--secondary.button--active { | |
--ifm-button-background-color: var(--ifm-color-secondary-darker); | |
--ifm-button-border-color: var(--ifm-color-secondary-darker); | |
} | |
:where(.button--success) { | |
--ifm-button-background-color: var(--ifm-color-success); | |
--ifm-button-border-color: var(--ifm-color-success); | |
} | |
:where(.button--success):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-success-dark); | |
--ifm-button-border-color: var(--ifm-color-success-dark); | |
} | |
.button--success:active, | |
.button--success.button--active { | |
--ifm-button-background-color: var(--ifm-color-success-darker); | |
--ifm-button-border-color: var(--ifm-color-success-darker); | |
} | |
:where(.button--info) { | |
--ifm-button-background-color: var(--ifm-color-info); | |
--ifm-button-border-color: var(--ifm-color-info); | |
} | |
:where(.button--info):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-info-dark); | |
--ifm-button-border-color: var(--ifm-color-info-dark); | |
} | |
.button--info:active, | |
.button--info.button--active { | |
--ifm-button-background-color: var(--ifm-color-info-darker); | |
--ifm-button-border-color: var(--ifm-color-info-darker); | |
} | |
:where(.button--warning) { | |
--ifm-button-background-color: var(--ifm-color-warning); | |
--ifm-button-border-color: var(--ifm-color-warning); | |
} | |
:where(.button--warning):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-warning-dark); | |
--ifm-button-border-color: var(--ifm-color-warning-dark); | |
} | |
.button--warning:active, | |
.button--warning.button--active { | |
--ifm-button-background-color: var(--ifm-color-warning-darker); | |
--ifm-button-border-color: var(--ifm-color-warning-darker); | |
} | |
:where(.button--danger) { | |
--ifm-button-background-color: var(--ifm-color-danger); | |
--ifm-button-border-color: var(--ifm-color-danger); | |
} | |
:where(.button--danger):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-danger-dark); | |
--ifm-button-border-color: var(--ifm-color-danger-dark); | |
} | |
.button--danger:active, | |
.button--danger.button--active { | |
--ifm-button-background-color: var(--ifm-color-danger-darker); | |
--ifm-button-border-color: var(--ifm-color-danger-darker); | |
} | |
.button-group { | |
gap: var(--ifm-button-group-spacing); | |
display: inline-flex; | |
} | |
.button-group > .button:not(:first-child) { | |
border-top-left-radius: 0; | |
border-bottom-left-radius: 0; | |
} | |
.button-group > .button:not(:last-child) { | |
border-top-right-radius: 0; | |
border-bottom-right-radius: 0; | |
} | |
.button-group--block { | |
justify-content: stretch; | |
display: flex; | |
} | |
.button-group--block > .button { | |
flex-grow: 1; | |
} | |
.card { | |
background-color: var(--ifm-card-background-color); | |
border-radius: var(--ifm-card-border-radius); | |
box-shadow: var(--ifm-global-shadow-lw); | |
flex-direction: column; | |
display: flex; | |
overflow: hidden; | |
} | |
.card--full-height { | |
height: 100%; | |
} | |
.card__image { | |
padding-top: var(--ifm-card-vertical-spacing); | |
} | |
.card__image:first-child { | |
padding-top: 0; | |
} | |
.card__header, | |
.card__body, | |
.card__footer { | |
padding: var(--ifm-card-vertical-spacing) var(--ifm-card-horizontal-spacing); | |
} | |
.card__header:not(:last-child), | |
.card__body:not(:last-child), | |
.card__footer:not(:last-child) { | |
padding-bottom: 0; | |
} | |
.card__header > :last-child, | |
.card__body > :last-child, | |
.card__footer > :last-child { | |
margin-bottom: 0; | |
} | |
.card__footer { | |
margin-top: auto; | |
} | |
.table-of-contents { | |
padding: var(--ifm-toc-padding-vertical) 0; | |
margin-bottom: 0; | |
font-size: 0.8rem; | |
} | |
.table-of-contents, | |
.table-of-contents ul { | |
padding-left: var(--ifm-toc-padding-horizontal); | |
list-style: none; | |
} | |
.table-of-contents li { | |
margin: var(--ifm-toc-padding-vertical) var(--ifm-toc-padding-horizontal); | |
} | |
.table-of-contents__left-border { | |
border-left: 1px solid var(--ifm-toc-border-color); | |
} | |
.table-of-contents__link { | |
color: var(--ifm-toc-link-color); | |
display: block; | |
} | |
.table-of-contents__link:hover, | |
.table-of-contents__link:hover code, | |
.table-of-contents__link--active, | |
.table-of-contents__link--active code { | |
color: var(--ifm-color-primary); | |
text-decoration: none; | |
} | |
.close { | |
color: var(--ifm-color-black); | |
float: right; | |
font-size: 1.5rem; | |
font-weight: var(--ifm-font-weight-bold); | |
opacity: 0.5; | |
transition: opacity var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
padding: 1rem; | |
line-height: 1; | |
} | |
.close:hover { | |
opacity: 0.7; | |
} | |
.close:focus { | |
opacity: 0.8; | |
} | |
.dropdown { | |
font-weight: var(--ifm-dropdown-font-weight); | |
vertical-align: top; | |
display: inline-flex; | |
position: relative; | |
} | |
.dropdown--hoverable:hover .dropdown__menu, | |
.dropdown--show .dropdown__menu { | |
opacity: 1; | |
pointer-events: all; | |
visibility: visible; | |
transform: translateY(-1px); | |
} | |
.dropdown--right .dropdown__menu { | |
left: inherit; | |
right: 0; | |
} | |
.dropdown--nocaret .navbar__link:after { | |
content: none !important; | |
} | |
.dropdown__menu { | |
background-color: var(--ifm-dropdown-background-color); | |
border-radius: var(--ifm-global-radius); | |
box-shadow: var(--ifm-global-shadow-md); | |
opacity: 0; | |
pointer-events: none; | |
left: 0; | |
top: calc(100% - var(--ifm-navbar-item-padding-vertical) + 0.3rem); | |
visibility: hidden; | |
z-index: var(--ifm-z-index-dropdown); | |
transition-property: opacity, transform, visibility; | |
transition-duration: var(--ifm-transition-fast); | |
transition-timing-function: var(--ifm-transition-timing-default); | |
min-width: 10rem; | |
max-height: 80vh; | |
padding: 0.5rem; | |
list-style: none; | |
position: absolute; | |
overflow-y: auto; | |
transform: translateY(-0.625rem); | |
} | |
.dropdown__link { | |
color: var(--ifm-dropdown-link-color); | |
white-space: nowrap; | |
border-radius: 0.25rem; | |
margin-top: 0.2rem; | |
padding: 0.25rem 0.5rem; | |
font-size: 0.875rem; | |
display: block; | |
} | |
.dropdown__link:hover, | |
.dropdown__link--active { | |
background-color: var(--ifm-dropdown-hover-background-color); | |
color: var(--ifm-dropdown-link-color); | |
text-decoration: none; | |
} | |
.dropdown__link--active, | |
.dropdown__link--active:hover { | |
--ifm-dropdown-link-color: var(--ifm-link-color); | |
} | |
.dropdown > .navbar__link:after { | |
content: ""; | |
border: 0.4em solid #0000; | |
border-top-color: currentColor; | |
border-bottom: 0 solid; | |
margin-left: 0.3em; | |
display: inline-block; | |
position: relative; | |
top: 2px; | |
transform: translateY(-50%); | |
} | |
.footer { | |
background-color: var(--ifm-footer-background-color); | |
color: var(--ifm-footer-color); | |
padding: var(--ifm-footer-padding-vertical) | |
var(--ifm-footer-padding-horizontal); | |
} | |
.footer--dark { | |
--ifm-footer-background-color: #303846; | |
--ifm-footer-color: var(--ifm-footer-link-color); | |
--ifm-footer-link-color: var(--ifm-color-secondary); | |
--ifm-footer-title-color: var(--ifm-color-white); | |
} | |
.footer__links { | |
margin-bottom: 1rem; | |
} | |
.footer__link-item { | |
color: var(--ifm-footer-link-color); | |
line-height: 2; | |
} | |
.footer__link-item:hover { | |
color: var(--ifm-footer-link-hover-color); | |
} | |
.footer__link-separator { | |
margin: 0 var(--ifm-footer-link-horizontal-spacing); | |
} | |
.footer__logo { | |
max-width: var(--ifm-footer-logo-max-width); | |
margin-top: 1rem; | |
} | |
.footer__title { | |
color: var(--ifm-footer-title-color); | |
font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height) | |
var(--ifm-font-family-base); | |
margin-bottom: var(--ifm-heading-margin-bottom); | |
} | |
.footer__item { | |
margin-top: 0; | |
} | |
.footer__items { | |
margin-bottom: 0; | |
} | |
[type="checkbox"] { | |
padding: 0; | |
} | |
.hero { | |
background-color: var(--ifm-hero-background-color); | |
color: var(--ifm-hero-text-color); | |
align-items: center; | |
padding: 4rem 2rem; | |
display: flex; | |
} | |
.hero--primary { | |
--ifm-hero-background-color: var(--ifm-color-primary); | |
--ifm-hero-text-color: var(--ifm-font-color-base-inverse); | |
} | |
.hero--dark { | |
--ifm-hero-background-color: #303846; | |
--ifm-hero-text-color: var(--ifm-color-white); | |
} | |
.hero__title { | |
font-size: 3rem; | |
} | |
.hero__subtitle { | |
font-size: 1.5rem; | |
} | |
.menu { | |
font-weight: var(--ifm-font-weight-semibold); | |
overflow-x: hidden; | |
} | |
.menu__list { | |
margin: 0; | |
padding-left: 0; | |
list-style: none; | |
} | |
.menu__list .menu__list { | |
padding-left: var(--ifm-menu-link-padding-horizontal); | |
flex: 0 0 100%; | |
margin-top: 0.25rem; | |
} | |
.menu__list-item:not(:first-child) { | |
margin-top: 0.25rem; | |
} | |
.menu__list-item--collapsed .menu__list { | |
height: 0; | |
overflow: hidden; | |
} | |
.menu__list-item--collapsed .menu__link--sublist:after, | |
.menu__list-item--collapsed .menu__caret:before { | |
transform: rotate(90deg); | |
} | |
.menu__list-item-collapsible { | |
transition: background var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
border-radius: 0.25rem; | |
flex-wrap: wrap; | |
display: flex; | |
position: relative; | |
} | |
.menu__list-item-collapsible:hover, | |
.menu__list-item-collapsible--active { | |
background: var(--ifm-menu-color-background-hover); | |
} | |
.menu__list-item-collapsible .menu__link:hover, | |
.menu__list-item-collapsible .menu__link--active { | |
background: 0 0 !important; | |
} | |
.menu__link, | |
.menu__caret { | |
transition: background var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
border-radius: 0.25rem; | |
align-items: center; | |
display: flex; | |
} | |
.menu__link:hover, | |
.menu__caret:hover { | |
background: var(--ifm-menu-color-background-hover); | |
} | |
.menu__link { | |
color: var(--ifm-menu-color); | |
padding: var(--ifm-menu-link-padding-vertical) | |
var(--ifm-menu-link-padding-horizontal); | |
flex: 1; | |
line-height: 1.25; | |
} | |
.menu__link:hover { | |
color: var(--ifm-menu-color); | |
transition: color var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
text-decoration: none; | |
} | |
.menu__link--sublist-caret:after { | |
content: ""; | |
background: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem; | |
filter: var(--ifm-menu-link-sublist-icon-filter); | |
transition: transform var(--ifm-transition-fast) linear; | |
width: 1.25rem; | |
min-width: 1.25rem; | |
height: 1.25rem; | |
margin-left: auto; | |
transform: rotate(180deg); | |
} | |
.menu__link--active, | |
.menu__link--active:hover { | |
color: var(--ifm-menu-color-active); | |
} | |
.menu__link--active:not(.menu__link--sublist) { | |
background-color: var(--ifm-menu-color-background-active); | |
} | |
.menu__caret { | |
padding: var(--ifm-menu-link-padding-vertical) | |
var(--ifm-menu-link-padding-horizontal); | |
} | |
.menu__caret:before { | |
content: ""; | |
background: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem; | |
filter: var(--ifm-menu-link-sublist-icon-filter); | |
transition: transform var(--ifm-transition-fast) linear; | |
width: 1.25rem; | |
height: 1.25rem; | |
transform: rotate(180deg); | |
} | |
html[data-theme="dark"], | |
.navbar--dark { | |
--ifm-menu-link-sublist-icon-filter: invert(100%) sepia(94%) saturate(17%) | |
hue-rotate(223deg) brightness(104%) contrast(98%); | |
} | |
.navbar { | |
background-color: var(--ifm-navbar-background-color); | |
box-shadow: var(--ifm-navbar-shadow); | |
height: var(--ifm-navbar-height); | |
padding: var(--ifm-navbar-padding-vertical) | |
var(--ifm-navbar-padding-horizontal); | |
display: flex; | |
} | |
.navbar > .container, | |
.navbar > .container-fluid { | |
display: flex; | |
} | |
.navbar--fixed-top { | |
z-index: var(--ifm-z-index-fixed); | |
position: sticky; | |
top: 0; | |
} | |
.navbar__inner { | |
flex-wrap: wrap; | |
justify-content: space-between; | |
width: 100%; | |
display: flex; | |
} | |
.navbar__brand { | |
color: var(--ifm-navbar-link-color); | |
align-items: center; | |
min-width: 0; | |
margin-right: 1rem; | |
display: flex; | |
} | |
.navbar__brand:hover { | |
color: var(--ifm-navbar-link-hover-color); | |
text-decoration: none; | |
} | |
.navbar__title { | |
flex: auto; | |
} | |
.navbar__toggle { | |
margin-right: 0.5rem; | |
display: none; | |
} | |
.navbar__logo { | |
flex: none; | |
height: 2rem; | |
margin-right: 0.5rem; | |
} | |
.navbar__logo img { | |
height: 100%; | |
} | |
.navbar__items { | |
flex: 1; | |
align-items: center; | |
min-width: 0; | |
display: flex; | |
} | |
.navbar__items--center { | |
flex: none; | |
} | |
.navbar__items--center .navbar__brand { | |
margin: 0; | |
} | |
.navbar__items--center + .navbar__items--right { | |
flex: 1; | |
} | |
.navbar__items--right { | |
flex: none; | |
justify-content: flex-end; | |
} | |
.navbar__items--right > :last-child { | |
padding-right: 0; | |
} | |
.navbar__item { | |
padding: var(--ifm-navbar-item-padding-vertical) | |
var(--ifm-navbar-item-padding-horizontal); | |
display: inline-block; | |
} | |
.navbar__item.dropdown .navbar__link:not([href]) { | |
pointer-events: none; | |
} | |
.navbar__link { | |
color: var(--ifm-navbar-link-color); | |
font-weight: var(--ifm-font-weight-semibold); | |
} | |
.navbar__link:hover, | |
.navbar__link--active { | |
color: var(--ifm-navbar-link-hover-color); | |
text-decoration: none; | |
} | |
.navbar--dark, | |
.navbar--primary { | |
--ifm-menu-color: var(--ifm-color-gray-300); | |
--ifm-navbar-link-color: var(--ifm-color-gray-100); | |
--ifm-navbar-search-input-background-color: #ffffff1a; | |
--ifm-navbar-search-input-placeholder-color: #ffffff80; | |
color: var(--ifm-color-white); | |
} | |
.navbar--dark { | |
--ifm-navbar-background-color: #242526; | |
--ifm-navbar-link-hover-color: var(--ifm-color-primary); | |
--ifm-menu-color-background-active: #ffffff0d; | |
--ifm-navbar-search-input-color: var(--ifm-color-white); | |
} | |
.navbar--primary { | |
--ifm-navbar-background-color: var(--ifm-color-primary); | |
--ifm-navbar-link-hover-color: var(--ifm-color-white); | |
--ifm-menu-color-active: var(--ifm-color-white); | |
--ifm-navbar-search-input-color: var(--ifm-color-emphasis-500); | |
} | |
.navbar__search-input { | |
appearance: none; | |
background: var(--ifm-navbar-search-input-background-color) | |
var(--ifm-navbar-search-input-icon) no-repeat 0.75rem center/1rem 1rem; | |
color: var(--ifm-navbar-search-input-color); | |
cursor: text; | |
border: none; | |
border-radius: 2rem; | |
width: 12.5rem; | |
height: 2rem; | |
padding: 0 0.5rem 0 2.25rem; | |
font-size: 1rem; | |
display: inline-block; | |
} | |
.navbar__search-input::placeholder { | |
color: var(--ifm-navbar-search-input-placeholder-color); | |
} | |
.navbar-sidebar { | |
background-color: var(--ifm-navbar-background-color); | |
box-shadow: var(--ifm-global-shadow-md); | |
opacity: 0; | |
visibility: hidden; | |
width: var(--ifm-navbar-sidebar-width); | |
transition-property: opacity, visibility, transform; | |
transition-duration: var(--ifm-transition-fast); | |
transition-timing-function: ease-in-out; | |
position: fixed; | |
top: 0; | |
bottom: 0; | |
left: 0; | |
overflow-x: hidden; | |
transform: translate(-100%); | |
} | |
.navbar-sidebar--show .navbar-sidebar, | |
.navbar-sidebar--show .navbar-sidebar__backdrop { | |
opacity: 1; | |
visibility: visible; | |
} | |
.navbar-sidebar--show .navbar-sidebar { | |
transform: translate(0, 0); | |
} | |
.navbar-sidebar__backdrop { | |
opacity: 0; | |
visibility: hidden; | |
transition-property: opacity, visibility; | |
transition-duration: var(--ifm-transition-fast); | |
background-color: #0009; | |
transition-timing-function: ease-in-out; | |
position: fixed; | |
inset: 0; | |
} | |
.navbar-sidebar__brand { | |
box-shadow: var(--ifm-navbar-shadow); | |
height: var(--ifm-navbar-height); | |
padding: var(--ifm-navbar-padding-vertical) | |
var(--ifm-navbar-padding-horizontal); | |
flex: 1; | |
align-items: center; | |
display: flex; | |
} | |
.navbar-sidebar__items { | |
height: calc(100% - var(--ifm-navbar-height)); | |
transition: transform var(--ifm-transition-fast) ease-in-out; | |
display: flex; | |
transform: translateZ(0); | |
} | |
.navbar-sidebar__items--show-secondary { | |
transform: translate3d(calc((var(--ifm-navbar-sidebar-width)) * -1), 0, 0); | |
} | |
.navbar-sidebar__item { | |
width: calc(var(--ifm-navbar-sidebar-width)); | |
flex-shrink: 0; | |
padding: 0.5rem; | |
} | |
.navbar-sidebar__back { | |
background: var(--ifm-menu-color-background-active); | |
font-size: 15px; | |
font-weight: var(--ifm-button-font-weight); | |
text-align: left; | |
width: calc(100% + 1rem); | |
margin: 0 0 0.2rem -0.5rem; | |
padding: 0.6rem 1.5rem; | |
position: relative; | |
top: -0.5rem; | |
} | |
.navbar-sidebar__close { | |
margin-left: auto; | |
display: flex; | |
} | |
.pagination { | |
-moz-column-gap: var(--ifm-pagination-page-spacing); | |
column-gap: var(--ifm-pagination-page-spacing); | |
font-size: var(--ifm-pagination-font-size); | |
padding-left: 0; | |
display: flex; | |
} | |
.pagination--sm { | |
--ifm-pagination-font-size: 0.8rem; | |
--ifm-pagination-padding-horizontal: 0.8rem; | |
--ifm-pagination-padding-vertical: 0.2rem; | |
} | |
.pagination--lg { | |
--ifm-pagination-font-size: 1.2rem; | |
--ifm-pagination-padding-horizontal: 1.2rem; | |
--ifm-pagination-padding-vertical: 0.3rem; | |
} | |
.pagination__item { | |
display: inline-flex; | |
} | |
.pagination__item > span { | |
padding: var(--ifm-pagination-padding-vertical); | |
} | |
.pagination__item--active .pagination__link { | |
background: var(--ifm-pagination-item-active-background); | |
color: var(--ifm-pagination-color-active); | |
} | |
.pagination__item:not(.pagination__item--active):hover .pagination__link { | |
background: var(--ifm-pagination-item-active-background); | |
} | |
.pagination__item--disabled, | |
.pagination__item[disabled] { | |
opacity: 0.25; | |
pointer-events: none; | |
} | |
.pagination__link { | |
border-radius: var(--ifm-pagination-border-radius); | |
color: var(--ifm-font-color-base); | |
padding: var(--ifm-pagination-padding-vertical) | |
var(--ifm-pagination-padding-horizontal); | |
transition: background var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
display: inline-block; | |
} | |
.pagination__link:hover { | |
text-decoration: none; | |
} | |
.pagination-nav { | |
grid-gap: var(--ifm-spacing-horizontal); | |
gap: var(--ifm-spacing-horizontal); | |
grid-template-columns: repeat(2, 1fr); | |
display: grid; | |
} | |
.pagination-nav__link { | |
border: 1px solid var(--ifm-color-emphasis-300); | |
border-radius: var(--ifm-pagination-nav-border-radius); | |
line-height: var(--ifm-heading-line-height); | |
padding: var(--ifm-global-spacing); | |
transition: border-color var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
height: 100%; | |
display: block; | |
} | |
.pagination-nav__link:hover { | |
border-color: var(--ifm-pagination-nav-color-hover); | |
text-decoration: none; | |
} | |
.pagination-nav__link--next { | |
text-align: right; | |
grid-column: 2/3; | |
} | |
.pagination-nav__label { | |
font-size: var(--ifm-h4-font-size); | |
font-weight: var(--ifm-heading-font-weight); | |
word-break: break-word; | |
} | |
.pagination-nav__link--prev .pagination-nav__label:before { | |
content: "« "; | |
} | |
.pagination-nav__link--next .pagination-nav__label:after { | |
content: " »"; | |
} | |
.pagination-nav__sublabel { | |
color: var(--ifm-color-content-secondary); | |
font-size: var(--ifm-h5-font-size); | |
font-weight: var(--ifm-font-weight-semibold); | |
margin-bottom: 0.25rem; | |
} | |
.pills { | |
gap: var(--ifm-pills-spacing); | |
padding-left: 0; | |
display: flex; | |
} | |
.pills__item { | |
cursor: pointer; | |
font-weight: var(--ifm-font-weight-bold); | |
transition: background var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
border-radius: 0.5rem; | |
padding: 0.25rem 1rem; | |
display: inline-block; | |
} | |
.pills__item--active { | |
background: var(--ifm-pills-color-background-active); | |
color: var(--ifm-pills-color-active); | |
} | |
.pills__item:not(.pills__item--active):hover { | |
background: var(--ifm-pills-color-background-active); | |
} | |
.pills--block { | |
justify-content: stretch; | |
} | |
.pills--block .pills__item { | |
text-align: center; | |
flex-grow: 1; | |
} | |
.tabs { | |
color: var(--ifm-tabs-color); | |
font-weight: var(--ifm-font-weight-bold); | |
margin-bottom: 0; | |
padding-left: 0; | |
display: flex; | |
overflow-x: auto; | |
} | |
.tabs__item { | |
border-radius: var(--ifm-global-radius); | |
cursor: pointer; | |
padding: var(--ifm-tabs-padding-vertical) var(--ifm-tabs-padding-horizontal); | |
transition: background-color var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
border-bottom: 3px solid #0000; | |
display: inline-flex; | |
} | |
.tabs__item--active { | |
border-bottom-color: var(--ifm-tabs-color-active-border); | |
color: var(--ifm-tabs-color-active); | |
border-bottom-right-radius: 0; | |
border-bottom-left-radius: 0; | |
} | |
.tabs__item:hover { | |
background-color: var(--ifm-hover-overlay); | |
} | |
.tabs--block { | |
justify-content: stretch; | |
} | |
.tabs--block .tabs__item { | |
flex-grow: 1; | |
justify-content: center; | |
} | |
html[data-theme="dark"] { | |
--ifm-color-scheme: dark; | |
--ifm-color-emphasis-0: var(--ifm-color-gray-1000); | |
--ifm-color-emphasis-100: var(--ifm-color-gray-900); | |
--ifm-color-emphasis-200: var(--ifm-color-gray-800); | |
--ifm-color-emphasis-300: var(--ifm-color-gray-700); | |
--ifm-color-emphasis-400: var(--ifm-color-gray-600); | |
--ifm-color-emphasis-500: var(--ifm-color-gray-500); | |
--ifm-color-emphasis-600: var(--ifm-color-gray-400); | |
--ifm-color-emphasis-700: var(--ifm-color-gray-300); | |
--ifm-color-emphasis-800: var(--ifm-color-gray-200); | |
--ifm-color-emphasis-900: var(--ifm-color-gray-100); | |
--ifm-color-emphasis-1000: var(--ifm-color-gray-0); | |
--ifm-background-color: #1b1b1d; | |
--ifm-background-surface-color: #242526; | |
--ifm-hover-overlay: #ffffff0d; | |
--ifm-color-content: #e3e3e3; | |
--ifm-color-content-secondary: #fff; | |
--ifm-breadcrumb-separator-filter: invert(64%) sepia(11%) saturate(0%) | |
hue-rotate(149deg) brightness(99%) contrast(95%); | |
--ifm-code-background: #ffffff1a; | |
--ifm-scrollbar-track-background-color: #444; | |
--ifm-scrollbar-thumb-background-color: #686868; | |
--ifm-scrollbar-thumb-hover-background-color: #7a7a7a; | |
--ifm-table-stripe-background: #ffffff12; | |
--ifm-toc-border-color: var(--ifm-color-emphasis-200); | |
--ifm-color-primary-contrast-background: #102445; | |
--ifm-color-primary-contrast-foreground: #ebf2fc; | |
--ifm-color-secondary-contrast-background: #474748; | |
--ifm-color-secondary-contrast-foreground: #fdfdfe; | |
--ifm-color-success-contrast-background: #003100; | |
--ifm-color-success-contrast-foreground: #e6f6e6; | |
--ifm-color-info-contrast-background: #193c47; | |
--ifm-color-info-contrast-foreground: #eef9fd; | |
--ifm-color-warning-contrast-background: #4d3800; | |
--ifm-color-warning-contrast-foreground: #fff8e6; | |
--ifm-color-danger-contrast-background: #4b1113; | |
--ifm-color-danger-contrast-foreground: #ffebec; | |
} | |
@media (min-width: 1440px) { | |
.container { | |
max-width: var(--ifm-container-width-xl); | |
} | |
} | |
@media (max-width: 996px) { | |
.col { | |
--ifm-col-width: 100%; | |
flex-basis: var(--ifm-col-width); | |
margin-left: 0; | |
} | |
.footer { | |
--ifm-footer-padding-horizontal: 0; | |
} | |
.footer__link-separator { | |
display: none; | |
} | |
.footer__col { | |
margin-bottom: calc(var(--ifm-spacing-vertical) * 3); | |
} | |
.footer__link-item { | |
width: max-content; | |
display: block; | |
} | |
.hero { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
.navbar > .container, | |
.navbar > .container-fluid { | |
padding: 0; | |
} | |
.navbar__toggle { | |
display: inherit; | |
} | |
.navbar__item { | |
display: none; | |
} | |
.navbar__search-input { | |
width: 9rem; | |
} | |
.pills--block, | |
.tabs--block { | |
flex-direction: column; | |
} | |
} | |
@media (max-width: 576px) { | |
.markdown h1:first-child { | |
--ifm-h1-font-size: 2rem; | |
} | |
.markdown > h2 { | |
--ifm-h2-font-size: 1.5rem; | |
} | |
.markdown > h3 { | |
--ifm-h3-font-size: 1.25rem; | |
} | |
} | |
@media (pointer: fine) { | |
.thin-scrollbar { | |
scrollbar-width: thin; | |
} | |
.thin-scrollbar::-webkit-scrollbar { | |
height: var(--ifm-scrollbar-size); | |
width: var(--ifm-scrollbar-size); | |
} | |
.thin-scrollbar::-webkit-scrollbar-track { | |
background: var(--ifm-scrollbar-track-background-color); | |
border-radius: 10px; | |
} | |
.thin-scrollbar::-webkit-scrollbar-thumb { | |
background: var(--ifm-scrollbar-thumb-background-color); | |
border-radius: 10px; | |
} | |
.thin-scrollbar::-webkit-scrollbar-thumb:hover { | |
background: var(--ifm-scrollbar-thumb-hover-background-color); | |
} | |
} | |
@media (prefers-reduced-motion: reduce) { | |
:root { | |
--ifm-transition-fast: 0s; | |
--ifm-transition-slow: 0s; | |
} | |
} | |
@media print { | |
.table-of-contents, | |
.footer, | |
.menu, | |
.navbar, | |
.pagination-nav { | |
display: none; | |
} | |
.tabs { | |
page-break-inside: avoid; | |
} | |
} | |
:root { | |
--docusaurus-progress-bar-color: var(--ifm-color-primary); | |
} | |
#nprogress { | |
pointer-events: none; | |
} | |
#nprogress .bar { | |
background: var(--docusaurus-progress-bar-color); | |
z-index: 1031; | |
width: 100%; | |
height: 2px; | |
position: fixed; | |
top: 0; | |
left: 0; | |
} | |
#nprogress .peg { | |
box-shadow: | |
0 0 10px var(--docusaurus-progress-bar-color), | |
0 0 5px var(--docusaurus-progress-bar-color); | |
opacity: 1; | |
width: 100px; | |
height: 100%; | |
position: absolute; | |
right: 0; | |
transform: rotate(3deg) translateY(-4px); | |
} | |
[data-rmiz] { | |
position: relative; | |
} | |
[data-rmiz-ghost] { | |
pointer-events: none; | |
position: absolute; | |
} | |
[data-rmiz-btn-zoom], | |
[data-rmiz-btn-unzoom] { | |
color: #fff; | |
outline-offset: 2px; | |
touch-action: manipulation; | |
appearance: none; | |
background-color: #000000b3; | |
border: none; | |
border-radius: 50%; | |
width: 40px; | |
height: 40px; | |
margin: 0; | |
padding: 9px; | |
box-shadow: 0 0 1px #ffffff80; | |
} | |
[data-rmiz-btn-zoom]:not(:focus):not(:active) { | |
clip: rect(0 0 0 0); | |
clip-path: inset(50%); | |
pointer-events: none; | |
white-space: nowrap; | |
width: 1px; | |
height: 1px; | |
position: absolute; | |
overflow: hidden; | |
} | |
[data-rmiz-btn-zoom] { | |
cursor: zoom-in; | |
position: absolute; | |
inset: 10px 10px auto auto; | |
} | |
[data-rmiz-btn-unzoom] { | |
cursor: zoom-out; | |
z-index: 1; | |
position: absolute; | |
inset: 20px 20px auto auto; | |
} | |
[data-rmiz-content="found"] img, | |
[data-rmiz-content="found"] svg, | |
[data-rmiz-content="found"] [role="img"], | |
[data-rmiz-content="found"] [data-zoom] { | |
cursor: zoom-in; | |
} | |
[data-rmiz-modal]::backdrop { | |
display: none; | |
} | |
[data-rmiz-modal][open] { | |
background: 0 0; | |
border: 0; | |
width: 100svw; | |
max-width: none; | |
height: 100svh; | |
max-height: none; | |
margin: 0; | |
padding: 0; | |
position: fixed; | |
overflow: hidden; | |
} | |
[data-rmiz-modal-overlay] { | |
transition: background-color 0.3s; | |
position: absolute; | |
inset: 0; | |
} | |
[data-rmiz-modal-overlay="hidden"] { | |
background-color: #fff0; | |
} | |
[data-rmiz-modal-content] { | |
width: 100%; | |
height: 100%; | |
position: relative; | |
} | |
[data-rmiz-modal-img] { | |
cursor: zoom-out; | |
image-rendering: high-quality; | |
transform-origin: 0 0; | |
transition: transform 0.3s; | |
position: absolute; | |
} | |
@media (prefers-reduced-motion: reduce) { | |
[data-rmiz-modal-overlay], | |
[data-rmiz-modal-img] { | |
transition-duration: 0.01ms !important; | |
} | |
} | |
:root { | |
--site-primary-hue-saturation: 167 68%; | |
--site-primary-hue-saturation-light: 167 56%; | |
--site-color-feedback-background: #f0f8ff; | |
--docusaurus-highlighted-code-line-bg: #0000001a; | |
--ifm-breadcrumb-color-active: var(--ifm-color-primary-darker) !important; | |
--ifm-menu-color-active: var(--ifm-color-primary-darker) !important; | |
} | |
html[data-theme="dark"] { | |
--site-color-feedback-background: #2a2929; | |
--docusaurus-highlighted-code-line-bg: #42424259; | |
} | |
[data-theme="light"] { | |
--ifm-color-primary: hsl(var(--site-primary-hue-saturation) 30%); | |
--ifm-color-primary-dark: hsl(var(--site-primary-hue-saturation) 26%); | |
--ifm-color-primary-darker: hsl(var(--site-primary-hue-saturation) 23%); | |
--ifm-color-primary-darkest: hsl(var(--site-primary-hue-saturation) 17%); | |
--ifm-color-primary-light: hsl(var(--site-primary-hue-saturation-light) 39%); | |
--ifm-color-primary-lighter: hsl( | |
var(--site-primary-hue-saturation-light) 47% | |
); | |
--ifm-color-primary-lightest: hsl( | |
var(--site-primary-hue-saturation-light) 58% | |
); | |
} | |
[data-theme="dark"] { | |
--ifm-color-primary: hsl(var(--site-primary-hue-saturation) 45%); | |
--ifm-color-primary-dark: hsl(var(--site-primary-hue-saturation) 41%); | |
--ifm-color-primary-darker: hsl(var(--site-primary-hue-saturation) 38%); | |
--ifm-color-primary-darkest: hsl(var(--site-primary-hue-saturation) 32%); | |
--ifm-color-primary-light: hsl(var(--site-primary-hue-saturation-light) 54%); | |
--ifm-color-primary-lighter: hsl( | |
var(--site-primary-hue-saturation-light) 62% | |
); | |
--ifm-color-primary-lightest: hsl( | |
var(--site-primary-hue-saturation-light) 73% | |
); | |
} | |
.header-github-link:before { | |
content: ""; | |
background-color: var(--ifm-navbar-link-color); | |
transition: background-color var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
width: 24px; | |
height: 24px; | |
display: flex; | |
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E"); | |
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E"); | |
} | |
.header-github-link:hover:before { | |
background-color: var(--ifm-navbar-link-hover-color); | |
} | |
.footer--dark { | |
--ifm-footer-background-color: #2b3137; | |
} | |
.unique-tabs .tabs__item { | |
margin-right: 8px; | |
line-height: 16px; | |
} | |
.unique-tabs .tabs__item--active { | |
color: #fff; | |
border-radius: var(--ifm-global-radius); | |
background-color: var(--ifm-tabs-color-active); | |
border: 0; | |
} | |
[data-theme="light"] .themedDocusaurus [fill="\#FFFF50"] { | |
fill: #adff2f; | |
} | |
[data-theme="dark"] .themedDocusaurus [fill="\#FFFF50"] { | |
fill: #2e8b57; | |
} | |
[data-theme="light"] .DocSearch { | |
--docsearch-muted-color: var(--ifm-color-emphasis-700); | |
--docsearch-container-background: #5e6470b3; | |
--docsearch-modal-background: var(--ifm-color-secondary-lighter); | |
--docsearch-searchbox-background: var(--ifm-color-secondary); | |
--docsearch-searchbox-focus-background: var(--ifm-color-white); | |
--docsearch-hit-color: var(--ifm-font-color-base); | |
--docsearch-hit-active-color: var(--ifm-color-white); | |
--docsearch-hit-background: var(--ifm-color-white); | |
--docsearch-footer-background: var(--ifm-color-white); | |
} | |
[data-theme="dark"] .DocSearch { | |
--docsearch-text-color: var(--ifm-font-color-base); | |
--docsearch-muted-color: var(--ifm-color-secondary-darkest); | |
--docsearch-container-background: #2f3745b3; | |
--docsearch-modal-background: var(--ifm-background-color); | |
--docsearch-searchbox-background: var(--ifm-background-color); | |
--docsearch-searchbox-focus-background: var(--ifm-color-black); | |
--docsearch-hit-color: var(--ifm-font-color-base); | |
--docsearch-hit-active-color: var(--ifm-color-white); | |
--docsearch-hit-background: var(--ifm-color-emphasis-100); | |
--docsearch-footer-background: var(--ifm-background-surface-color); | |
--docsearch-key-gradient: linear-gradient( | |
-26.5deg, | |
var(--ifm-color-emphasis-200) 0%, | |
var(--ifm-color-emphasis-100) 100% | |
); | |
} | |
div[class^="announcementBar_"] { | |
--site-announcement-bar-stripe-color1: #e8d7ff; | |
--site-announcement-bar-stripe-color2: #ffe9d1; | |
background: repeating-linear-gradient( | |
35deg, | |
var(--site-announcement-bar-stripe-color1), | |
var(--site-announcement-bar-stripe-color1) 20px, | |
var(--site-announcement-bar-stripe-color2) 10px, | |
var(--site-announcement-bar-stripe-color2) 40px | |
); | |
font-size: 20px; | |
font-weight: 700; | |
} | |
.screen-reader-only { | |
clip: rect(0 0 0 0); | |
clip-path: polygon(0 0, 0 0, 0 0); | |
white-space: nowrap; | |
border: 0; | |
width: 1px; | |
height: 1px; | |
margin: -1px; | |
padding: 0; | |
position: absolute; | |
overflow: hidden; | |
} | |
[data-theme="light"] img[src$="\#gh-dark-mode-only"], | |
[data-theme="dark"] img[src$="\#gh-light-mode-only"] { | |
display: none; | |
} | |
.test-marker-site-custom-css-unique-rule { | |
content: "site-custom-css-unique-rule"; | |
} | |
.video-container { | |
width: 100%; | |
max-width: 560px; | |
margin: 0 auto; | |
position: relative; | |
overflow: hidden; | |
} | |
.yt-lite > .lty-playbtn { | |
cursor: pointer; | |
border: 0; | |
} | |
.dropdown-separator { | |
margin: 0.3rem 0; | |
} | |
.dropdown-archived-versions { | |
padding: 0.2rem 0.5rem; | |
font-size: 0.875rem; | |
} | |
.code-block-error-line { | |
margin: 0 calc(-1 * var(--ifm-pre-padding)); | |
padding: 0 var(--ifm-pre-padding); | |
background-color: #ff000020; | |
border-left: 3px solid #ff000080; | |
display: block; | |
} | |
[data-rmiz-modal-overlay="visible"] { | |
background-color: #fffffff2; | |
} | |
[data-theme="dark"] [data-rmiz-modal-overlay="visible"] { | |
background-color: #000000f2; | |
} | |
html[data-navbar="false"] .navbar { | |
display: none; | |
} | |
html[data-red-border] div#__docusaurus { | |
border: thick solid red; | |
} | |
html.plugin-docs.plugin-id-docs-tests .red > a { | |
color: red; | |
} | |
html.plugin-docs.plugin-id-docs-tests .navbar { | |
border-bottom: thin solid #0ff; | |
} | |
html.plugin-blog.plugin-id-blog-tests .navbar { | |
border-bottom: thin solid #0f0; | |
} | |
html.plugin-pages.plugin-id-pages-tests .navbar { | |
border-bottom: thin solid #ff0; | |
} | |
#z-index-test { | |
z-index: 100; | |
} | |
html:has(#navbar-dropdown-tests) .navbar__item.dropdown ~ a { | |
display: none; | |
} | |
.test-marker-site-client-module { | |
content: "site-client-module"; | |
} | |
.container_tECh { | |
color: #fff; | |
background-color: #18191a; | |
min-height: 100vh; | |
padding: 80px 20px 20px; | |
overflow-x: hidden; | |
} | |
.container_tECh code { | |
color: #fff; | |
background-color: #444950; | |
} | |
.nav_sWk6 { | |
z-index: 1; | |
background-color: #242526; | |
justify-content: space-evenly; | |
align-items: center; | |
width: 100%; | |
height: 3.75rem; | |
display: flex; | |
position: fixed; | |
} | |
.navlink__gTJ { | |
color: #fff; | |
text-align: center; | |
border-radius: 4px; | |
padding: 6px; | |
font-size: clamp(12px, 4vw, 16px); | |
font-weight: 500; | |
} | |
.navlink__gTJ:hover { | |
background-color: #292a2b; | |
text-decoration: none; | |
} | |
.active_Uuwz { | |
background-color: #363739; | |
} | |
@media screen and (min-width: 800px) { | |
.nav_sWk6 { | |
float: left; | |
background-color: #18191a; | |
border-right: 1px solid #606770; | |
flex-direction: column; | |
justify-content: flex-start; | |
align-items: center; | |
width: 200px; | |
height: 100vh; | |
padding-top: 20px; | |
} | |
.navlink__gTJ { | |
text-align: left; | |
width: 80%; | |
margin-top: 20px; | |
} | |
.container_tECh { | |
float: right; | |
width: calc(100% - 200px); | |
padding-top: 40px; | |
} | |
} | |
.containerParaiso_TYa3 { | |
cursor: default; | |
background-color: #292a2b; | |
border-radius: 4px; | |
margin-top: 10px; | |
padding: 10px; | |
font-family: monospace; | |
font-size: 13px; | |
position: relative; | |
} | |
.basicElementParaiso_DqvR { | |
color: #fff; | |
border-left: 1px solid #4f424c; | |
padding: 3px 5px 3px 20px; | |
} | |
.labelParaiso_l3ql { | |
color: #e7e9db; | |
letter-spacing: 0.5px; | |
margin-right: 3px; | |
} | |
.nullValueParaiso_Ey4X { | |
color: #fec418; | |
text-transform: uppercase; | |
background-color: #4f424c; | |
border-radius: 3px; | |
padding: 1px 2px; | |
font-size: 11px; | |
font-weight: 700; | |
display: inline-block; | |
} | |
.undefinedValueParaiso__T3e { | |
color: #8d8687; | |
} | |
.stringValueParaiso_T6i7 { | |
color: #f99b15; | |
} | |
.booleanValueParaiso__TSh { | |
color: #815ba4; | |
} | |
.numberValueParaiso_JGW0 { | |
color: #e96ba8; | |
} | |
.otherValueParaiso_nnwW, | |
.punctuationParaiso_knwc { | |
color: #fff; | |
} | |
.expandIconParaiso_fAkX { | |
color: #815ba4; | |
vertical-align: baseline; | |
margin-right: 3px; | |
font-size: 22px; | |
line-height: 10px; | |
display: inline-block; | |
} | |
.collapseIconParaiso_MWEp:after { | |
content: "▾"; | |
} | |
.collapseIconParaiso_MWEp { | |
color: #06b6ef; | |
vertical-align: baseline; | |
margin-right: 3px; | |
font-size: 22px; | |
line-height: 10px; | |
display: inline-block; | |
} | |
.expandIconParaiso_fAkX:after { | |
content: "▸"; | |
} | |
.collapseContentParaiso_KH36 { | |
color: #f99b15; | |
cursor: pointer; | |
font-size: 18px; | |
line-height: 10px; | |
} | |
.collapseContentParaiso_KH36:after { | |
content: "..."; | |
} | |
.listItem_lSSi { | |
background-color: #242526; | |
border-radius: 4px; | |
margin-bottom: 20px; | |
padding: 10px; | |
} | |
.sectionTitle_T1wU { | |
margin-top: 20px; | |
} | |
.listItem_Bobk { | |
background-color: #242526; | |
border-radius: 4px; | |
margin-bottom: 20px; | |
padding: 10px; | |
} | |
.version_gVgE { | |
float: right; | |
} | |
.name_C0v7 { | |
color: #e06b6b; | |
font-weight: 800; | |
} | |
.listItem_zpSX { | |
background-color: #242526; | |
border-radius: 4px; | |
margin-bottom: 20px; | |
padding: 10px; | |
} | |
.route_X3At { | |
margin-bottom: 10px; | |
} | |
.routeName_j49z { | |
color: #e06b6b; | |
} | |
.backToTopButton_PuQw { | |
background-color: var(--ifm-color-emphasis-200); | |
z-index: calc(var(--ifm-z-index-fixed) - 1); | |
box-shadow: var(--ifm-global-shadow-lw); | |
transition: all var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
opacity: 0; | |
visibility: hidden; | |
border-radius: 50%; | |
width: 3rem; | |
height: 3rem; | |
position: fixed; | |
bottom: 1.3rem; | |
right: 1.3rem; | |
transform: scale(0); | |
} | |
.backToTopButton_PuQw:after { | |
content: " "; | |
-webkit-mask: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat; | |
-webkit-mask: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat; | |
mask: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat; | |
background-color: var(--ifm-color-emphasis-1000); | |
width: 100%; | |
height: 100%; | |
display: inline-block; | |
} | |
@media (hover: hover) { | |
.backToTopButton_PuQw:hover { | |
background-color: var(--ifm-color-emphasis-300); | |
} | |
} | |
.backToTopButtonShow_YSA3 { | |
opacity: 1; | |
visibility: visible; | |
transform: scale(1); | |
} | |
:root { | |
--docsearch-primary-color: #5468ff; | |
--docsearch-text-color: #1c1e21; | |
--docsearch-spacing: 12px; | |
--docsearch-icon-stroke-width: 1.4; | |
--docsearch-highlight-color: var(--docsearch-primary-color); | |
--docsearch-muted-color: #969faf; | |
--docsearch-container-background: #656c85cc; | |
--docsearch-logo-color: #5468ff; | |
--docsearch-modal-width: 560px; | |
--docsearch-modal-height: 600px; | |
--docsearch-modal-background: #f5f6f7; | |
--docsearch-modal-shadow: inset 1px 1px 0 0 #ffffff80, 0 3px 8px 0 #555a64; | |
--docsearch-searchbox-height: 56px; | |
--docsearch-searchbox-background: #ebedf0; | |
--docsearch-searchbox-focus-background: #fff; | |
--docsearch-searchbox-shadow: inset 0 0 0 2px var(--docsearch-primary-color); | |
--docsearch-hit-height: 56px; | |
--docsearch-hit-color: #444950; | |
--docsearch-hit-active-color: #fff; | |
--docsearch-hit-background: #fff; | |
--docsearch-hit-shadow: 0 1px 3px 0 #d4d9e1; | |
--docsearch-key-gradient: linear-gradient(-225deg, #d5dbe4, #f8f8f8); | |
--docsearch-key-shadow: inset 0 -2px 0 0 #cdcde6, inset 0 0 1px 1px #fff, | |
0 1px 2px 1px #1e235a66; | |
--docsearch-footer-height: 44px; | |
--docsearch-footer-background: #fff; | |
--docsearch-footer-shadow: 0 -1px 0 0 #e0e3e8, 0 -3px 6px 0 #45629b1f; | |
} | |
html[data-theme="dark"] { | |
--docsearch-text-color: #f5f6f7; | |
--docsearch-container-background: #090a11cc; | |
--docsearch-modal-background: #15172a; | |
--docsearch-modal-shadow: inset 1px 1px 0 0 #2c2e40, 0 3px 8px 0 #000309; | |
--docsearch-searchbox-background: #090a11; | |
--docsearch-searchbox-focus-background: #000; | |
--docsearch-hit-color: #bec3c9; | |
--docsearch-hit-shadow: none; | |
--docsearch-hit-background: #090a11; | |
--docsearch-key-gradient: linear-gradient(-26.5deg, #565872, #31355b); | |
--docsearch-key-shadow: inset 0 -2px 0 0 #282d55, inset 0 0 1px 1px #51577d, | |
0 2px 2px 0 #0304094d; | |
--docsearch-footer-background: #1e2136; | |
--docsearch-footer-shadow: inset 0 1px 0 0 #494c6a80, 0 -4px 8px 0 #0003; | |
--docsearch-logo-color: #fff; | |
--docsearch-muted-color: #7f8497; | |
} | |
.DocSearch-Button { | |
background: var(--docsearch-searchbox-background); | |
color: var(--docsearch-muted-color); | |
cursor: pointer; | |
-webkit-user-select: none; | |
user-select: none; | |
border: 0; | |
border-radius: 40px; | |
justify-content: space-between; | |
align-items: center; | |
height: 36px; | |
margin: 0 0 0 16px; | |
padding: 0 8px; | |
font-weight: 500; | |
display: flex; | |
} | |
.DocSearch-Button:active, | |
.DocSearch-Button:focus, | |
.DocSearch-Button:hover { | |
background: var(--docsearch-searchbox-focus-background); | |
box-shadow: var(--docsearch-searchbox-shadow); | |
color: var(--docsearch-text-color); | |
outline: none; | |
} | |
.DocSearch-Button-Container { | |
align-items: center; | |
display: flex; | |
} | |
.DocSearch-Search-Icon { | |
stroke-width: 1.6px; | |
} | |
.DocSearch-Button .DocSearch-Search-Icon { | |
color: var(--docsearch-text-color); | |
} | |
.DocSearch-Button-Placeholder { | |
padding: 0 12px 0 6px; | |
font-size: 1rem; | |
} | |
.DocSearch-Button-Keys { | |
min-width: calc(40px + 0.8em); | |
display: flex; | |
} | |
.DocSearch-Button-Key { | |
background: var(--docsearch-key-gradient); | |
box-shadow: var(--docsearch-key-shadow); | |
color: var(--docsearch-muted-color); | |
border: 0; | |
border-radius: 3px; | |
justify-content: center; | |
align-items: center; | |
width: 20px; | |
height: 18px; | |
margin-right: 0.4em; | |
padding: 0 0 2px; | |
display: flex; | |
position: relative; | |
top: -1px; | |
} | |
@media (max-width: 768px) { | |
.DocSearch-Button-Keys, | |
.DocSearch-Button-Placeholder { | |
display: none; | |
} | |
} | |
.DocSearch--active { | |
overflow: hidden !important; | |
} | |
.DocSearch-Container, | |
.DocSearch-Container * { | |
box-sizing: border-box; | |
} | |
.DocSearch-Container { | |
background-color: var(--docsearch-container-background); | |
z-index: 200; | |
width: 100vw; | |
height: 100vh; | |
position: fixed; | |
top: 0; | |
left: 0; | |
} | |
.DocSearch-Container a { | |
text-decoration: none; | |
} | |
.DocSearch-Link { | |
appearance: none; | |
color: var(--docsearch-highlight-color); | |
cursor: pointer; | |
font: inherit; | |
background: 0 0; | |
border: 0; | |
margin: 0; | |
padding: 0; | |
} | |
.DocSearch-Modal { | |
background: var(--docsearch-modal-background); | |
box-shadow: var(--docsearch-modal-shadow); | |
max-width: var(--docsearch-modal-width); | |
border-radius: 6px; | |
flex-direction: column; | |
margin: 60px auto auto; | |
position: relative; | |
} | |
.DocSearch-SearchBar { | |
padding: var(--docsearch-spacing) var(--docsearch-spacing) 0; | |
display: flex; | |
} | |
.DocSearch-Form { | |
background: var(--docsearch-searchbox-focus-background); | |
box-shadow: var(--docsearch-searchbox-shadow); | |
height: var(--docsearch-searchbox-height); | |
padding: 0 var(--docsearch-spacing); | |
border-radius: 4px; | |
align-items: center; | |
width: 100%; | |
margin: 0; | |
display: flex; | |
position: relative; | |
} | |
.DocSearch-Input { | |
appearance: none; | |
color: var(--docsearch-text-color); | |
font: inherit; | |
background: 0 0; | |
border: 0; | |
outline: none; | |
flex: 1; | |
width: 80%; | |
height: 100%; | |
padding: 0 0 0 8px; | |
font-size: 1.2em; | |
} | |
.DocSearch-Input::placeholder { | |
color: var(--docsearch-muted-color); | |
opacity: 1; | |
} | |
.DocSearch-Input::-webkit-search-cancel-button { | |
display: none; | |
} | |
.DocSearch-Input::-webkit-search-decoration { | |
display: none; | |
} | |
.DocSearch-Input::-webkit-search-results-button { | |
display: none; | |
} | |
.DocSearch-Input::-webkit-search-results-decoration { | |
display: none; | |
} | |
.DocSearch-LoadingIndicator, | |
.DocSearch-MagnifierLabel, | |
.DocSearch-Reset { | |
margin: 0; | |
padding: 0; | |
} | |
.DocSearch-MagnifierLabel, | |
.DocSearch-Reset { | |
color: var(--docsearch-highlight-color); | |
justify-content: center; | |
align-items: center; | |
display: flex; | |
} | |
.DocSearch-Container--Stalled .DocSearch-MagnifierLabel, | |
.DocSearch-LoadingIndicator { | |
display: none; | |
} | |
.DocSearch-Container--Stalled .DocSearch-LoadingIndicator { | |
color: var(--docsearch-highlight-color); | |
justify-content: center; | |
align-items: center; | |
display: flex; | |
} | |
@media screen and (prefers-reduced-motion: reduce) { | |
.DocSearch-Reset { | |
appearance: none; | |
color: var(--docsearch-icon-color); | |
cursor: pointer; | |
stroke-width: var(--docsearch-icon-stroke-width); | |
background: 0 0; | |
border: 0; | |
border-radius: 50%; | |
animation: none; | |
right: 0; | |
} | |
} | |
.DocSearch-Reset { | |
appearance: none; | |
color: var(--docsearch-icon-color); | |
cursor: pointer; | |
stroke-width: var(--docsearch-icon-stroke-width); | |
background: 0 0; | |
border: 0; | |
border-radius: 50%; | |
padding: 2px; | |
animation: 0.1s ease-in forwards fade-in; | |
right: 0; | |
} | |
.DocSearch-Reset[hidden] { | |
display: none; | |
} | |
.DocSearch-Reset:hover { | |
color: var(--docsearch-highlight-color); | |
} | |
.DocSearch-LoadingIndicator svg, | |
.DocSearch-MagnifierLabel svg { | |
width: 24px; | |
height: 24px; | |
} | |
.DocSearch-Cancel { | |
display: none; | |
} | |
.DocSearch-Dropdown { | |
max-height: calc( | |
var(--docsearch-modal-height) - var(--docsearch-searchbox-height) - | |
var(--docsearch-spacing) - var(--docsearch-footer-height) | |
); | |
min-height: var(--docsearch-spacing); | |
overflow-y: auto; | |
overflow-y: overlay; | |
padding: 0 var(--docsearch-spacing); | |
scrollbar-color: var(--docsearch-muted-color) | |
var(--docsearch-modal-background); | |
scrollbar-width: thin; | |
} | |
.DocSearch-Dropdown::-webkit-scrollbar { | |
width: 12px; | |
} | |
.DocSearch-Dropdown::-webkit-scrollbar-track { | |
background: 0 0; | |
} | |
.DocSearch-Dropdown::-webkit-scrollbar-thumb { | |
background-color: var(--docsearch-muted-color); | |
border: 3px solid var(--docsearch-modal-background); | |
border-radius: 20px; | |
} | |
.DocSearch-Dropdown ul { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
.DocSearch-Label { | |
font-size: 0.75em; | |
line-height: 1.6em; | |
} | |
.DocSearch-Help, | |
.DocSearch-Label { | |
color: var(--docsearch-muted-color); | |
} | |
.DocSearch-Help { | |
-webkit-user-select: none; | |
user-select: none; | |
margin: 0; | |
font-size: 0.9em; | |
} | |
.DocSearch-Title { | |
font-size: 1.2em; | |
} | |
.DocSearch-Logo a { | |
display: flex; | |
} | |
.DocSearch-Logo svg { | |
color: var(--docsearch-logo-color); | |
margin-left: 8px; | |
} | |
.DocSearch-Hits:last-of-type { | |
margin-bottom: 24px; | |
} | |
.DocSearch-Hits mark { | |
color: var(--docsearch-highlight-color); | |
background: 0 0; | |
} | |
.DocSearch-HitsFooter { | |
color: var(--docsearch-muted-color); | |
margin-bottom: var(--docsearch-spacing); | |
padding: var(--docsearch-spacing); | |
justify-content: center; | |
font-size: 0.85em; | |
display: flex; | |
} | |
.DocSearch-HitsFooter a { | |
color: inherit; | |
border-bottom: 1px solid; | |
} | |
.DocSearch-Hit { | |
border-radius: 4px; | |
padding-bottom: 4px; | |
display: flex; | |
position: relative; | |
} | |
@media screen and (prefers-reduced-motion: reduce) { | |
.DocSearch-Hit--deleting { | |
transition: none; | |
} | |
} | |
.DocSearch-Hit--deleting { | |
opacity: 0; | |
transition: all 0.25s linear; | |
} | |
@media screen and (prefers-reduced-motion: reduce) { | |
.DocSearch-Hit--favoriting { | |
transition: none; | |
} | |
} | |
.DocSearch-Hit--favoriting { | |
transform-origin: top; | |
transition: all 0.25s linear 0.25s; | |
transform: scale(0); | |
} | |
.DocSearch-Hit a { | |
background: var(--docsearch-hit-background); | |
box-shadow: var(--docsearch-hit-shadow); | |
padding-left: var(--docsearch-spacing); | |
border-radius: 4px; | |
width: 100%; | |
display: block; | |
} | |
.DocSearch-Hit-source { | |
background: var(--docsearch-modal-background); | |
color: var(--docsearch-highlight-color); | |
z-index: 10; | |
margin: 0 -4px; | |
padding: 8px 4px 0; | |
font-size: 0.85em; | |
font-weight: 600; | |
line-height: 32px; | |
position: sticky; | |
top: 0; | |
} | |
.DocSearch-Hit-Tree { | |
color: var(--docsearch-muted-color); | |
height: var(--docsearch-hit-height); | |
opacity: 0.5; | |
stroke-width: var(--docsearch-icon-stroke-width); | |
width: 24px; | |
} | |
.DocSearch-Hit[aria-selected="true"] a { | |
background-color: var(--docsearch-highlight-color); | |
} | |
.DocSearch-Hit[aria-selected="true"] mark { | |
text-decoration: underline; | |
} | |
.DocSearch-Hit-Container { | |
color: var(--docsearch-hit-color); | |
height: var(--docsearch-hit-height); | |
padding: 0 var(--docsearch-spacing) 0 0; | |
flex-direction: row; | |
align-items: center; | |
display: flex; | |
} | |
.DocSearch-Hit-icon { | |
width: 20px; | |
height: 20px; | |
} | |
.DocSearch-Hit-action, | |
.DocSearch-Hit-icon { | |
color: var(--docsearch-muted-color); | |
stroke-width: var(--docsearch-icon-stroke-width); | |
} | |
.DocSearch-Hit-action { | |
align-items: center; | |
width: 22px; | |
height: 22px; | |
display: flex; | |
} | |
.DocSearch-Hit-action svg { | |
width: 18px; | |
height: 18px; | |
display: block; | |
} | |
.DocSearch-Hit-action + .DocSearch-Hit-action { | |
margin-left: 6px; | |
} | |
.DocSearch-Hit-action-button { | |
appearance: none; | |
color: inherit; | |
cursor: pointer; | |
background: 0 0; | |
border: 0; | |
border-radius: 50%; | |
padding: 2px; | |
} | |
svg.DocSearch-Hit-Select-Icon { | |
display: none; | |
} | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-Select-Icon { | |
display: block; | |
} | |
.DocSearch-Hit-action-button:focus, | |
.DocSearch-Hit-action-button:hover { | |
background: #0003; | |
transition: background-color 0.1s ease-in; | |
} | |
@media screen and (prefers-reduced-motion: reduce) { | |
.DocSearch-Hit-action-button:focus, | |
.DocSearch-Hit-action-button:hover { | |
transition: none; | |
} | |
} | |
.DocSearch-Hit-action-button:focus path, | |
.DocSearch-Hit-action-button:hover path { | |
fill: #fff; | |
} | |
.DocSearch-Hit-content-wrapper { | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
flex-direction: column; | |
flex: auto; | |
justify-content: center; | |
width: 80%; | |
margin: 0 8px; | |
font-weight: 500; | |
line-height: 1.2em; | |
display: flex; | |
position: relative; | |
overflow-x: hidden; | |
} | |
.DocSearch-Hit-title { | |
font-size: 0.9em; | |
} | |
.DocSearch-Hit-path { | |
color: var(--docsearch-muted-color); | |
font-size: 0.75em; | |
} | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-action, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-icon, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-path, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-text, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-title, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-Tree, | |
.DocSearch-Hit[aria-selected="true"] mark { | |
color: var(--docsearch-hit-active-color) !important; | |
} | |
@media screen and (prefers-reduced-motion: reduce) { | |
.DocSearch-Hit-action-button:focus, | |
.DocSearch-Hit-action-button:hover { | |
background: #0003; | |
transition: none; | |
} | |
} | |
.DocSearch-ErrorScreen, | |
.DocSearch-NoResults, | |
.DocSearch-StartScreen { | |
text-align: center; | |
width: 80%; | |
margin: 0 auto; | |
padding: 36px 0; | |
font-size: 0.9em; | |
} | |
.DocSearch-Screen-Icon { | |
color: var(--docsearch-muted-color); | |
padding-bottom: 12px; | |
} | |
.DocSearch-NoResults-Prefill-List { | |
text-align: left; | |
padding-bottom: 24px; | |
display: inline-block; | |
} | |
.DocSearch-NoResults-Prefill-List ul { | |
padding: 8px 0 0; | |
display: inline-block; | |
} | |
.DocSearch-NoResults-Prefill-List li { | |
list-style-type: "» "; | |
list-style-position: inside; | |
} | |
.DocSearch-Prefill { | |
appearance: none; | |
color: var(--docsearch-highlight-color); | |
cursor: pointer; | |
background: 0 0; | |
border: 0; | |
border-radius: 1em; | |
padding: 0; | |
font-size: 1em; | |
font-weight: 700; | |
display: inline-block; | |
} | |
.DocSearch-Prefill:focus, | |
.DocSearch-Prefill:hover { | |
outline: none; | |
text-decoration: underline; | |
} | |
.DocSearch-Footer { | |
background: var(--docsearch-footer-background); | |
box-shadow: var(--docsearch-footer-shadow); | |
height: var(--docsearch-footer-height); | |
padding: 0 var(--docsearch-spacing); | |
-webkit-user-select: none; | |
user-select: none; | |
z-index: 300; | |
border-radius: 0 0 8px 8px; | |
flex-direction: row-reverse; | |
flex-shrink: 0; | |
justify-content: space-between; | |
align-items: center; | |
width: 100%; | |
display: flex; | |
position: relative; | |
} | |
.DocSearch-Commands { | |
color: var(--docsearch-muted-color); | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
display: flex; | |
} | |
.DocSearch-Commands li { | |
align-items: center; | |
display: flex; | |
} | |
.DocSearch-Commands li:not(:last-of-type) { | |
margin-right: 0.8em; | |
} | |
.DocSearch-Commands-Key { | |
background: var(--docsearch-key-gradient); | |
box-shadow: var(--docsearch-key-shadow); | |
color: var(--docsearch-muted-color); | |
border: 0; | |
border-radius: 2px; | |
justify-content: center; | |
align-items: center; | |
width: 20px; | |
height: 18px; | |
margin-right: 0.4em; | |
padding: 0 0 1px; | |
display: flex; | |
} | |
@media (max-width: 768px) { | |
:root { | |
--docsearch-spacing: 10px; | |
--docsearch-footer-height: 40px; | |
} | |
.DocSearch-Dropdown { | |
height: 100%; | |
} | |
.DocSearch-Container { | |
height: 100vh; | |
height: calc(var(--docsearch-vh, 1vh) * 100); | |
height: -webkit-fill-available; | |
position: absolute; | |
} | |
.DocSearch-Footer { | |
border-radius: 0; | |
position: absolute; | |
bottom: 0; | |
} | |
.DocSearch-Hit-content-wrapper { | |
width: 80%; | |
display: flex; | |
position: relative; | |
} | |
.DocSearch-Modal { | |
box-shadow: none; | |
height: 100vh; | |
height: calc(var(--docsearch-vh, 1vh) * 100); | |
border-radius: 0; | |
width: 100%; | |
max-width: 100%; | |
height: -webkit-fill-available; | |
margin: 0; | |
} | |
.DocSearch-Dropdown { | |
max-height: calc( | |
var(--docsearch-vh, 1vh) * 100 - var(--docsearch-searchbox-height) - | |
var(--docsearch-spacing) - var(--docsearch-footer-height) | |
); | |
} | |
.DocSearch-Cancel { | |
appearance: none; | |
color: var(--docsearch-highlight-color); | |
cursor: pointer; | |
font: inherit; | |
margin-left: var(--docsearch-spacing); | |
-webkit-user-select: none; | |
user-select: none; | |
white-space: nowrap; | |
background: 0 0; | |
border: 0; | |
outline: none; | |
flex: none; | |
padding: 0; | |
font-size: 1em; | |
font-weight: 500; | |
display: inline-block; | |
overflow: hidden; | |
} | |
.DocSearch-Commands, | |
.DocSearch-Hit-Tree { | |
display: none; | |
} | |
} | |
@keyframes fade-in { | |
0% { | |
opacity: 0; | |
} | |
to { | |
opacity: 1; | |
} | |
} | |
:root { | |
--docsearch-primary-color: var(--ifm-color-primary); | |
--docsearch-text-color: var(--ifm-font-color-base); | |
} | |
.DocSearch-Button { | |
transition: all var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
margin: 0; | |
} | |
.DocSearch-Container { | |
z-index: calc(var(--ifm-z-index-fixed) + 1); | |
} | |
.popup_EH26 { | |
z-index: 999; | |
justify-content: space-between; | |
align-items: center; | |
width: 344px; | |
display: flex; | |
position: fixed; | |
bottom: 16px; | |
right: 16px; | |
} | |
.popup_EH26 p { | |
margin: 0; | |
} | |
@media screen and (max-width: 500px) { | |
.popup_EH26 { | |
width: 100%; | |
bottom: 0; | |
right: 0; | |
} | |
} | |
.buttonContainer_Gl4a { | |
align-items: center; | |
display: flex; | |
} | |
.buttonContainer_Gl4a .close { | |
margin: 0; | |
padding: 0; | |
} | |
.apiTable_e8hp { | |
font-size: small; | |
} | |
.apiTable_e8hp tbody tr { | |
transition: box-shadow 0.2s; | |
} | |
.apiTable_e8hp tbody tr:focus, | |
.apiTable_e8hp tbody tr:hover { | |
box-shadow: 0 0 7px 0 inset var(--ifm-color-warning); | |
cursor: pointer; | |
outline: none; | |
transition: box-shadow 0.2s; | |
} | |
.skipToContent_UHvc { | |
z-index: calc(var(--ifm-z-index-fixed) + 1); | |
padding: calc(var(--ifm-global-spacing) / 2) var(--ifm-global-spacing); | |
color: var(--ifm-color-emphasis-900); | |
background-color: var(--ifm-background-surface-color); | |
position: fixed; | |
top: 1rem; | |
left: 100%; | |
} | |
.skipToContent_UHvc:focus { | |
box-shadow: var(--ifm-global-shadow-md); | |
left: 1rem; | |
} | |
.closeButton_nmpN { | |
padding: 0; | |
line-height: 0; | |
} | |
.content_ttnW { | |
text-align: center; | |
padding: 5px 0; | |
font-size: 85%; | |
} | |
.content_ttnW a { | |
color: inherit; | |
text-decoration: underline; | |
} | |
:root { | |
--docusaurus-announcement-bar-height: auto; | |
} | |
.announcementBar_cTOO { | |
height: var(--docusaurus-announcement-bar-height); | |
background-color: var(--ifm-color-white); | |
color: var(--ifm-color-black); | |
border-bottom: 1px solid var(--ifm-color-emphasis-100); | |
align-items: center; | |
display: flex; | |
} | |
html[data-announcement-bar-initially-dismissed="true"] .announcementBar_cTOO { | |
display: none; | |
} | |
.announcementBarPlaceholder_Lqfg { | |
flex: 0 0 10px; | |
} | |
.announcementBarClose_UFLi { | |
flex: 0 0 30px; | |
align-self: stretch; | |
} | |
.announcementBarContent_PjqA { | |
flex: auto; | |
} | |
@media print { | |
.announcementBar_cTOO { | |
display: none; | |
} | |
} | |
@media (min-width: 997px) { | |
:root { | |
--docusaurus-announcement-bar-height: 30px; | |
} | |
.announcementBarPlaceholder_Lqfg, | |
.announcementBarClose_UFLi { | |
flex-basis: 50px; | |
} | |
} | |
.yt-lite { | |
contain: content; | |
cursor: pointer; | |
background-color: #000; | |
background-position: 50%; | |
background-size: cover; | |
display: block; | |
position: relative; | |
} | |
.yt-lite.lyt-activated:before { | |
content: ""; | |
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==); | |
background-position: top; | |
background-repeat: repeat-x; | |
width: 100%; | |
height: 60px; | |
padding-bottom: 50px; | |
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1); | |
display: block; | |
position: absolute; | |
top: 0; | |
} | |
.yt-lite:after { | |
content: ""; | |
padding-bottom: var(--aspect-ratio); | |
display: block; | |
} | |
.yt-lite > iframe { | |
width: 100%; | |
height: 100%; | |
position: absolute; | |
top: 0; | |
left: 0; | |
} | |
.yt-lite > .lty-playbtn { | |
z-index: 1; | |
opacity: 0.8; | |
background-color: #212121; | |
border-radius: 14%; | |
width: 70px; | |
height: 46px; | |
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1); | |
} | |
.yt-lite:hover > .lty-playbtn { | |
opacity: 1; | |
background-color: red; | |
} | |
.yt-lite > .lty-playbtn:before { | |
content: ""; | |
border: 11px solid #0000; | |
border-left: 19px solid #fff; | |
border-right-width: 0; | |
} | |
.yt-lite > .lty-playbtn, | |
.yt-lite > .lty-playbtn:before { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
} | |
.yt-lite.lyt-activated { | |
cursor: unset; | |
} | |
.yt-lite.lyt-activated:before, | |
.yt-lite.lyt-activated > .lty-playbtn { | |
opacity: 0; | |
pointer-events: none; | |
} | |
.toggle_bT41 { | |
width: 2rem; | |
height: 2rem; | |
} | |
.toggleButton_x9TT { | |
-webkit-tap-highlight-color: transparent; | |
transition: background var(--ifm-transition-fast); | |
border-radius: 50%; | |
justify-content: center; | |
align-items: center; | |
width: 100%; | |
height: 100%; | |
display: flex; | |
} | |
.toggleButton_x9TT:hover { | |
background: var(--ifm-color-emphasis-200); | |
} | |
[data-theme="light"] .darkToggleIcon_OBbf, | |
[data-theme="dark"] .lightToggleIcon_dnYY { | |
display: none; | |
} | |
.toggleButtonDisabled_Dj8q { | |
cursor: not-allowed; | |
} | |
.darkNavbarColorModeToggle_JF8j:hover { | |
background: var(--ifm-color-gray-800); | |
} | |
.themedComponent_bJGS { | |
display: none; | |
} | |
[data-theme="light"] .themedComponent--light_LEkC, | |
[data-theme="dark"] .themedComponent--dark_jnGk, | |
html:not([data-theme]) .themedComponent--light_LEkC { | |
display: initial; | |
} | |
:root { | |
--docusaurus-collapse-button-bg: transparent; | |
--docusaurus-collapse-button-bg-hover: #0000001a; | |
} | |
[data-theme="dark"]:root { | |
--docusaurus-collapse-button-bg: #ffffff0d; | |
--docusaurus-collapse-button-bg-hover: #ffffff1a; | |
} | |
@media (min-width: 997px) { | |
.collapseSidebarButton_PUyN { | |
background-color: var(--docusaurus-collapse-button-bg); | |
border: 1px solid var(--ifm-toc-border-color); | |
border-radius: 0; | |
height: 40px; | |
position: sticky; | |
bottom: 0; | |
display: block !important; | |
} | |
.collapseSidebarButtonIcon_DI0B { | |
margin-top: 4px; | |
transform: rotate(180deg); | |
} | |
[dir="rtl"] .collapseSidebarButtonIcon_DI0B { | |
transform: rotate(0); | |
} | |
.collapseSidebarButton_PUyN:hover, | |
.collapseSidebarButton_PUyN:focus { | |
background-color: var(--docusaurus-collapse-button-bg-hover); | |
} | |
} | |
.collapseSidebarButton_PUyN { | |
margin: 0; | |
display: none; | |
} | |
.iconExternalLink_Rdzz { | |
margin-left: 0.3rem; | |
} | |
.menuExternalLink_zaS2 { | |
align-items: center; | |
} | |
@media (min-width: 997px) { | |
.menuHtmlItem_t1vY { | |
padding: var(--ifm-menu-link-padding-vertical) | |
var(--ifm-menu-link-padding-horizontal); | |
} | |
.menu_rWGR { | |
flex-grow: 1; | |
padding: 0.5rem; | |
} | |
@supports (scrollbar-gutter: stable) { | |
.menu_rWGR { | |
scrollbar-gutter: stable; | |
padding: 0.5rem 0 0.5rem 0.5rem; | |
} | |
} | |
.menuWithAnnouncementBar_Pf08 { | |
margin-bottom: var(--docusaurus-announcement-bar-height); | |
} | |
.sidebar_vtcw { | |
padding-top: var(--ifm-navbar-height); | |
width: var(--doc-sidebar-width); | |
flex-direction: column; | |
height: 100%; | |
display: flex; | |
} | |
.sidebarWithHideableNavbar_tZ9s { | |
padding-top: 0; | |
} | |
.sidebarHidden_PrHU { | |
opacity: 0; | |
visibility: hidden; | |
} | |
.sidebarLogo_UK0N { | |
margin: 0 var(--ifm-navbar-padding-horizontal); | |
min-height: var(--ifm-navbar-height); | |
max-height: var(--ifm-navbar-height); | |
align-items: center; | |
color: inherit !important; | |
text-decoration: none !important; | |
display: flex !important; | |
} | |
.sidebarLogo_UK0N img { | |
height: 2rem; | |
margin-right: 0.5rem; | |
} | |
} | |
.sidebarLogo_UK0N { | |
display: none; | |
} | |
@media (min-width: 997px) { | |
.expandButton_ockD { | |
transition: background-color var(--ifm-transition-fast) ease; | |
background-color: var(--docusaurus-collapse-button-bg); | |
justify-content: center; | |
align-items: center; | |
width: 100%; | |
height: 100%; | |
display: flex; | |
position: absolute; | |
top: 0; | |
right: 0; | |
} | |
.expandButton_ockD:hover, | |
.expandButton_ockD:focus { | |
background-color: var(--docusaurus-collapse-button-bg-hover); | |
} | |
.expandButtonIcon_H1n0 { | |
transform: rotate(0); | |
} | |
[dir="rtl"] .expandButtonIcon_H1n0 { | |
transform: rotate(180deg); | |
} | |
} | |
:root { | |
--doc-sidebar-width: 300px; | |
--doc-sidebar-hidden-width: 30px; | |
} | |
.docSidebarContainer_S51O { | |
display: none; | |
} | |
@media (min-width: 997px) { | |
.docSidebarContainer_S51O { | |
width: var(--doc-sidebar-width); | |
margin-top: calc(-1 * var(--ifm-navbar-height)); | |
border-right: 1px solid var(--ifm-toc-border-color); | |
will-change: width; | |
transition: width var(--ifm-transition-fast) ease; | |
clip-path: inset(0); | |
display: block; | |
} | |
.docSidebarContainerHidden_gbDM { | |
width: var(--doc-sidebar-hidden-width); | |
cursor: pointer; | |
} | |
.sidebarViewport_K3q9 { | |
height: 100%; | |
max-height: 100vh; | |
position: sticky; | |
top: 0; | |
} | |
} | |
.docMainContainer_EfwR { | |
width: 100%; | |
display: flex; | |
} | |
@media (min-width: 997px) { | |
.docMainContainer_EfwR { | |
max-width: calc(100% - var(--doc-sidebar-width)); | |
flex-grow: 1; | |
} | |
.docMainContainerEnhanced_r8nV { | |
max-width: calc(100% - var(--doc-sidebar-hidden-width)); | |
} | |
.docItemWrapperEnhanced_nA1F { | |
max-width: calc( | |
var(--ifm-container-width) + var(--doc-sidebar-width) | |
) !important; | |
} | |
} | |
.docRoot_kBZ6 { | |
width: 100%; | |
display: flex; | |
} | |
.docsWrapper_lLmf { | |
flex: 1 0 auto; | |
display: flex; | |
} | |
.dropdownNavbarItemMobile_A1en { | |
cursor: pointer; | |
} | |
.iconLanguage_tqOs { | |
vertical-align: text-bottom; | |
margin-right: 5px; | |
} | |
.tabList_Qoir { | |
margin-bottom: var(--ifm-leading); | |
} | |
.tabItem_AQgk { | |
margin-top: 0 !important; | |
} | |
.navbarSearchContainer_dDCC:empty { | |
display: none; | |
} | |
@media (max-width: 996px) { | |
.navbarSearchContainer_dDCC { | |
right: var(--ifm-navbar-padding-horizontal); | |
position: absolute; | |
} | |
} | |
@media (min-width: 997px) { | |
.navbarSearchContainer_dDCC { | |
padding: var(--ifm-navbar-item-padding-vertical) | |
var(--ifm-navbar-item-padding-horizontal); | |
} | |
} | |
.tabItem_pnkT > :last-child { | |
margin-bottom: 0; | |
} | |
.navbarHideable_uAgx { | |
transition: transform var(--ifm-transition-fast) ease; | |
} | |
.navbarHidden_QgM6 { | |
transform: translateY(calc(-100% - 2px)); | |
} | |
@media (max-width: 996px) { | |
.colorModeToggle_UolE { | |
display: none; | |
} | |
} | |
.browserWindow_my1Q { | |
border: 3px solid var(--ifm-color-emphasis-200); | |
border-radius: var(--ifm-global-radius); | |
box-shadow: var(--ifm-global-shadow-lw); | |
margin-bottom: var(--ifm-leading); | |
} | |
.browserWindowHeader_jXSR { | |
background: var(--ifm-color-emphasis-200); | |
align-items: center; | |
padding: 0.5rem 1rem; | |
display: flex; | |
} | |
.row_KZDM:after { | |
content: ""; | |
clear: both; | |
display: table; | |
} | |
.buttons_uHc7 { | |
white-space: nowrap; | |
} | |
.right_oyze { | |
align-self: center; | |
width: 10%; | |
} | |
[data-theme="light"] { | |
--ifm-background-color: #fff; | |
} | |
.browserWindowAddressBar_Pd8y { | |
background-color: var(--ifm-background-color); | |
color: var(--ifm-color-gray-800); | |
-webkit-user-select: none; | |
user-select: none; | |
border-radius: 12.5px; | |
flex: 1 0; | |
margin: 0 1rem 0 0.5rem; | |
padding: 5px 15px; | |
font: | |
400 13px Arial, | |
sans-serif; | |
} | |
[data-theme="dark"] .browserWindowAddressBar_Pd8y { | |
color: var(--ifm-color-gray-300); | |
} | |
.dot_giz1 { | |
background-color: #bbb; | |
border-radius: 50%; | |
width: 12px; | |
height: 12px; | |
margin-top: 4px; | |
margin-right: 6px; | |
display: inline-block; | |
} | |
.browserWindowMenuIcon_Vhuh { | |
margin-left: auto; | |
} | |
.bar_rrRL { | |
background-color: #aaa; | |
width: 17px; | |
height: 3px; | |
margin: 3px 0; | |
display: block; | |
} | |
.browserWindowBody_Idgs { | |
background-color: var(--ifm-background-color); | |
border-bottom-left-radius: inherit; | |
border-bottom-right-radius: inherit; | |
padding: 1rem; | |
} | |
.browserWindowBody_Idgs > :last-child { | |
margin-bottom: 0; | |
} | |
.red_FE5X { | |
color: red; | |
} | |
.red_FE5X[aria-selected="true"] { | |
border-bottom-color: red; | |
} | |
.orange_kp8w { | |
color: orange; | |
} | |
.orange_kp8w[aria-selected="true"] { | |
border-bottom-color: orange; | |
} | |
.yellow_uGry { | |
color: #ff0; | |
} | |
.yellow_uGry[aria-selected="true"] { | |
border-bottom-color: #ff0; | |
} | |
.buttonBack___1mlaL, | |
.buttonFirst___2rhFr, | |
.buttonLast___2yuh0, | |
.buttonNext___2mOCa, | |
.buttonNext___3Lm3s, | |
.dot___3c3SI { | |
cursor: pointer; | |
} | |
.image___xtQGH { | |
width: 100%; | |
height: 100%; | |
display: block; | |
} | |
.spinner___27VUp { | |
border: 4px solid #a9a9a9; | |
border-top-color: #000; | |
border-radius: 30px; | |
width: 30px; | |
height: 30px; | |
animation-name: spin___S3UuE; | |
animation-duration: 1s; | |
animation-timing-function: linear; | |
animation-iteration-count: infinite; | |
position: absolute; | |
top: calc(50% - 15px); | |
left: calc(50% - 15px); | |
} | |
@keyframes spin___S3UuE { | |
0% { | |
transform: rotate(0); | |
} | |
to { | |
transform: rotate(1turn); | |
} | |
} | |
.container___2O72F { | |
width: 100%; | |
height: 100%; | |
position: relative; | |
overflow: hidden; | |
} | |
.overlay___IV4qY { | |
opacity: 0; | |
cursor: zoom-in; | |
transition: | |
opacity 0.3s, | |
transform 0.3s; | |
position: absolute; | |
inset: 0; | |
} | |
.hover___MYy31, | |
.loading___1pvNI, | |
.zoom___3kqYk { | |
opacity: 1; | |
} | |
.imageLoadingSpinnerContainer___3UIPD { | |
background-color: #f4f4f4; | |
position: absolute; | |
inset: 0; | |
} | |
.slide___3-Nqo { | |
box-sizing: border-box; | |
height: 0; | |
margin: 0; | |
list-style-type: none; | |
display: block; | |
position: relative; | |
} | |
.slide___3-Nqo:focus { | |
outline: none !important; | |
} | |
.slideHorizontal___1NzNV { | |
float: left; | |
} | |
[dir="rtl"] .slideHorizontal___1NzNV { | |
direction: rtl; | |
transform: scaleX(-1); | |
} | |
.slideInner___2mfX9 { | |
width: 100%; | |
height: 100%; | |
position: absolute; | |
top: 0; | |
left: 0; | |
} | |
.focusRing___1airF { | |
pointer-events: none; | |
outline: 5px solid highlight; | |
position: absolute; | |
inset: 5px; | |
} | |
@media (-webkit-min-device-pixel-ratio: 0) { | |
.focusRing___1airF { | |
outline-style: auto; | |
outline-color: -webkit-focus-ring-color; | |
} | |
} | |
.horizontalSlider___281Ls { | |
touch-action: pan-y pinch-zoom; | |
position: relative; | |
overflow: hidden; | |
} | |
[dir="rtl"] .horizontalSlider___281Ls { | |
direction: ltr; | |
transform: scaleX(-1); | |
} | |
.horizontalSliderTray___1L-0W { | |
width: 100%; | |
overflow: hidden; | |
} | |
.verticalSlider___34ZFD { | |
position: relative; | |
overflow: hidden; | |
} | |
.verticalSliderTray___267D8 { | |
overflow: hidden; | |
} | |
.verticalTray___12Key { | |
float: left; | |
} | |
.verticalSlideTrayWrap___2nO7o { | |
overflow: hidden; | |
} | |
.sliderTray___-vHFQ { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
display: block; | |
} | |
.sliderAnimation___300FY { | |
will-change: transform; | |
transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); | |
} | |
.masterSpinnerContainer___1Z6hB { | |
background-color: #f4f4f4; | |
position: absolute; | |
inset: 0; | |
} | |
.carousel_raHC { | |
position: relative; | |
} | |
.navButton_qSul { | |
color: #fff; | |
transition: all var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
background-color: #0000004d; | |
border: 0; | |
border-radius: 50%; | |
width: 40px; | |
height: 40px; | |
font-size: 20px; | |
position: absolute; | |
top: 50%; | |
transform: translateY(-50%); | |
} | |
.navButton_qSul:hover { | |
background-color: #00000073; | |
} | |
.dotGroup_n_95 { | |
pointer-events: none; | |
justify-content: center; | |
width: 100%; | |
display: flex; | |
position: absolute; | |
bottom: 5px; | |
} | |
.dotGroup_n_95 > .carousel__dot { | |
pointer-events: auto; | |
background: #0003; | |
border: none; | |
border-radius: 50%; | |
width: 1rem; | |
height: 1rem; | |
margin: 2px; | |
display: inline-block; | |
} | |
.dotGroup_n_95 > .carousel__dot--selected { | |
background: #00000073; | |
} | |
.siteSlide_AwQk { | |
position: relative; | |
} | |
.siteLink_IglZ { | |
--ifm-link-color: var(--ifm-color-gray-400); | |
transition: all var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
background-color: #0000004d; | |
border-radius: 6px; | |
padding: 0 12px; | |
font-size: 16px; | |
position: absolute; | |
bottom: 2px; | |
right: 2px; | |
} | |
.siteLink_IglZ:hover { | |
--ifm-link-color: var(--ifm-color-gray-200); | |
--ifm-link-hover-color: var(--ifm-color-gray-200); | |
--ifm-link-hover-decoration: none; | |
background-color: #00000073; | |
} | |
@media only screen and (max-width: 768px) { | |
.siteLink_IglZ { | |
padding: 0 8px; | |
font-size: 12px; | |
} | |
} | |
.wrappingBlock_S4U4 { | |
vertical-align: top; | |
width: 50%; | |
padding: 5px; | |
display: inline-block; | |
} | |
.wrappingBlock_S4U4 code[class^="codeBlockLines"] { | |
white-space: pre-wrap; | |
} | |
.tableOfContentsInline_2sru ul { | |
font-size: initial; | |
padding-top: 0; | |
list-style-type: disc; | |
} | |
.tocCollapsibleButton_IbtT { | |
font-size: inherit; | |
justify-content: space-between; | |
align-items: center; | |
width: 100%; | |
padding: 0.4rem 0.8rem; | |
display: flex; | |
} | |
.tocCollapsibleButton_IbtT:after { | |
content: ""; | |
background: var(--ifm-menu-link-sublist-icon) 50% 50%/2rem 2rem no-repeat; | |
filter: var(--ifm-menu-link-sublist-icon-filter); | |
transition: transform var(--ifm-transition-fast); | |
width: 1.25rem; | |
height: 1.25rem; | |
transform: rotate(180deg); | |
} | |
.tocCollapsibleButtonExpanded_Nor3:after { | |
transform: none; | |
} | |
.tocCollapsible_BEWm { | |
background-color: var(--ifm-menu-color-background-active); | |
border-radius: var(--ifm-global-radius); | |
margin: 1rem 0; | |
} | |
.tocCollapsibleContent_FG8F > ul { | |
border-left: none; | |
border-top: 1px solid var(--ifm-color-emphasis-300); | |
padding: 0.2rem 0; | |
font-size: 15px; | |
} | |
.tocCollapsibleContent_FG8F ul li { | |
margin: 0.4rem 0.8rem; | |
} | |
.tocCollapsibleContent_FG8F a { | |
display: block; | |
} | |
.tocCollapsibleExpanded_FzA_ { | |
transform: none; | |
} | |
.errorBoundaryError_rP1m { | |
white-space: pre-wrap; | |
color: red; | |
} | |
.errorBoundaryFallback_heah { | |
color: red; | |
padding: 0.55rem; | |
} | |
.anchorWithStickyNavbar_rB0w { | |
scroll-margin-top: calc(var(--ifm-navbar-height) + 0.5rem); | |
} | |
.anchorWithHideOnScrollNavbar_SSbb { | |
scroll-margin-top: 0.5rem; | |
} | |
.hash-link { | |
opacity: 0; | |
transition: opacity var(--ifm-transition-fast); | |
-webkit-user-select: none; | |
user-select: none; | |
padding-left: 0.5rem; | |
} | |
.hash-link:before { | |
content: "#"; | |
} | |
.hash-link:focus, | |
:hover > .hash-link { | |
opacity: 1; | |
} | |
.cardContainer_Uewx { | |
--ifm-link-color: var(--ifm-color-emphasis-800); | |
--ifm-link-hover-color: var(--ifm-color-emphasis-700); | |
--ifm-link-hover-decoration: none; | |
border: 1px solid var(--ifm-color-emphasis-200); | |
transition: all var(--ifm-transition-fast) ease; | |
transition-property: border, box-shadow; | |
box-shadow: 0 1.5px 3px #00000026; | |
} | |
.cardContainer_Uewx:hover { | |
border-color: var(--ifm-color-primary); | |
box-shadow: 0 3px 6px #0003; | |
} | |
.cardContainer_Uewx :last-child { | |
margin-bottom: 0; | |
} | |
.cardTitle_dwRT { | |
font-size: 1.2rem; | |
} | |
.cardDescription_mCBT { | |
font-size: 0.8rem; | |
} | |
body:not(.navigation-with-keyboard) :not(input):focus { | |
outline: none; | |
} | |
#__docusaurus-base-url-issue-banner-container { | |
display: none; | |
} | |
.footerLogoLink_CiM_ { | |
opacity: 0.5; | |
transition: opacity var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.footerLogoLink_CiM_:hover { | |
opacity: 1; | |
} | |
html, | |
body { | |
height: 100%; | |
} | |
.mainWrapper_PEsc { | |
flex-direction: column; | |
flex: 1 0 auto; | |
display: flex; | |
} | |
.docusaurus-mt-lg { | |
margin-top: 3rem; | |
} | |
#__docusaurus { | |
flex-direction: column; | |
min-height: 100%; | |
display: flex; | |
} | |
.test-marker-theme-layout_zWhB { | |
content: "theme-layout"; | |
} | |
.sidebar_P3nc { | |
max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem)); | |
top: calc(var(--ifm-navbar-height) + 2rem); | |
position: sticky; | |
overflow-y: auto; | |
} | |
.sidebarItemTitle_VrjY { | |
font-size: var(--ifm-h3-font-size); | |
font-weight: var(--ifm-font-weight-bold); | |
} | |
.sidebarItemList_OSkG { | |
font-size: 0.9rem; | |
} | |
.sidebarItem_WJ0y { | |
margin-top: 0.7rem; | |
} | |
.sidebarItemLink_Qrfg { | |
color: var(--ifm-font-color-base); | |
display: block; | |
} | |
.sidebarItemLink_Qrfg:hover { | |
text-decoration: none; | |
} | |
.sidebarItemLinkActive_nUeK { | |
color: var(--ifm-color-primary) !important; | |
} | |
@media (max-width: 996px) { | |
.sidebar_P3nc { | |
display: none; | |
} | |
} | |
.yearGroupHeading_lECJ { | |
margin-top: 1.6rem; | |
margin-bottom: 0.4rem; | |
} | |
.yearGroupHeading_Ruz9 { | |
margin: 1rem 0.75rem 0.5rem; | |
} | |
.title_UBNu { | |
font-size: 3rem; | |
} | |
@media (max-width: 576px) { | |
.title_UBNu { | |
font-size: 2rem; | |
} | |
} | |
.container_x5Un { | |
font-size: 0.9rem; | |
} | |
[data-theme="dark"] .githubSvg_jqE4 { | |
fill: var(--light); | |
} | |
[data-theme="light"] .githubSvg_jqE4 { | |
fill: var(--dark); | |
} | |
[data-theme="dark"] .xSvg_Q0g7 { | |
fill: var(--light); | |
} | |
[data-theme="light"] .xSvg_Q0g7 { | |
fill: var(--dark); | |
} | |
:root { | |
--docusaurus-blog-social-icon-size: 1rem; | |
} | |
.authorSocials_tPnL { | |
height: var(--docusaurus-blog-social-icon-size); | |
line-clamp: 1; | |
-webkit-line-clamp: 1; | |
-webkit-box-orient: vertical; | |
flex-wrap: wrap; | |
align-items: center; | |
line-height: 0; | |
display: flex; | |
overflow: hidden; | |
} | |
.authorSocialLink_hEWM { | |
height: var(--docusaurus-blog-social-icon-size); | |
width: var(--docusaurus-blog-social-icon-size); | |
margin-right: 0.4rem; | |
line-height: 0; | |
} | |
.authorSocialIcon_hTX6 { | |
width: var(--docusaurus-blog-social-icon-size); | |
height: var(--docusaurus-blog-social-icon-size); | |
} | |
.authorImage_p8ow { | |
--ifm-avatar-photo-size: 3.6rem; | |
} | |
.author-as-h1_Pd3R .authorImage_p8ow { | |
--ifm-avatar-photo-size: 7rem; | |
} | |
.author-as-h2_UaZL .authorImage_p8ow { | |
--ifm-avatar-photo-size: 5.4rem; | |
} | |
.authorDetails_dWdF { | |
flex-direction: column; | |
justify-content: space-around; | |
align-items: flex-start; | |
display: flex; | |
} | |
.authorName_Y8Hr { | |
flex-direction: row; | |
font-size: 1.1rem; | |
line-height: 1.1rem; | |
display: flex; | |
} | |
.author-as-h1_Pd3R .authorName_Y8Hr { | |
font-size: 2.4rem; | |
line-height: 2.4rem; | |
display: inline; | |
} | |
.author-as-h2_UaZL .authorName_Y8Hr { | |
font-size: 1.4rem; | |
line-height: 1.4rem; | |
display: inline; | |
} | |
.authorTitle_Slpj { | |
line-clamp: 1; | |
-webkit-line-clamp: 1; | |
-webkit-box-orient: vertical; | |
font-size: 0.8rem; | |
line-height: 1rem; | |
display: -webkit-box; | |
overflow: hidden; | |
} | |
.author-as-h1_Pd3R .authorTitle_Slpj { | |
font-size: 1.2rem; | |
line-height: 1.6rem; | |
} | |
.author-as-h2_UaZL .authorTitle_Slpj { | |
font-size: 1rem; | |
line-height: 1.3rem; | |
} | |
.authorBlogPostCount_FxU_ { | |
background: var(--ifm-color-secondary); | |
color: var(--ifm-color-black); | |
border-radius: var(--ifm-global-radius); | |
margin-left: 0.3rem; | |
padding: 0.1rem 0.4rem; | |
font-size: 0.8rem; | |
line-height: 1.2; | |
} | |
.authorCol_bvyx { | |
max-width: inherit !important; | |
} | |
.imageOnlyAuthorRow_L2DM { | |
flex-flow: wrap; | |
display: flex; | |
} | |
.imageOnlyAuthorCol_oyze { | |
margin-left: 0.3rem; | |
margin-right: 0.3rem; | |
} | |
.searchQueryInput_S_pS, | |
.searchVersionInput_RZ74 { | |
border-radius: var(--ifm-global-radius); | |
border: 2px solid var(--ifm-toc-border-color); | |
font: var(--ifm-font-size-base) var(--ifm-font-family-base); | |
background: var(--docsearch-searchbox-focus-background); | |
color: var(--docsearch-text-color); | |
transition: border var(--ifm-transition-fast) ease; | |
width: 100%; | |
margin-bottom: 0.5rem; | |
padding: 0.8rem; | |
} | |
.searchQueryInput_S_pS:focus, | |
.searchVersionInput_RZ74:focus { | |
border-color: var(--docsearch-primary-color); | |
outline: none; | |
} | |
.searchQueryInput_S_pS::placeholder { | |
color: var(--docsearch-muted-color); | |
} | |
.searchResultsColumn_dGxU { | |
font-size: 0.9rem; | |
font-weight: 700; | |
} | |
.algoliaLogo_nq6Q { | |
max-width: 150px; | |
} | |
.algoliaLogoPathFill_IWVH { | |
fill: var(--ifm-font-color-base); | |
} | |
.searchResultItem_jZK3 { | |
border-bottom: 1px solid var(--ifm-toc-border-color); | |
padding: 1rem 0; | |
} | |
.searchResultItemHeading_Nbvf { | |
margin-bottom: 0; | |
font-weight: 400; | |
} | |
.searchResultItemPath_wcJo { | |
color: var(--ifm-color-content-secondary); | |
--ifm-breadcrumb-separator-size-multiplier: 1; | |
font-size: 0.8rem; | |
} | |
.searchResultItemSummary_HbIg { | |
margin: 0.5rem 0 0; | |
font-style: italic; | |
} | |
@media only screen and (max-width: 996px) { | |
.searchQueryColumn_ourN { | |
max-width: 60% !important; | |
} | |
.searchVersionColumn_n2Lb { | |
max-width: 40% !important; | |
} | |
.searchResultsColumn_dGxU { | |
max-width: 60% !important; | |
} | |
.searchLogoColumn_v5Xz { | |
max-width: 40% !important; | |
padding-left: 0 !important; | |
} | |
} | |
@media screen and (max-width: 576px) { | |
.searchQueryColumn_ourN { | |
max-width: 100% !important; | |
} | |
.searchVersionColumn_n2Lb { | |
padding-left: var(--ifm-spacing-horizontal) !important; | |
max-width: 100% !important; | |
} | |
} | |
.loadingSpinner_Jw0H { | |
border: 0.4em solid #eee; | |
border-top-color: var(--ifm-color-primary); | |
border-radius: 50%; | |
width: 3rem; | |
height: 3rem; | |
margin: 0 auto; | |
animation: 1s linear infinite loading-spin_vmq3; | |
} | |
@keyframes loading-spin_vmq3 { | |
to { | |
transform: rotate(360deg); | |
} | |
} | |
.loader_rYmk { | |
margin-top: 2rem; | |
} | |
.search-result-match { | |
color: var(--docsearch-hit-color); | |
background: #ffd78e40; | |
padding: 0.09em 0; | |
} | |
.tweet_x2tn { | |
font-size: 15px; | |
} | |
.tweetMeta_fAxr { | |
color: var(--ifm-color-emphasis-700); | |
} | |
.tweetMeta_fAxr strong { | |
color: var(--ifm-font-color-base); | |
} | |
.section_rC2D { | |
padding: 40px 0; | |
} | |
.sectionAlt_XiGz { | |
background-color: var(--ifm-color-emphasis-100); | |
} | |
.sectionInner_Y4r1 { | |
margin: 0 auto; | |
} | |
.featureImage_yA8i { | |
width: auto; | |
max-height: 128px; | |
margin: 0 auto; | |
} | |
.featureHeading_TLGJ { | |
font-size: var(--ifm-h3-font-size); | |
padding-top: 1rem; | |
} | |
.announcement_FsS0 { | |
text-align: center; | |
margin: 0 auto; | |
padding: 48px; | |
font-size: 24px; | |
font-weight: 700; | |
} | |
.announcementDark_tzC4 { | |
color: #fff; | |
--ifm-link-color: var(--ifm-color-primary); | |
background-color: #20232a; | |
} | |
.announcementInner_RsrQ { | |
max-width: 768px; | |
margin: 0 auto; | |
} | |
.topBanner_JYZy { | |
text-align: center; | |
flex-direction: column; | |
align-items: center; | |
max-width: 900px; | |
margin: 0 auto; | |
padding: 30px 20px; | |
font-size: 20px; | |
display: flex; | |
} | |
.topBannerTitle_nAZL { | |
margin-bottom: 0.4rem; | |
font-size: 54px; | |
font-weight: 700; | |
} | |
@media only screen and (max-width: 768px) { | |
.topBannerTitle_nAZL { | |
font-size: 40px; | |
} | |
} | |
.topBannerTitleText_Ferb { | |
background: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); | |
-webkit-text-fill-color: transparent; | |
-webkit-background-clip: text; | |
background-clip: text; | |
} | |
.topBannerTitleText_Ferb:hover { | |
border-color: #9800ff; | |
border-bottom-style: solid; | |
border-bottom-width: 2px; | |
} | |
html[data-theme="dark"] .topBannerTitleText_Ferb { | |
background: linear-gradient(90deg, #9800ff 0%, #f62929 50%, #ffa908 100%); | |
-webkit-text-fill-color: transparent; | |
-webkit-background-clip: text; | |
background-clip: text; | |
} | |
.topBannerDescription_fLgs { | |
font-size: 20px; | |
} | |
@media only screen and (max-width: 768px) { | |
.topBannerDescription_fLgs { | |
white-space: normal; | |
font-size: 16px; | |
} | |
} | |
.hero_syme { | |
background-color: #2b3137; | |
padding: 48px; | |
} | |
.heroInner_VWeJ { | |
max-width: 1100px; | |
margin: 0 auto; | |
padding: 0 20px; | |
} | |
.heroProjectTagline_EkV5 { | |
color: #fff; | |
margin: 0; | |
font-size: 60px; | |
} | |
.heroTitleTextHtml_zYwv b { | |
color: var(--ifm-color-primary); | |
} | |
@keyframes jack-in-the-box_cF72 { | |
0% { | |
opacity: 0; | |
transform-origin: bottom; | |
transform: scale(0.1) rotate(30deg); | |
} | |
50% { | |
transform: rotate(-10deg); | |
} | |
70% { | |
transform: rotate(3deg); | |
} | |
to { | |
opacity: 1; | |
transform: scale(1); | |
} | |
} | |
.heroLogo_jM6J { | |
float: right; | |
height: auto; | |
margin-top: 20px; | |
padding: 0 20px 20px; | |
animation-name: jack-in-the-box_cF72; | |
animation-duration: 2s; | |
} | |
.indexCtas_hUA_ { | |
--ifm-button-size-multiplier: 1.6; | |
flex-wrap: wrap; | |
align-items: center; | |
margin-top: 24px; | |
display: flex; | |
} | |
.indexCtas_hUA_ a, | |
.indexCtas_hUA_ a:hover { | |
color: #000; | |
} | |
.indexCtas_hUA_ a:last-of-type { | |
margin: 20px 36px; | |
} | |
.indexCtasGitHubButtonWrapper_AOht { | |
display: flex; | |
} | |
.indexCtasGitHubButton_sMIS { | |
overflow: hidden; | |
} | |
.indexCtaTryNowButton_wlFR:hover { | |
color: var(--ifm-color-primary); | |
} | |
@media only screen and (max-width: 768px) { | |
.hero_syme { | |
padding-left: 20px; | |
padding-right: 20px; | |
} | |
.heroInner_VWeJ { | |
padding: 0; | |
} | |
.heroProjectTagline_EkV5 { | |
text-align: center; | |
font-size: 36px; | |
} | |
.heroLogo_jM6J { | |
float: none; | |
margin: 0 auto; | |
display: block; | |
} | |
.indexCtas_hUA_ { | |
justify-content: center; | |
} | |
.indexCtas_hUA_ a { | |
margin: 20px 36px; | |
} | |
.indexCtasGitHubButton_sMIS { | |
display: none; | |
} | |
} | |
.tweetsSection_Fqsy > .col > * { | |
margin-bottom: 2rem; | |
} | |
@media (max-width: 996px) { | |
.tweetsSection_Fqsy > .col:last-child > :last-child { | |
margin-bottom: 0; | |
} | |
} | |
@media (min-width: 997px) { | |
.tweetsSection_Fqsy > .col > :last-child { | |
margin-bottom: 0; | |
} | |
} | |
.test-marker-site-index-page_LJ7R { | |
content: "site-index-page"; | |
} | |
.main_LiBd { | |
padding: var(--ifm-spacing-horizontal); | |
background: var(--site-color-feedback-background); | |
border-radius: 4px; | |
min-height: 500px; | |
} | |
.authorListItem_Y1Zl { | |
margin-bottom: 2rem; | |
list-style-type: none; | |
} | |
.searchBar_E3wW { | |
margin-left: auto; | |
} | |
.searchBar_E3wW input { | |
border: 1px solid gray; | |
border-radius: 15px; | |
height: 30px; | |
padding: 10px; | |
} | |
.svg_d33c { | |
-webkit-user-select: none; | |
user-select: none; | |
color: #e9669e; | |
fill: currentColor; | |
width: 1em; | |
height: 1em; | |
display: inline-block; | |
} | |
.small_xkoK { | |
font-size: 1rem; | |
} | |
.medium_J4if { | |
font-size: 1.25rem; | |
} | |
.large_G4cM { | |
font-size: 1.8rem; | |
} | |
.showcaseCardImage_wjKy { | |
border-bottom: 2px solid var(--ifm-color-emphasis-200); | |
height: 150px; | |
overflow: hidden; | |
} | |
.showcaseCardHeader_H8b9 { | |
align-items: center; | |
margin-bottom: 12px; | |
display: flex; | |
} | |
.showcaseCardTitle_ZxTI { | |
flex: auto; | |
margin-bottom: 0; | |
} | |
.showcaseCardTitle_ZxTI a { | |
background: linear-gradient( | |
var(--ifm-color-primary), | |
var(--ifm-color-primary) | |
) | |
0% 100%/0% 1px no-repeat; | |
text-decoration: none; | |
transition: background-size 0.2s ease-out; | |
} | |
.showcaseCardTitle_ZxTI a:not(:focus):hover { | |
background-size: 100% 1px; | |
} | |
.showcaseCardTitle_ZxTI, | |
.showcaseCardHeader_H8b9 { | |
margin-right: 0.25rem; | |
} | |
.showcaseCardSrcBtn_F6t0 { | |
border: none; | |
margin-left: 6px; | |
padding-left: 12px; | |
padding-right: 12px; | |
} | |
.showcaseCardSrcBtn_F6t0:focus-visible { | |
background-color: var(--ifm-color-secondary-dark); | |
} | |
[data-theme="dark"] .showcaseCardSrcBtn_F6t0 { | |
color: inherit; | |
background-color: var(--ifm-color-emphasis-200) !important; | |
} | |
[data-theme="dark"] .showcaseCardSrcBtn_F6t0:hover { | |
background-color: var(--ifm-color-emphasis-300) !important; | |
} | |
.showcaseCardBody_bvOP { | |
font-size: smaller; | |
line-height: 1.66; | |
} | |
.cardFooter_Xq1d { | |
flex-wrap: wrap; | |
display: flex; | |
} | |
.tag_jo6t { | |
border: 1px solid var(--ifm-color-secondary-darkest); | |
cursor: default; | |
border-radius: 12px; | |
align-items: center; | |
margin-right: 6px; | |
font-size: 0.675rem; | |
display: inline-flex; | |
margin-bottom: 6px !important; | |
} | |
.tag_jo6t .textLabel_lQex { | |
margin-left: 8px; | |
} | |
.tag_jo6t .colorLabel_D_Fl { | |
border-radius: 50%; | |
width: 7px; | |
height: 7px; | |
margin-left: 6px; | |
margin-right: 6px; | |
} | |
.cardList_kMxr { | |
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); | |
gap: 24px; | |
display: grid; | |
} | |
.showcaseFavorite_LFys { | |
background-color: #f6fdfd; | |
padding-top: 2rem; | |
padding-bottom: 2rem; | |
} | |
html[data-theme="dark"] .showcaseFavorite_LFys { | |
background-color: #232525; | |
} | |
.headingFavorites_LTro { | |
align-items: center; | |
display: flex; | |
} | |
.checkboxLabel_vxMa:hover { | |
opacity: 1; | |
box-shadow: 0 0 2px 1px var(--ifm-color-secondary-darkest); | |
} | |
input[type="checkbox"] + .checkboxLabel_vxMa { | |
cursor: pointer; | |
opacity: 0.85; | |
border: 2px solid var(--ifm-color-secondary-darkest); | |
border-radius: 4px; | |
align-items: center; | |
padding: 0.275rem 0.8rem; | |
line-height: 1.5; | |
transition: opacity 0.2s ease-out; | |
display: flex; | |
} | |
input:focus-visible + .checkboxLabel_vxMa { | |
outline: 2px solid; | |
} | |
input:checked + .checkboxLabel_vxMa { | |
opacity: 0.9; | |
border: 2px solid var(--ifm-color-primary-darkest); | |
background-color: #94e1d040; | |
} | |
input:checked + .checkboxLabel_vxMa:hover { | |
opacity: 0.75; | |
box-shadow: 0 0 2px 1px var(--ifm-color-primary-dark); | |
} | |
html[data-theme="dark"] input:checked + .checkboxLabel_vxMa { | |
background-color: #94e1d01a; | |
} | |
.checkboxLabel_DiOL { | |
--height: 25px; | |
--width: 80px; | |
--border: 2px; | |
width: var(--width); | |
height: var(--height); | |
border-radius: var(--height); | |
border: var(--border) solid var(--ifm-color-primary-darkest); | |
cursor: pointer; | |
opacity: 0.75; | |
transition: opacity var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
box-shadow: var(--ifm-global-shadow-md); | |
justify-content: space-around; | |
display: flex; | |
position: relative; | |
} | |
.checkboxLabel_DiOL:hover { | |
opacity: 1; | |
box-shadow: | |
var(--ifm-global-shadow-md), | |
0 0 2px 1px var(--ifm-color-primary-dark); | |
} | |
.checkboxLabel_DiOL:after { | |
content: ""; | |
width: calc(var(--width) / 2); | |
border-radius: var(--height); | |
background-color: var(--ifm-color-primary-darkest); | |
transition: transform var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
transform: translateX(calc(var(--width) / 2 - var(--border))); | |
height: 100%; | |
position: absolute; | |
inset: 0; | |
} | |
input:focus-visible ~ .checkboxLabel_DiOL:after { | |
outline: 2px solid; | |
} | |
.checkboxLabel_DiOL > * { | |
color: inherit; | |
font-size: 0.8rem; | |
transition: opacity 0.15s ease-in 50ms; | |
} | |
input:checked ~ .checkboxLabel_DiOL:after { | |
transform: translateX(calc(-1 * var(--border))); | |
} | |
.headingRow_DGKw { | |
justify-content: space-between; | |
align-items: center; | |
display: flex; | |
} | |
.headingText_iR0x { | |
align-items: baseline; | |
display: flex; | |
} | |
.headingText_iR0x > h2 { | |
margin-bottom: 0; | |
} | |
.headingText_iR0x > span { | |
margin-left: 8px; | |
} | |
.headingButtons_DX79 { | |
align-items: center; | |
display: flex; | |
} | |
.headingButtons_DX79 > * { | |
margin-left: 8px; | |
} | |
.tagList_Ku_M { | |
flex-wrap: wrap; | |
align-items: center; | |
display: flex; | |
} | |
.tagListItem_aQcS { | |
-webkit-user-select: none; | |
user-select: none; | |
white-space: nowrap; | |
height: 32px; | |
margin-top: 0.5rem; | |
margin-right: 0.5rem; | |
font-size: 0.8rem; | |
} | |
.tagListItem_aQcS:last-child { | |
margin-right: 0; | |
} | |
.playgroundContainer_6Ior { | |
margin-bottom: var(--ifm-leading); | |
border-radius: var(--ifm-global-radius); | |
box-shadow: var(--ifm-global-shadow-lw); | |
overflow: hidden; | |
} | |
.playgroundHeader_Tvsk { | |
letter-spacing: 0.08rem; | |
text-transform: uppercase; | |
background: var(--ifm-color-emphasis-200); | |
color: var(--ifm-color-content); | |
font-weight: 700; | |
font-size: var(--ifm-code-font-size); | |
padding: 0.75rem; | |
} | |
.playgroundHeader_Tvsk:first-of-type { | |
background: var(--ifm-color-emphasis-600); | |
color: var(--ifm-color-content-inverse); | |
} | |
.playgroundEditor_TySg { | |
direction: ltr; | |
font: var(--ifm-code-font-size) / var(--ifm-pre-line-height) | |
var(--ifm-font-family-monospace) !important; | |
} | |
.playgroundPreview_mApW { | |
background-color: var(--ifm-pre-background); | |
padding: 1rem; | |
} | |
.codeBlockContainer_jDV4 { | |
background: var(--prism-background-color); | |
color: var(--prism-color); | |
margin-bottom: var(--ifm-leading); | |
box-shadow: var(--ifm-global-shadow-lw); | |
border-radius: var(--ifm-code-border-radius); | |
} | |
.codeBlockContent_vx7S { | |
border-radius: inherit; | |
direction: ltr; | |
position: relative; | |
} | |
.codeBlockTitle_bdru { | |
border-bottom: 1px solid var(--ifm-color-emphasis-300); | |
font-size: var(--ifm-code-font-size); | |
padding: 0.75rem var(--ifm-pre-padding); | |
border-top-left-radius: inherit; | |
border-top-right-radius: inherit; | |
font-weight: 500; | |
} | |
.codeBlock_Gebt { | |
--ifm-pre-background: var(--prism-background-color); | |
margin: 0; | |
padding: 0; | |
} | |
.codeBlockTitle_bdru + .codeBlockContent_vx7S .codeBlock_Gebt { | |
border-top-left-radius: 0; | |
border-top-right-radius: 0; | |
} | |
.codeBlockStandalone_i_cY { | |
padding: 0; | |
} | |
.codeBlockLines_FJaf { | |
font: inherit; | |
float: left; | |
padding: var(--ifm-pre-padding); | |
min-width: 100%; | |
} | |
.codeBlockLinesWithNumbering_FU9Q { | |
padding: var(--ifm-pre-padding) 0; | |
display: table; | |
} | |
@media print { | |
.codeBlockLines_FJaf { | |
white-space: pre-wrap; | |
} | |
} | |
.buttonGroup_cUGO { | |
-moz-column-gap: 0.2rem; | |
right: calc(var(--ifm-pre-padding) / 2); | |
top: calc(var(--ifm-pre-padding) / 2); | |
column-gap: 0.2rem; | |
display: flex; | |
position: absolute; | |
} | |
.buttonGroup_cUGO button { | |
background: var(--prism-background-color); | |
color: var(--prism-color); | |
border: 1px solid var(--ifm-color-emphasis-300); | |
border-radius: var(--ifm-global-radius); | |
transition: opacity var(--ifm-transition-fast) ease-in-out; | |
opacity: 0; | |
align-items: center; | |
padding: 0.4rem; | |
line-height: 0; | |
display: flex; | |
} | |
.buttonGroup_cUGO button:focus-visible, | |
.buttonGroup_cUGO button:hover { | |
opacity: 1 !important; | |
} | |
.theme-code-block:hover .buttonGroup_cUGO button { | |
opacity: 0.4; | |
} | |
:where(:root) { | |
--docusaurus-highlighted-code-line-bg: #484d5b; | |
} | |
:where([data-theme="dark"]) { | |
--docusaurus-highlighted-code-line-bg: #646464; | |
} | |
.theme-code-block-highlighted-line { | |
background-color: var(--docusaurus-highlighted-code-line-bg); | |
margin: 0 calc(-1 * var(--ifm-pre-padding)); | |
padding: 0 var(--ifm-pre-padding); | |
display: block; | |
} | |
.codeLine_qRmp { | |
counter-increment: line-count; | |
display: table-row; | |
} | |
.codeLineNumber_dS_J { | |
text-align: right; | |
padding: 0 var(--ifm-pre-padding); | |
background: var(--ifm-pre-background); | |
overflow-wrap: normal; | |
width: 1%; | |
display: table-cell; | |
position: sticky; | |
left: 0; | |
} | |
.codeLineNumber_dS_J:before { | |
content: counter(line-count); | |
opacity: 0.4; | |
} | |
.theme-code-block-highlighted-line .codeLineNumber_dS_J:before { | |
opacity: 0.8; | |
} | |
.codeLineContent_XF5l { | |
padding-right: var(--ifm-pre-padding); | |
} | |
.theme-code-block:hover .copyButtonCopied_OkN_ { | |
opacity: 1 !important; | |
} | |
.copyButtonIcons_OqsO { | |
width: 1.125rem; | |
height: 1.125rem; | |
position: relative; | |
} | |
.copyButtonIcon_PgCn, | |
.copyButtonSuccessIcon_bsQG { | |
fill: currentColor; | |
opacity: inherit; | |
width: inherit; | |
height: inherit; | |
transition: all var(--ifm-transition-fast) ease; | |
position: absolute; | |
top: 0; | |
left: 0; | |
} | |
.copyButtonSuccessIcon_bsQG { | |
opacity: 0; | |
color: #00d600; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%) scale(0.33); | |
} | |
.copyButtonCopied_OkN_ .copyButtonIcon_PgCn { | |
opacity: 0; | |
transform: scale(0.33); | |
} | |
.copyButtonCopied_OkN_ .copyButtonSuccessIcon_bsQG { | |
opacity: 1; | |
transition-delay: 75ms; | |
transform: translate(-50%, -50%) scale(1); | |
} | |
:root { | |
--docusaurus-tag-list-border: var(--ifm-color-emphasis-300); | |
} | |
.tag_Nd8t { | |
border: 1px solid var(--docusaurus-tag-list-border); | |
transition: border var(--ifm-transition-fast); | |
} | |
.tag_Nd8t:hover { | |
--docusaurus-tag-list-border: var(--ifm-link-color); | |
text-decoration: none; | |
} | |
.tagRegular_TiLs { | |
border-radius: var(--ifm-global-radius); | |
padding: 0.2rem 0.5rem 0.3rem; | |
font-size: 90%; | |
} | |
.tagWithCount_AQg7 { | |
border-left: 0; | |
align-items: center; | |
padding: 0 0.5rem 0 1rem; | |
display: flex; | |
position: relative; | |
} | |
.tagWithCount_AQg7:before, | |
.tagWithCount_AQg7:after { | |
content: ""; | |
border: 1px solid var(--docusaurus-tag-list-border); | |
transition: inherit; | |
position: absolute; | |
top: 50%; | |
} | |
.tagWithCount_AQg7:before { | |
border-bottom: 0; | |
border-right: 0; | |
width: 1.18rem; | |
height: 1.18rem; | |
right: 100%; | |
transform: translate(50%, -50%) rotate(-45deg); | |
} | |
.tagWithCount_AQg7:after { | |
border-radius: 50%; | |
width: 0.5rem; | |
height: 0.5rem; | |
left: 0; | |
transform: translateY(-50%); | |
} | |
.tagWithCount_AQg7 span { | |
background: var(--ifm-color-secondary); | |
color: var(--ifm-color-black); | |
border-radius: var(--ifm-global-radius); | |
margin-left: 0.3rem; | |
padding: 0.1rem 0.4rem; | |
font-size: 0.7rem; | |
line-height: 1.2; | |
} | |
.tag_SyQ5 { | |
margin: 0.5rem 0.5rem 0 1rem; | |
display: inline-block; | |
} | |
.wordWrapButtonIcon_MQXS { | |
width: 1.2rem; | |
height: 1.2rem; | |
} | |
.wordWrapButtonEnabled_TBIH .wordWrapButtonIcon_MQXS { | |
color: var(--ifm-color-primary); | |
} | |
.details_Nokh { | |
--docusaurus-details-summary-arrow-size: 0.38rem; | |
--docusaurus-details-transition: transform 0.2s ease; | |
--docusaurus-details-decoration-color: grey; | |
} | |
.details_Nokh > summary { | |
cursor: pointer; | |
padding-left: 1rem; | |
list-style: none; | |
position: relative; | |
} | |
.details_Nokh > summary::-webkit-details-marker { | |
display: none; | |
} | |
.details_Nokh > summary:before { | |
content: ""; | |
border-width: var(--docusaurus-details-summary-arrow-size); | |
border-style: solid; | |
border-color: transparent transparent transparent | |
var(--docusaurus-details-decoration-color); | |
transition: var(--docusaurus-details-transition); | |
transform-origin: calc(var(--docusaurus-details-summary-arrow-size) / 2) 50%; | |
position: absolute; | |
top: 0.45rem; | |
left: 0; | |
transform: rotate(0); | |
} | |
.details_Nokh[open]:not(.isBrowser_QrB5) > summary:before, | |
.details_Nokh[data-collapsed="false"].isBrowser_QrB5 > summary:before { | |
transform: rotate(90deg); | |
} | |
.collapsibleContent_EoA1 { | |
border-top: 1px solid var(--docusaurus-details-decoration-color); | |
margin-top: 1rem; | |
padding-top: 1rem; | |
} | |
.collapsibleContent_EoA1 p:last-child, | |
.details_Nokh > summary > p:last-child { | |
margin-bottom: 0; | |
} | |
.details_Cn_P { | |
--docusaurus-details-decoration-color: var(--ifm-alert-border-color); | |
--docusaurus-details-transition: transform var(--ifm-transition-fast) ease; | |
margin: 0 0 var(--ifm-spacing-vertical); | |
border: 1px solid var(--ifm-alert-border-color); | |
} | |
.tags_rTaS { | |
display: inline; | |
} | |
.tag_l5va { | |
margin: 0 0.4rem 0.5rem 0; | |
display: inline-block; | |
} | |
.iconEdit_IMw_ { | |
vertical-align: sub; | |
margin-right: 0.3em; | |
} | |
.image_oRbT { | |
object-fit: cover; | |
width: 100%; | |
height: 100%; | |
} | |
.containsTaskList_k9gM { | |
list-style: none; | |
} | |
:not(.containsTaskList_k9gM > li) > .containsTaskList_k9gM { | |
padding-left: 0; | |
} | |
.authorCol_mDBc { | |
max-width: inherit !important; | |
flex-grow: 1 !important; | |
} | |
.imageOnlyAuthorRow_WiD6 { | |
flex-flow: wrap; | |
display: flex; | |
} | |
.imageOnlyAuthorCol_uiac { | |
margin-left: 0.3rem; | |
margin-right: 0.3rem; | |
} | |
.imageOnlyAuthorCol_uiac [class^="image"] { | |
background-color: var(--ifm-color-emphasis-100); | |
} | |
.toggleButton_WvRg { | |
width: var(--ifm-avatar-photo-size); | |
height: var(--ifm-avatar-photo-size); | |
background-color: var(--ifm-color-emphasis-100); | |
border-radius: 50%; | |
margin-left: 0.3rem; | |
margin-right: 0.3rem; | |
} | |
.toggleButtonIconExpanded_ERxv { | |
transform: rotate(180deg); | |
} | |
.img_vXGZ { | |
height: auto; | |
} | |
.changelogItemTitleList_sueG { | |
font-size: 2rem; | |
} | |
.admonition_o5H7 { | |
margin-bottom: 1em; | |
} | |
.admonitionHeading_FzoX { | |
font: var(--ifm-heading-font-weight) var(--ifm-h5-font-size) / | |
var(--ifm-heading-line-height) var(--ifm-heading-font-family); | |
text-transform: uppercase; | |
} | |
.admonitionHeading_FzoX:not(:last-child) { | |
margin-bottom: 0.3rem; | |
} | |
.admonitionHeading_FzoX code { | |
text-transform: none; | |
} | |
.admonitionIcon_rXq6 { | |
vertical-align: middle; | |
margin-right: 0.4em; | |
display: inline-block; | |
} | |
.admonitionIcon_rXq6 svg { | |
fill: var(--ifm-alert-foreground-color); | |
width: 1.6em; | |
height: 1.6em; | |
display: inline-block; | |
} | |
.admonitionContent_Knsx > :last-child { | |
margin-bottom: 0; | |
} | |
.color_mVUL { | |
vertical-align: middle; | |
border-radius: 0.5rem; | |
width: 2rem; | |
height: 2rem; | |
display: inline-block; | |
} | |
.input_HUC3 { | |
border-color: var(--ifm-color-content-secondary); | |
border-radius: var(--ifm-global-radius); | |
border-style: solid; | |
border-width: var(--ifm-global-border-width); | |
font-size: var(--ifm-font-size-base); | |
padding: 0.5rem; | |
} | |
.colorInput_C1YB { | |
border-color: var(--ifm-color-content-secondary); | |
border-radius: var(--ifm-global-radius); | |
border-style: solid; | |
border-width: var(--ifm-global-border-width); | |
height: 2.25rem; | |
position: relative; | |
top: 7px; | |
} | |
.colorTable_Js7s { | |
font-size: small; | |
} | |
.container_RUsj, | |
.container_RUsj > svg { | |
max-width: 100%; | |
} | |
.lastUpdated_OHCJ { | |
margin-top: 0.2rem; | |
font-size: smaller; | |
font-style: italic; | |
} | |
@media (min-width: 997px) { | |
.lastUpdated_OHCJ { | |
text-align: right; | |
} | |
.tocMobile_NSfz { | |
display: none; | |
} | |
} | |
@media print { | |
.tocMobile_NSfz { | |
display: none; | |
} | |
} | |
.tweetQuote_h8Rz { | |
--ifm-link-color: var(--ifm-color-emphasis-900); | |
--ifm-link-hover-color: var(--ifm-color-emphasis-900); | |
margin: 3rem 1rem; | |
padding: 0; | |
} | |
.tweetQuote_h8Rz blockquote { | |
text-align: center; | |
border: none; | |
margin-bottom: 0.6rem; | |
font-size: 1.2rem; | |
font-weight: 200; | |
line-height: 1.4; | |
position: relative; | |
} | |
.tweetQuote_h8Rz .avatar__subtitle { | |
margin-top: 0; | |
} | |
.tweetQuote_h8Rz blockquote:before, | |
.tweetQuote_h8Rz blockquote:after { | |
color: #f1efe6; | |
width: 3rem; | |
height: 3rem; | |
font-family: cursive; | |
font-size: 6rem; | |
line-height: 1; | |
position: absolute; | |
} | |
.tweetQuote_h8Rz blockquote:before { | |
content: "“"; | |
top: -1.1rem; | |
left: -2.4rem; | |
} | |
.tweetQuote_h8Rz blockquote:after { | |
content: "”"; | |
bottom: -1.1rem; | |
right: -1.6rem; | |
} | |
[data-theme="dark"] .tweetQuote_h8Rz blockquote:before, | |
[data-theme="dark"] .tweetQuote_h8Rz blockquote:after { | |
color: #3b3b3b; | |
} | |
.tweetQuote_h8Rz p { | |
display: inline; | |
} | |
.tweetQuote_h8Rz .avatarImg_b51M { | |
width: 42px; | |
height: 42px; | |
} | |
.changelogItemContainer_jeDt { | |
margin-bottom: 1rem; | |
} | |
.tableOfContents_RLlU { | |
max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem)); | |
top: calc(var(--ifm-navbar-height) + 1rem); | |
position: sticky; | |
overflow-y: auto; | |
} | |
@media (max-width: 996px) { | |
.tableOfContents_RLlU { | |
display: none; | |
} | |
.docItemContainer_oucX { | |
padding: 0 0.3rem; | |
} | |
} | |
.rss_fOa_, | |
.rss_fOa_:hover { | |
color: #f26522; | |
} | |
.x_RTSd, | |
.x_RTSd:hover { | |
color: #1da1f2; | |
} | |
.breadcrumbHomeIcon_uaSn { | |
vertical-align: top; | |
width: 1.1rem; | |
height: 1.1rem; | |
position: relative; | |
top: 1px; | |
} | |
.breadcrumbsContainer_Wvrh { | |
--ifm-breadcrumb-size-multiplier: 0.8; | |
margin-bottom: 0.8rem; | |
} | |
@media (min-width: 997px) { | |
.generatedIndexPage_hs4p { | |
max-width: 75% !important; | |
} | |
.list_ZO3j article:nth-last-child(-n + 2) { | |
margin-bottom: 0 !important; | |
} | |
} | |
.title_tRie { | |
--ifm-h1-font-size: 3rem; | |
margin-bottom: calc(1.25 * var(--ifm-leading)); | |
} | |
.list_ZO3j article:last-child { | |
margin-bottom: 0 !important; | |
} | |
.footerTip_UBUV { | |
margin-top: var(--ifm-paragraph-margin-bottom); | |
font-size: 0.8rem; | |
} | |
.docItemContainer_RhpI header + *, | |
.docItemContainer_RhpI article > :first-child { | |
margin-top: 0; | |
} | |
@media (min-width: 997px) { | |
.docItemCol_n6xZ { | |
max-width: 75% !important; | |
} | |
} | |
.mdxPageWrapper_bWhk { | |
justify-content: center; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.col, | |
.container { | |
padding: 0 var(--ifm-spacing-horizontal); | |
width: 100%; | |
} | |
.markdown > h2, | |
.markdown > h3, | |
.markdown > h4, | |
.markdown > h5, | |
.markdown > h6 { | |
margin-bottom: calc( | |
var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading) | |
); | |
} | |
.markdown li, | |
body { | |
word-wrap: break-word; | |
} | |
body, | |
ol ol, | |
ol ul, | |
ul ol, | |
ul ul { | |
margin: 0; | |
} | |
pre, | |
table { | |
overflow: auto; | |
} | |
blockquote, | |
pre { | |
margin: 0 0 var(--ifm-spacing-vertical); | |
} | |
.breadcrumbs__link, | |
.button { | |
transition-timing-function: var(--ifm-transition-timing-default); | |
} | |
.button, | |
code { | |
vertical-align: middle; | |
} | |
.button--outline.button--active, | |
.button--outline:active, | |
.button--outline:hover, | |
:root { | |
--ifm-button-color: var(--ifm-font-color-base-inverse); | |
} | |
.avatar__photo, | |
.card, | |
.text--truncate { | |
overflow: hidden; | |
} | |
.menu__link:hover, | |
a { | |
transition: color var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.navbar--dark, | |
:root { | |
--ifm-navbar-link-hover-color: var(--ifm-color-primary); | |
} | |
.menu, | |
.navbar-sidebar { | |
overflow-x: hidden; | |
} | |
:root, | |
html[data-theme="dark"] { | |
--ifm-color-emphasis-500: var(--ifm-color-gray-500); | |
} | |
[data-theme="dark"] .DocSearch, | |
[data-theme="light"] .DocSearch { | |
--docsearch-hit-color: var(--ifm-font-color-base); | |
--docsearch-hit-active-color: var(--ifm-color-white); | |
} | |
.close, | |
.version_gVgE { | |
float: right; | |
} | |
.DocSearch-Hit-content-wrapper, | |
.text--truncate { | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
} | |
.toggleButton_x9TT, | |
html { | |
-webkit-tap-highlight-color: transparent; | |
} | |
.DocSearch-Hit-content-wrapper, | |
.button, | |
.buttons_uHc7, | |
.dropdown__link, | |
.screen-reader-only, | |
.text--truncate { | |
white-space: nowrap; | |
} | |
*, | |
.DocSearch-Container, | |
.DocSearch-Container *, | |
.slide___3-Nqo { | |
box-sizing: border-box; | |
} | |
:root { | |
--ifm-color-scheme: light; | |
--ifm-dark-value: 10%; | |
--ifm-darker-value: 15%; | |
--ifm-darkest-value: 30%; | |
--ifm-light-value: 15%; | |
--ifm-lighter-value: 30%; | |
--ifm-lightest-value: 50%; | |
--ifm-contrast-background-value: 90%; | |
--ifm-contrast-foreground-value: 70%; | |
--ifm-contrast-background-dark-value: 70%; | |
--ifm-contrast-foreground-dark-value: 90%; | |
--ifm-color-primary: #3578e5; | |
--ifm-color-secondary: #ebedf0; | |
--ifm-color-success: #00a400; | |
--ifm-color-info: #54c7ec; | |
--ifm-color-warning: #ffba00; | |
--ifm-color-danger: #fa383e; | |
--ifm-color-primary-dark: #306cce; | |
--ifm-color-primary-darker: #2d66c3; | |
--ifm-color-primary-darkest: #2554a0; | |
--ifm-color-primary-light: #538ce9; | |
--ifm-color-primary-lighter: #72a1ed; | |
--ifm-color-primary-lightest: #9abcf2; | |
--ifm-color-primary-contrast-background: #ebf2fc; | |
--ifm-color-primary-contrast-foreground: #102445; | |
--ifm-color-secondary-dark: #d4d5d8; | |
--ifm-color-secondary-darker: #c8c9cc; | |
--ifm-color-secondary-darkest: #a4a6a8; | |
--ifm-color-secondary-light: #eef0f2; | |
--ifm-color-secondary-lighter: #f1f2f5; | |
--ifm-color-secondary-lightest: #f5f6f8; | |
--ifm-color-secondary-contrast-background: #fdfdfe; | |
--ifm-color-secondary-contrast-foreground: #474748; | |
--ifm-color-success-dark: #009400; | |
--ifm-color-success-darker: #008b00; | |
--ifm-color-success-darkest: #007300; | |
--ifm-color-success-light: #26b226; | |
--ifm-color-success-lighter: #4dbf4d; | |
--ifm-color-success-lightest: #80d280; | |
--ifm-color-success-contrast-background: #e6f6e6; | |
--ifm-color-success-contrast-foreground: #003100; | |
--ifm-color-info-dark: #4cb3d4; | |
--ifm-color-info-darker: #47a9c9; | |
--ifm-color-info-darkest: #3b8ba5; | |
--ifm-color-info-light: #6ecfef; | |
--ifm-color-info-lighter: #87d8f2; | |
--ifm-color-info-lightest: #aae3f6; | |
--ifm-color-info-contrast-background: #eef9fd; | |
--ifm-color-info-contrast-foreground: #193c47; | |
--ifm-color-warning-dark: #e6a700; | |
--ifm-color-warning-darker: #d99e00; | |
--ifm-color-warning-darkest: #b38200; | |
--ifm-color-warning-light: #ffc426; | |
--ifm-color-warning-lighter: #ffcf4d; | |
--ifm-color-warning-lightest: #ffdd80; | |
--ifm-color-warning-contrast-background: #fff8e6; | |
--ifm-color-warning-contrast-foreground: #4d3800; | |
--ifm-color-danger-dark: #e13238; | |
--ifm-color-danger-darker: #d53035; | |
--ifm-color-danger-darkest: #af272b; | |
--ifm-color-danger-light: #fb565b; | |
--ifm-color-danger-lighter: #fb7478; | |
--ifm-color-danger-lightest: #fd9c9f; | |
--ifm-color-danger-contrast-background: #ffebec; | |
--ifm-color-danger-contrast-foreground: #4b1113; | |
--ifm-color-white: #fff; | |
--ifm-color-black: #000; | |
--ifm-color-gray-0: var(--ifm-color-white); | |
--ifm-color-gray-100: #f5f6f7; | |
--ifm-color-gray-200: #ebedf0; | |
--ifm-color-gray-300: #dadde1; | |
--ifm-color-gray-400: #ccd0d5; | |
--ifm-color-gray-500: #bec3c9; | |
--ifm-color-gray-600: #8d949e; | |
--ifm-color-gray-700: #606770; | |
--ifm-color-gray-800: #444950; | |
--ifm-color-gray-900: #1c1e21; | |
--ifm-color-gray-1000: var(--ifm-color-black); | |
--ifm-color-emphasis-0: var(--ifm-color-gray-0); | |
--ifm-color-emphasis-100: var(--ifm-color-gray-100); | |
--ifm-color-emphasis-200: var(--ifm-color-gray-200); | |
--ifm-color-emphasis-300: var(--ifm-color-gray-300); | |
--ifm-color-emphasis-400: var(--ifm-color-gray-400); | |
--ifm-color-emphasis-600: var(--ifm-color-gray-600); | |
--ifm-color-emphasis-700: var(--ifm-color-gray-700); | |
--ifm-color-emphasis-800: var(--ifm-color-gray-800); | |
--ifm-color-emphasis-900: var(--ifm-color-gray-900); | |
--ifm-color-emphasis-1000: var(--ifm-color-gray-1000); | |
--ifm-color-content: var(--ifm-color-emphasis-900); | |
--ifm-color-content-inverse: var(--ifm-color-emphasis-0); | |
--ifm-color-content-secondary: #525860; | |
--ifm-background-color: #0000; | |
--ifm-background-surface-color: var(--ifm-color-content-inverse); | |
--ifm-global-border-width: 1px; | |
--ifm-global-radius: 0.4rem; | |
--ifm-hover-overlay: #0000000d; | |
--ifm-font-color-base: var(--ifm-color-content); | |
--ifm-font-color-base-inverse: var(--ifm-color-content-inverse); | |
--ifm-font-color-secondary: var(--ifm-color-content-secondary); | |
--ifm-font-family-base: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, | |
Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Helvetica, | |
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
--ifm-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, | |
"Liberation Mono", "Courier New", monospace; | |
--ifm-font-size-base: 100%; | |
--ifm-font-weight-light: 300; | |
--ifm-font-weight-normal: 400; | |
--ifm-font-weight-semibold: 500; | |
--ifm-font-weight-bold: 700; | |
--ifm-font-weight-base: var(--ifm-font-weight-normal); | |
--ifm-line-height-base: 1.65; | |
--ifm-global-spacing: 1rem; | |
--ifm-spacing-vertical: var(--ifm-global-spacing); | |
--ifm-spacing-horizontal: var(--ifm-global-spacing); | |
--ifm-transition-fast: 200ms; | |
--ifm-transition-slow: 400ms; | |
--ifm-transition-timing-default: cubic-bezier(0.08, 0.52, 0.52, 1); | |
--ifm-global-shadow-lw: 0 1px 2px 0 #0000001a; | |
--ifm-global-shadow-md: 0 5px 40px #0003; | |
--ifm-global-shadow-tl: 0 12px 28px 0 #0003, 0 2px 4px 0 #0000001a; | |
--ifm-z-index-dropdown: 100; | |
--ifm-z-index-fixed: 200; | |
--ifm-z-index-overlay: 400; | |
--ifm-container-width: 1140px; | |
--ifm-container-width-xl: 1320px; | |
--ifm-code-background: #f6f7f8; | |
--ifm-code-border-radius: var(--ifm-global-radius); | |
--ifm-code-font-size: 90%; | |
--ifm-code-padding-horizontal: 0.1rem; | |
--ifm-code-padding-vertical: 0.1rem; | |
--ifm-pre-background: var(--ifm-code-background); | |
--ifm-pre-border-radius: var(--ifm-code-border-radius); | |
--ifm-pre-color: inherit; | |
--ifm-pre-line-height: 1.45; | |
--ifm-pre-padding: 1rem; | |
--ifm-heading-color: inherit; | |
--ifm-heading-margin-top: 0; | |
--ifm-heading-margin-bottom: var(--ifm-spacing-vertical); | |
--ifm-heading-font-family: var(--ifm-font-family-base); | |
--ifm-heading-font-weight: var(--ifm-font-weight-bold); | |
--ifm-heading-line-height: 1.25; | |
--ifm-h1-font-size: 2rem; | |
--ifm-h2-font-size: 1.5rem; | |
--ifm-h3-font-size: 1.25rem; | |
--ifm-h4-font-size: 1rem; | |
--ifm-h5-font-size: 0.875rem; | |
--ifm-h6-font-size: 0.85rem; | |
--ifm-image-alignment-padding: 1.25rem; | |
--ifm-leading-desktop: 1.25; | |
--ifm-leading: calc(var(--ifm-leading-desktop) * 1rem); | |
--ifm-list-left-padding: 2rem; | |
--ifm-list-margin: 1rem; | |
--ifm-list-item-margin: 0.25rem; | |
--ifm-list-paragraph-margin: 1rem; | |
--ifm-table-cell-padding: 0.75rem; | |
--ifm-table-background: #0000; | |
--ifm-table-stripe-background: #00000008; | |
--ifm-table-border-width: 1px; | |
--ifm-table-border-color: var(--ifm-color-emphasis-300); | |
--ifm-table-head-background: inherit; | |
--ifm-table-head-color: inherit; | |
--ifm-table-head-font-weight: var(--ifm-font-weight-bold); | |
--ifm-table-cell-color: inherit; | |
--ifm-link-color: var(--ifm-color-primary); | |
--ifm-link-decoration: none; | |
--ifm-link-hover-color: var(--ifm-link-color); | |
--ifm-link-hover-decoration: underline; | |
--ifm-paragraph-margin-bottom: var(--ifm-leading); | |
--ifm-blockquote-font-size: var(--ifm-font-size-base); | |
--ifm-blockquote-border-left-width: 2px; | |
--ifm-blockquote-padding-horizontal: var(--ifm-spacing-horizontal); | |
--ifm-blockquote-padding-vertical: 0; | |
--ifm-blockquote-shadow: none; | |
--ifm-blockquote-color: var(--ifm-color-emphasis-800); | |
--ifm-blockquote-border-color: var(--ifm-color-emphasis-300); | |
--ifm-hr-background-color: var(--ifm-color-emphasis-500); | |
--ifm-hr-height: 1px; | |
--ifm-hr-margin-vertical: 1.5rem; | |
--ifm-scrollbar-size: 7px; | |
--ifm-scrollbar-track-background-color: #f1f1f1; | |
--ifm-scrollbar-thumb-background-color: silver; | |
--ifm-scrollbar-thumb-hover-background-color: #a7a7a7; | |
--ifm-alert-background-color: inherit; | |
--ifm-alert-border-color: inherit; | |
--ifm-alert-border-radius: var(--ifm-global-radius); | |
--ifm-alert-border-width: 0px; | |
--ifm-alert-border-left-width: 5px; | |
--ifm-alert-color: var(--ifm-font-color-base); | |
--ifm-alert-padding-horizontal: var(--ifm-spacing-horizontal); | |
--ifm-alert-padding-vertical: var(--ifm-spacing-vertical); | |
--ifm-alert-shadow: var(--ifm-global-shadow-lw); | |
--ifm-avatar-intro-margin: 1rem; | |
--ifm-avatar-intro-alignment: inherit; | |
--ifm-avatar-photo-size: 3rem; | |
--ifm-badge-background-color: inherit; | |
--ifm-badge-border-color: inherit; | |
--ifm-badge-border-radius: var(--ifm-global-radius); | |
--ifm-badge-border-width: var(--ifm-global-border-width); | |
--ifm-badge-color: var(--ifm-color-white); | |
--ifm-badge-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 0.5); | |
--ifm-badge-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25); | |
--ifm-breadcrumb-border-radius: 1.5rem; | |
--ifm-breadcrumb-spacing: 0.5rem; | |
--ifm-breadcrumb-color-active: var(--ifm-color-primary); | |
--ifm-breadcrumb-item-background-active: var(--ifm-hover-overlay); | |
--ifm-breadcrumb-padding-horizontal: 0.8rem; | |
--ifm-breadcrumb-padding-vertical: 0.4rem; | |
--ifm-breadcrumb-size-multiplier: 1; | |
--ifm-breadcrumb-separator: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 256 256"><g><g><polygon points="79.093,0 48.907,30.187 146.72,128 48.907,225.813 79.093,256 207.093,128"/></g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>'); | |
--ifm-breadcrumb-separator-filter: none; | |
--ifm-breadcrumb-separator-size: 0.5rem; | |
--ifm-breadcrumb-separator-size-multiplier: 1.25; | |
--ifm-button-background-color: inherit; | |
--ifm-button-border-color: var(--ifm-button-background-color); | |
--ifm-button-border-width: var(--ifm-global-border-width); | |
--ifm-button-font-weight: var(--ifm-font-weight-bold); | |
--ifm-button-padding-horizontal: 1.5rem; | |
--ifm-button-padding-vertical: 0.375rem; | |
--ifm-button-size-multiplier: 1; | |
--ifm-button-transition-duration: var(--ifm-transition-fast); | |
--ifm-button-border-radius: calc( | |
var(--ifm-global-radius) * var(--ifm-button-size-multiplier) | |
); | |
--ifm-button-group-spacing: 2px; | |
--ifm-card-background-color: var(--ifm-background-surface-color); | |
--ifm-card-border-radius: calc(var(--ifm-global-radius) * 2); | |
--ifm-card-horizontal-spacing: var(--ifm-global-spacing); | |
--ifm-card-vertical-spacing: var(--ifm-global-spacing); | |
--ifm-toc-border-color: var(--ifm-color-emphasis-300); | |
--ifm-toc-link-color: var(--ifm-color-content-secondary); | |
--ifm-toc-padding-vertical: 0.5rem; | |
--ifm-toc-padding-horizontal: 0.5rem; | |
--ifm-dropdown-background-color: var(--ifm-background-surface-color); | |
--ifm-dropdown-font-weight: var(--ifm-font-weight-semibold); | |
--ifm-dropdown-link-color: var(--ifm-font-color-base); | |
--ifm-dropdown-hover-background-color: var(--ifm-hover-overlay); | |
--ifm-footer-background-color: var(--ifm-color-emphasis-100); | |
--ifm-footer-color: inherit; | |
--ifm-footer-link-color: var(--ifm-color-emphasis-700); | |
--ifm-footer-link-hover-color: var(--ifm-color-primary); | |
--ifm-footer-link-horizontal-spacing: 0.5rem; | |
--ifm-footer-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 2); | |
--ifm-footer-padding-vertical: calc(var(--ifm-spacing-vertical) * 2); | |
--ifm-footer-title-color: inherit; | |
--ifm-footer-logo-max-width: min(30rem, 90vw); | |
--ifm-hero-background-color: var(--ifm-background-surface-color); | |
--ifm-hero-text-color: var(--ifm-color-emphasis-800); | |
--ifm-menu-color: var(--ifm-color-emphasis-700); | |
--ifm-menu-color-active: var(--ifm-color-primary); | |
--ifm-menu-color-background-active: var(--ifm-hover-overlay); | |
--ifm-menu-color-background-hover: var(--ifm-hover-overlay); | |
--ifm-menu-link-padding-horizontal: 0.75rem; | |
--ifm-menu-link-padding-vertical: 0.375rem; | |
--ifm-menu-link-sublist-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path fill="rgba(0,0,0,0.5)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>'); | |
--ifm-menu-link-sublist-icon-filter: none; | |
--ifm-navbar-background-color: var(--ifm-background-surface-color); | |
--ifm-navbar-height: 3.75rem; | |
--ifm-navbar-item-padding-horizontal: 0.75rem; | |
--ifm-navbar-item-padding-vertical: 0.25rem; | |
--ifm-navbar-link-color: var(--ifm-font-color-base); | |
--ifm-navbar-link-active-color: var(--ifm-link-color); | |
--ifm-navbar-padding-horizontal: var(--ifm-spacing-horizontal); | |
--ifm-navbar-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.5); | |
--ifm-navbar-shadow: var(--ifm-global-shadow-lw); | |
--ifm-navbar-search-input-background-color: var(--ifm-color-emphasis-200); | |
--ifm-navbar-search-input-color: var(--ifm-color-emphasis-800); | |
--ifm-navbar-search-input-placeholder-color: var(--ifm-color-emphasis-500); | |
--ifm-navbar-search-input-icon: url('data:image/svg+xml;utf8,<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="16px" width="16px"><path d="M6.02945,10.20327a4.17382,4.17382,0,1,1,4.17382-4.17382A4.15609,4.15609,0,0,1,6.02945,10.20327Zm9.69195,4.2199L10.8989,9.59979A5.88021,5.88021,0,0,0,12.058,6.02856,6.00467,6.00467,0,1,0,9.59979,10.8989l4.82338,4.82338a.89729.89729,0,0,0,1.29912,0,.89749.89749,0,0,0-.00087-1.29909Z" /></svg>'); | |
--ifm-navbar-sidebar-width: 83vw; | |
--ifm-pagination-border-radius: var(--ifm-global-radius); | |
--ifm-pagination-color-active: var(--ifm-color-primary); | |
--ifm-pagination-font-size: 1rem; | |
--ifm-pagination-item-active-background: var(--ifm-hover-overlay); | |
--ifm-pagination-page-spacing: 0.2em; | |
--ifm-pagination-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 1); | |
--ifm-pagination-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25); | |
--ifm-pagination-nav-border-radius: var(--ifm-global-radius); | |
--ifm-pagination-nav-color-hover: var(--ifm-color-primary); | |
--ifm-pills-color-active: var(--ifm-color-primary); | |
--ifm-pills-color-background-active: var(--ifm-hover-overlay); | |
--ifm-pills-spacing: 0.125rem; | |
--ifm-tabs-color: var(--ifm-font-color-secondary); | |
--ifm-tabs-color-active: var(--ifm-color-primary); | |
--ifm-tabs-color-active-border: var(--ifm-tabs-color-active); | |
--ifm-tabs-padding-horizontal: 1rem; | |
--ifm-tabs-padding-vertical: 1rem; | |
} | |
.badge--danger, | |
.badge--info, | |
.badge--primary, | |
.badge--secondary, | |
.badge--success, | |
.badge--warning { | |
--ifm-badge-border-color: var(--ifm-badge-background-color); | |
} | |
.button--link, | |
.button--outline { | |
--ifm-button-background-color: #0000; | |
} | |
html { | |
background-color: var(--ifm-background-color); | |
color: var(--ifm-font-color-base); | |
color-scheme: var(--ifm-color-scheme); | |
font: var(--ifm-font-size-base) / var(--ifm-line-height-base) | |
var(--ifm-font-family-base); | |
-webkit-font-smoothing: antialiased; | |
text-rendering: optimizelegibility; | |
-webkit-text-size-adjust: 100%; | |
text-size-adjust: 100%; | |
} | |
iframe { | |
border: 0; | |
color-scheme: auto; | |
} | |
.container { | |
margin: 0 auto; | |
max-width: var(--ifm-container-width); | |
} | |
.container--fluid { | |
max-width: inherit; | |
} | |
.row { | |
display: flex; | |
flex-wrap: wrap; | |
margin: 0 calc(var(--ifm-spacing-horizontal) * -1); | |
} | |
.list_ZO3j article:last-child, | |
.margin-bottom--none, | |
.margin-vert--none, | |
.markdown > :last-child { | |
margin-bottom: 0 !important; | |
} | |
.margin-top--none, | |
.margin-vert--none, | |
.tabItem_AQgk { | |
margin-top: 0 !important; | |
} | |
.row--no-gutters { | |
margin-left: 0; | |
margin-right: 0; | |
} | |
.margin-horiz--none, | |
.margin-right--none { | |
margin-right: 0 !important; | |
} | |
.row--no-gutters > .col { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
.row--align-top { | |
align-items: flex-start; | |
} | |
.row--align-bottom { | |
align-items: flex-end; | |
} | |
.menuExternalLink_zaS2, | |
.row--align-center { | |
align-items: center; | |
} | |
.row--align-stretch { | |
align-items: stretch; | |
} | |
.row--align-baseline { | |
align-items: baseline; | |
} | |
.col { | |
--ifm-col-width: 100%; | |
flex: 1 0; | |
margin-left: 0; | |
max-width: var(--ifm-col-width); | |
} | |
.padding-bottom--none, | |
.padding-vert--none { | |
padding-bottom: 0 !important; | |
} | |
.padding-top--none, | |
.padding-vert--none { | |
padding-top: 0 !important; | |
} | |
.padding-horiz--none, | |
.padding-left--none { | |
padding-left: 0 !important; | |
} | |
.padding-horiz--none, | |
.padding-right--none { | |
padding-right: 0 !important; | |
} | |
.col[class*="col--"] { | |
flex: 0 0 var(--ifm-col-width); | |
} | |
.col--1 { | |
--ifm-col-width: 8.33333%; | |
} | |
.col--offset-1 { | |
margin-left: 8.33333%; | |
} | |
.col--2 { | |
--ifm-col-width: 16.66667%; | |
} | |
.col--offset-2 { | |
margin-left: 16.66667%; | |
} | |
.col--3 { | |
--ifm-col-width: 25%; | |
} | |
.col--offset-3 { | |
margin-left: 25%; | |
} | |
.col--4 { | |
--ifm-col-width: 33.33333%; | |
} | |
.col--offset-4 { | |
margin-left: 33.33333%; | |
} | |
.col--5 { | |
--ifm-col-width: 41.66667%; | |
} | |
.col--offset-5 { | |
margin-left: 41.66667%; | |
} | |
.col--6 { | |
--ifm-col-width: 50%; | |
} | |
.col--offset-6 { | |
margin-left: 50%; | |
} | |
.col--7 { | |
--ifm-col-width: 58.33333%; | |
} | |
.col--offset-7 { | |
margin-left: 58.33333%; | |
} | |
.col--8 { | |
--ifm-col-width: 66.66667%; | |
} | |
.col--offset-8 { | |
margin-left: 66.66667%; | |
} | |
.col--9 { | |
--ifm-col-width: 75%; | |
} | |
.col--offset-9 { | |
margin-left: 75%; | |
} | |
.col--10 { | |
--ifm-col-width: 83.33333%; | |
} | |
.col--offset-10 { | |
margin-left: 83.33333%; | |
} | |
.col--11 { | |
--ifm-col-width: 91.66667%; | |
} | |
.col--offset-11 { | |
margin-left: 91.66667%; | |
} | |
.col--12 { | |
--ifm-col-width: 100%; | |
} | |
.col--offset-12 { | |
margin-left: 100%; | |
} | |
.margin-horiz--none, | |
.margin-left--none { | |
margin-left: 0 !important; | |
} | |
.margin--none { | |
margin: 0 !important; | |
} | |
.margin-bottom--xs, | |
.margin-vert--xs { | |
margin-bottom: 0.25rem !important; | |
} | |
.margin-top--xs, | |
.margin-vert--xs { | |
margin-top: 0.25rem !important; | |
} | |
.margin-horiz--xs, | |
.margin-left--xs { | |
margin-left: 0.25rem !important; | |
} | |
.margin-horiz--xs, | |
.margin-right--xs { | |
margin-right: 0.25rem !important; | |
} | |
.margin--xs { | |
margin: 0.25rem !important; | |
} | |
.margin-bottom--sm, | |
.margin-vert--sm { | |
margin-bottom: 0.5rem !important; | |
} | |
.margin-top--sm, | |
.margin-vert--sm { | |
margin-top: 0.5rem !important; | |
} | |
.margin-horiz--sm, | |
.margin-left--sm { | |
margin-left: 0.5rem !important; | |
} | |
.margin-horiz--sm, | |
.margin-right--sm { | |
margin-right: 0.5rem !important; | |
} | |
.margin--sm { | |
margin: 0.5rem !important; | |
} | |
.margin-bottom--md, | |
.margin-vert--md { | |
margin-bottom: 1rem !important; | |
} | |
.margin-top--md, | |
.margin-vert--md { | |
margin-top: 1rem !important; | |
} | |
.margin-horiz--md, | |
.margin-left--md { | |
margin-left: 1rem !important; | |
} | |
.margin-horiz--md, | |
.margin-right--md { | |
margin-right: 1rem !important; | |
} | |
.margin--md { | |
margin: 1rem !important; | |
} | |
.margin-bottom--lg, | |
.margin-vert--lg { | |
margin-bottom: 2rem !important; | |
} | |
.margin-top--lg, | |
.margin-vert--lg { | |
margin-top: 2rem !important; | |
} | |
.margin-horiz--lg, | |
.margin-left--lg { | |
margin-left: 2rem !important; | |
} | |
.margin-horiz--lg, | |
.margin-right--lg { | |
margin-right: 2rem !important; | |
} | |
.margin--lg { | |
margin: 2rem !important; | |
} | |
.margin-bottom--xl, | |
.margin-vert--xl { | |
margin-bottom: 5rem !important; | |
} | |
.margin-top--xl, | |
.margin-vert--xl { | |
margin-top: 5rem !important; | |
} | |
.margin-horiz--xl, | |
.margin-left--xl { | |
margin-left: 5rem !important; | |
} | |
.margin-horiz--xl, | |
.margin-right--xl { | |
margin-right: 5rem !important; | |
} | |
.margin--xl { | |
margin: 5rem !important; | |
} | |
.padding--none { | |
padding: 0 !important; | |
} | |
.padding-bottom--xs, | |
.padding-vert--xs { | |
padding-bottom: 0.25rem !important; | |
} | |
.padding-top--xs, | |
.padding-vert--xs { | |
padding-top: 0.25rem !important; | |
} | |
.padding-horiz--xs, | |
.padding-left--xs { | |
padding-left: 0.25rem !important; | |
} | |
.padding-horiz--xs, | |
.padding-right--xs { | |
padding-right: 0.25rem !important; | |
} | |
.padding--xs { | |
padding: 0.25rem !important; | |
} | |
.padding-bottom--sm, | |
.padding-vert--sm { | |
padding-bottom: 0.5rem !important; | |
} | |
.padding-top--sm, | |
.padding-vert--sm { | |
padding-top: 0.5rem !important; | |
} | |
.padding-horiz--sm, | |
.padding-left--sm { | |
padding-left: 0.5rem !important; | |
} | |
.padding-horiz--sm, | |
.padding-right--sm { | |
padding-right: 0.5rem !important; | |
} | |
.padding--sm { | |
padding: 0.5rem !important; | |
} | |
.padding-bottom--md, | |
.padding-vert--md { | |
padding-bottom: 1rem !important; | |
} | |
.padding-top--md, | |
.padding-vert--md { | |
padding-top: 1rem !important; | |
} | |
.padding-horiz--md, | |
.padding-left--md { | |
padding-left: 1rem !important; | |
} | |
.padding-horiz--md, | |
.padding-right--md { | |
padding-right: 1rem !important; | |
} | |
.padding--md { | |
padding: 1rem !important; | |
} | |
.padding-bottom--lg, | |
.padding-vert--lg { | |
padding-bottom: 2rem !important; | |
} | |
.padding-top--lg, | |
.padding-vert--lg { | |
padding-top: 2rem !important; | |
} | |
.padding-horiz--lg, | |
.padding-left--lg { | |
padding-left: 2rem !important; | |
} | |
.padding-horiz--lg, | |
.padding-right--lg { | |
padding-right: 2rem !important; | |
} | |
.padding--lg { | |
padding: 2rem !important; | |
} | |
.padding-bottom--xl, | |
.padding-vert--xl { | |
padding-bottom: 5rem !important; | |
} | |
.padding-top--xl, | |
.padding-vert--xl { | |
padding-top: 5rem !important; | |
} | |
.padding-horiz--xl, | |
.padding-left--xl { | |
padding-left: 5rem !important; | |
} | |
.padding-horiz--xl, | |
.padding-right--xl { | |
padding-right: 5rem !important; | |
} | |
.padding--xl { | |
padding: 5rem !important; | |
} | |
code { | |
background-color: var(--ifm-code-background); | |
border: 0.1rem solid #0000001a; | |
border-radius: var(--ifm-code-border-radius); | |
font-family: var(--ifm-font-family-monospace); | |
font-size: var(--ifm-code-font-size); | |
padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal); | |
} | |
a code { | |
color: inherit; | |
} | |
pre { | |
background-color: var(--ifm-pre-background); | |
border-radius: var(--ifm-pre-border-radius); | |
color: var(--ifm-pre-color); | |
font: var(--ifm-code-font-size) / var(--ifm-pre-line-height) | |
var(--ifm-font-family-monospace); | |
padding: var(--ifm-pre-padding); | |
} | |
pre code { | |
background-color: initial; | |
border: none; | |
font-size: 100%; | |
line-height: inherit; | |
padding: 0; | |
} | |
kbd { | |
background-color: var(--ifm-color-emphasis-0); | |
border: 1px solid var(--ifm-color-emphasis-400); | |
border-radius: 0.2rem; | |
box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-400); | |
color: var(--ifm-color-emphasis-800); | |
font: 80% var(--ifm-font-family-monospace); | |
padding: 0.15rem 0.3rem; | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
color: var(--ifm-heading-color); | |
font-family: var(--ifm-heading-font-family); | |
font-weight: var(--ifm-heading-font-weight); | |
line-height: var(--ifm-heading-line-height); | |
margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0; | |
} | |
h1 { | |
font-size: var(--ifm-h1-font-size); | |
} | |
h2 { | |
font-size: var(--ifm-h2-font-size); | |
} | |
h3 { | |
font-size: var(--ifm-h3-font-size); | |
} | |
h4 { | |
font-size: var(--ifm-h4-font-size); | |
} | |
h5 { | |
font-size: var(--ifm-h5-font-size); | |
} | |
h6 { | |
font-size: var(--ifm-h6-font-size); | |
} | |
.container_RUsj, | |
.container_RUsj > svg, | |
img { | |
max-width: 100%; | |
} | |
img[align="right"] { | |
padding-left: var(--image-alignment-padding); | |
} | |
img[align="left"] { | |
padding-right: var(--image-alignment-padding); | |
} | |
.markdown { | |
--ifm-h1-vertical-rhythm-top: 3; | |
--ifm-h2-vertical-rhythm-top: 2; | |
--ifm-h3-vertical-rhythm-top: 1.5; | |
--ifm-heading-vertical-rhythm-top: 1.25; | |
--ifm-h1-vertical-rhythm-bottom: 1.25; | |
--ifm-heading-vertical-rhythm-bottom: 1; | |
} | |
.markdown:after, | |
.markdown:before { | |
content: ""; | |
display: table; | |
} | |
.markdown:after { | |
clear: both; | |
} | |
.markdown h1:first-child { | |
--ifm-h1-font-size: 3rem; | |
margin-bottom: calc( | |
var(--ifm-h1-vertical-rhythm-bottom) * var(--ifm-leading) | |
); | |
} | |
.markdown > h2 { | |
--ifm-h2-font-size: 2rem; | |
margin-top: calc(var(--ifm-h2-vertical-rhythm-top) * var(--ifm-leading)); | |
} | |
.markdown > h3 { | |
--ifm-h3-font-size: 1.5rem; | |
margin-top: calc(var(--ifm-h3-vertical-rhythm-top) * var(--ifm-leading)); | |
} | |
.markdown > h4, | |
.markdown > h5, | |
.markdown > h6 { | |
margin-top: calc(var(--ifm-heading-vertical-rhythm-top) * var(--ifm-leading)); | |
} | |
.markdown > p, | |
.markdown > pre, | |
.markdown > ul, | |
.tabList_Qoir { | |
margin-bottom: var(--ifm-leading); | |
} | |
.markdown li > p { | |
margin-top: var(--ifm-list-paragraph-margin); | |
} | |
.markdown li + li { | |
margin-top: var(--ifm-list-item-margin); | |
} | |
ol, | |
ul { | |
margin: 0 0 var(--ifm-list-margin); | |
padding-left: var(--ifm-list-left-padding); | |
} | |
ol ol, | |
ul ol { | |
list-style-type: lower-roman; | |
} | |
ol ol ol, | |
ol ul ol, | |
ul ol ol, | |
ul ul ol { | |
list-style-type: lower-alpha; | |
} | |
table { | |
border-collapse: collapse; | |
display: block; | |
margin-bottom: var(--ifm-spacing-vertical); | |
} | |
table thead tr { | |
border-bottom: 2px solid var(--ifm-table-border-color); | |
} | |
table thead, | |
table tr:nth-child(2n) { | |
background-color: var(--ifm-table-stripe-background); | |
} | |
table tr { | |
background-color: var(--ifm-table-background); | |
border-top: var(--ifm-table-border-width) solid var(--ifm-table-border-color); | |
} | |
table td, | |
table th { | |
border: var(--ifm-table-border-width) solid var(--ifm-table-border-color); | |
padding: var(--ifm-table-cell-padding); | |
} | |
table th { | |
background-color: var(--ifm-table-head-background); | |
color: var(--ifm-table-head-color); | |
font-weight: var(--ifm-table-head-font-weight); | |
} | |
table td { | |
color: var(--ifm-table-cell-color); | |
} | |
strong { | |
font-weight: var(--ifm-font-weight-bold); | |
} | |
a { | |
color: var(--ifm-link-color); | |
text-decoration: var(--ifm-link-decoration); | |
} | |
a:hover { | |
color: var(--ifm-link-hover-color); | |
text-decoration: var(--ifm-link-hover-decoration); | |
} | |
.button:hover, | |
.text--no-decoration, | |
.text--no-decoration:hover, | |
a:not([href]) { | |
text-decoration: none; | |
} | |
p { | |
margin: 0 0 var(--ifm-paragraph-margin-bottom); | |
} | |
blockquote { | |
border-left: var(--ifm-blockquote-border-left-width) solid | |
var(--ifm-blockquote-border-color); | |
box-shadow: var(--ifm-blockquote-shadow); | |
color: var(--ifm-blockquote-color); | |
font-size: var(--ifm-blockquote-font-size); | |
padding: var(--ifm-blockquote-padding-vertical) | |
var(--ifm-blockquote-padding-horizontal); | |
} | |
blockquote > :first-child { | |
margin-top: 0; | |
} | |
blockquote > :last-child { | |
margin-bottom: 0; | |
} | |
hr { | |
background-color: var(--ifm-hr-background-color); | |
border: 0; | |
height: var(--ifm-hr-height); | |
margin: var(--ifm-hr-margin-vertical) 0; | |
} | |
.shadow--lw { | |
box-shadow: var(--ifm-global-shadow-lw) !important; | |
} | |
.shadow--md { | |
box-shadow: var(--ifm-global-shadow-md) !important; | |
} | |
.shadow--tl { | |
box-shadow: var(--ifm-global-shadow-tl) !important; | |
} | |
.text--primary { | |
color: var(--ifm-color-primary); | |
} | |
.text--secondary { | |
color: var(--ifm-color-secondary); | |
} | |
.text--success { | |
color: var(--ifm-color-success); | |
} | |
.text--info { | |
color: var(--ifm-color-info); | |
} | |
.text--warning { | |
color: var(--ifm-color-warning); | |
} | |
.text--danger { | |
color: var(--ifm-color-danger); | |
} | |
.text--center { | |
text-align: center; | |
} | |
.text--left { | |
text-align: left; | |
} | |
.text--justify { | |
text-align: justify; | |
} | |
.text--right { | |
text-align: right; | |
} | |
.text--capitalize { | |
text-transform: capitalize; | |
} | |
.text--lowercase { | |
text-transform: lowercase; | |
} | |
.admonitionHeading_FzoX, | |
.alert__heading, | |
.nullValueParaiso_Ey4X, | |
.playgroundHeader_Tvsk, | |
.text--uppercase { | |
text-transform: uppercase; | |
} | |
.text--light { | |
font-weight: var(--ifm-font-weight-light); | |
} | |
.text--normal { | |
font-weight: var(--ifm-font-weight-normal); | |
} | |
.text--semibold { | |
font-weight: var(--ifm-font-weight-semibold); | |
} | |
.text--bold { | |
font-weight: var(--ifm-font-weight-bold); | |
} | |
.text--italic { | |
font-style: italic; | |
} | |
.text--break { | |
word-wrap: break-word !important; | |
word-break: break-word !important; | |
} | |
.clean-btn { | |
background: none; | |
border: none; | |
color: inherit; | |
cursor: pointer; | |
font-family: inherit; | |
padding: 0; | |
} | |
.alert, | |
.alert .close { | |
color: var(--ifm-alert-foreground-color); | |
} | |
.clean-list { | |
list-style: none; | |
padding-left: 0; | |
} | |
.alert--primary { | |
--ifm-alert-background-color: var(--ifm-color-primary-contrast-background); | |
--ifm-alert-background-color-highlight: #3578e526; | |
--ifm-alert-foreground-color: var(--ifm-color-primary-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-primary-dark); | |
} | |
.alert--secondary { | |
--ifm-alert-background-color: var(--ifm-color-secondary-contrast-background); | |
--ifm-alert-background-color-highlight: #ebedf026; | |
--ifm-alert-foreground-color: var(--ifm-color-secondary-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-secondary-dark); | |
} | |
.alert--success { | |
--ifm-alert-background-color: var(--ifm-color-success-contrast-background); | |
--ifm-alert-background-color-highlight: #00a40026; | |
--ifm-alert-foreground-color: var(--ifm-color-success-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-success-dark); | |
} | |
.alert--info { | |
--ifm-alert-background-color: var(--ifm-color-info-contrast-background); | |
--ifm-alert-background-color-highlight: #54c7ec26; | |
--ifm-alert-foreground-color: var(--ifm-color-info-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-info-dark); | |
} | |
.alert--warning { | |
--ifm-alert-background-color: var(--ifm-color-warning-contrast-background); | |
--ifm-alert-background-color-highlight: #ffba0026; | |
--ifm-alert-foreground-color: var(--ifm-color-warning-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-warning-dark); | |
} | |
.alert--danger { | |
--ifm-alert-background-color: var(--ifm-color-danger-contrast-background); | |
--ifm-alert-background-color-highlight: #fa383e26; | |
--ifm-alert-foreground-color: var(--ifm-color-danger-contrast-foreground); | |
--ifm-alert-border-color: var(--ifm-color-danger-dark); | |
} | |
.alert { | |
--ifm-code-background: var(--ifm-alert-background-color-highlight); | |
--ifm-link-color: var(--ifm-alert-foreground-color); | |
--ifm-link-hover-color: var(--ifm-alert-foreground-color); | |
--ifm-link-decoration: underline; | |
--ifm-tabs-color: var(--ifm-alert-foreground-color); | |
--ifm-tabs-color-active: var(--ifm-alert-foreground-color); | |
--ifm-tabs-color-active-border: var(--ifm-alert-border-color); | |
background-color: var(--ifm-alert-background-color); | |
border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color); | |
border-left-width: var(--ifm-alert-border-left-width); | |
border-radius: var(--ifm-alert-border-radius); | |
box-shadow: var(--ifm-alert-shadow); | |
padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal); | |
} | |
.alert__heading { | |
align-items: center; | |
display: flex; | |
font: 700 var(--ifm-h5-font-size) / var(--ifm-heading-line-height) | |
var(--ifm-heading-font-family); | |
margin-bottom: 0.5rem; | |
} | |
.alert__icon { | |
display: inline-flex; | |
margin-right: 0.4em; | |
} | |
.alert__icon svg { | |
fill: var(--ifm-alert-foreground-color); | |
stroke: var(--ifm-alert-foreground-color); | |
stroke-width: 0; | |
} | |
.alert .close { | |
margin: calc(var(--ifm-alert-padding-vertical) * -1) | |
calc(var(--ifm-alert-padding-horizontal) * -1) 0 0; | |
opacity: 0.75; | |
} | |
.alert .close:focus, | |
.alert .close:hover { | |
opacity: 1; | |
} | |
.alert a { | |
text-decoration-color: var(--ifm-alert-border-color); | |
} | |
.alert a:hover { | |
text-decoration-thickness: 2px; | |
} | |
.avatar { | |
column-gap: var(--ifm-avatar-intro-margin); | |
display: flex; | |
} | |
.avatar__photo { | |
border-radius: 50%; | |
display: block; | |
height: var(--ifm-avatar-photo-size); | |
width: var(--ifm-avatar-photo-size); | |
} | |
.card--full-height, | |
.navbar__logo img, | |
body, | |
html { | |
height: 100%; | |
} | |
.avatar__photo--sm { | |
--ifm-avatar-photo-size: 2rem; | |
} | |
.avatar__photo--lg { | |
--ifm-avatar-photo-size: 4rem; | |
} | |
.avatar__photo--xl { | |
--ifm-avatar-photo-size: 6rem; | |
} | |
.avatar__intro { | |
display: flex; | |
flex: 1 1; | |
flex-direction: column; | |
justify-content: center; | |
text-align: var(--ifm-avatar-intro-alignment); | |
} | |
.badge, | |
.breadcrumbs__item, | |
.breadcrumbs__link, | |
.button, | |
.dropdown > .navbar__link:after { | |
display: inline-block; | |
} | |
.avatar__name { | |
font: 700 var(--ifm-h4-font-size) / var(--ifm-heading-line-height) | |
var(--ifm-font-family-base); | |
} | |
.avatar__subtitle { | |
margin-top: 0.25rem; | |
} | |
.avatar--vertical { | |
--ifm-avatar-intro-alignment: center; | |
--ifm-avatar-intro-margin: 0.5rem; | |
align-items: center; | |
flex-direction: column; | |
} | |
.badge { | |
background-color: var(--ifm-badge-background-color); | |
border: var(--ifm-badge-border-width) solid var(--ifm-badge-border-color); | |
border-radius: var(--ifm-badge-border-radius); | |
color: var(--ifm-badge-color); | |
font-size: 75%; | |
font-weight: var(--ifm-font-weight-bold); | |
line-height: 1; | |
padding: var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal); | |
} | |
.badge--primary { | |
--ifm-badge-background-color: var(--ifm-color-primary); | |
} | |
.badge--secondary { | |
--ifm-badge-background-color: var(--ifm-color-secondary); | |
color: var(--ifm-color-black); | |
} | |
.breadcrumbs__link, | |
.button.button--secondary.button--outline:not(.button--active):not(:hover), | |
.tweetMeta_fAxr strong { | |
color: var(--ifm-font-color-base); | |
} | |
.badge--success { | |
--ifm-badge-background-color: var(--ifm-color-success); | |
} | |
.badge--info { | |
--ifm-badge-background-color: var(--ifm-color-info); | |
} | |
.badge--warning { | |
--ifm-badge-background-color: var(--ifm-color-warning); | |
} | |
.badge--danger { | |
--ifm-badge-background-color: var(--ifm-color-danger); | |
} | |
.breadcrumbs { | |
margin-bottom: 0; | |
padding-left: 0; | |
} | |
.breadcrumbs__item:not(:last-child):after { | |
background: var(--ifm-breadcrumb-separator) center; | |
content: " "; | |
display: inline-block; | |
filter: var(--ifm-breadcrumb-separator-filter); | |
height: calc( | |
var(--ifm-breadcrumb-separator-size) * var(--ifm-breadcrumb-size-multiplier) * | |
var(--ifm-breadcrumb-separator-size-multiplier) | |
); | |
margin: 0 var(--ifm-breadcrumb-spacing); | |
opacity: 0.5; | |
width: calc( | |
var(--ifm-breadcrumb-separator-size) * var(--ifm-breadcrumb-size-multiplier) * | |
var(--ifm-breadcrumb-separator-size-multiplier) | |
); | |
} | |
.breadcrumbs__item--active .breadcrumbs__link { | |
background: var(--ifm-breadcrumb-item-background-active); | |
color: var(--ifm-breadcrumb-color-active); | |
} | |
.breadcrumbs__link { | |
border-radius: var(--ifm-breadcrumb-border-radius); | |
font-size: calc(1rem * var(--ifm-breadcrumb-size-multiplier)); | |
padding: calc( | |
var(--ifm-breadcrumb-padding-vertical) * | |
var(--ifm-breadcrumb-size-multiplier) | |
) | |
calc( | |
var(--ifm-breadcrumb-padding-horizontal) * | |
var(--ifm-breadcrumb-size-multiplier) | |
); | |
transition-duration: var(--ifm-transition-fast); | |
transition-property: background, color; | |
} | |
.breadcrumbs__link:link:hover, | |
.breadcrumbs__link:visited:hover, | |
area[href].breadcrumbs__link:hover { | |
background: var(--ifm-breadcrumb-item-background-active); | |
text-decoration: none; | |
} | |
.breadcrumbs__link:any-link:hover { | |
background: var(--ifm-breadcrumb-item-background-active); | |
text-decoration: none; | |
} | |
.breadcrumbs--sm { | |
--ifm-breadcrumb-size-multiplier: 0.8; | |
} | |
.breadcrumbs--lg { | |
--ifm-breadcrumb-size-multiplier: 1.2; | |
} | |
.button { | |
background-color: var(--ifm-button-background-color); | |
border: var(--ifm-button-border-width) solid var(--ifm-button-border-color); | |
border-radius: var(--ifm-button-border-radius); | |
cursor: pointer; | |
font-size: calc(0.875rem * var(--ifm-button-size-multiplier)); | |
font-weight: var(--ifm-button-font-weight); | |
line-height: 1.5; | |
padding: calc( | |
var(--ifm-button-padding-vertical) * var(--ifm-button-size-multiplier) | |
) | |
calc( | |
var(--ifm-button-padding-horizontal) * var(--ifm-button-size-multiplier) | |
); | |
text-align: center; | |
transition-duration: var(--ifm-button-transition-duration); | |
transition-property: color, background, border-color; | |
-webkit-user-select: none; | |
user-select: none; | |
} | |
.button, | |
.button:hover { | |
color: var(--ifm-button-color); | |
} | |
.button--outline { | |
--ifm-button-color: var(--ifm-button-border-color); | |
} | |
.button--outline:hover { | |
--ifm-button-background-color: var(--ifm-button-border-color); | |
} | |
.button--link { | |
--ifm-button-border-color: #0000; | |
color: var(--ifm-link-color); | |
text-decoration: var(--ifm-link-decoration); | |
} | |
.button--link.button--active, | |
.button--link:active, | |
.button--link:hover { | |
color: var(--ifm-link-hover-color); | |
text-decoration: var(--ifm-link-hover-decoration); | |
} | |
.button.disabled, | |
.button:disabled, | |
.button[disabled] { | |
opacity: 0.65; | |
pointer-events: none; | |
} | |
.button--sm { | |
--ifm-button-size-multiplier: 0.8; | |
} | |
.button--lg { | |
--ifm-button-size-multiplier: 1.35; | |
} | |
.button--block { | |
display: block; | |
width: 100%; | |
} | |
.button.button--secondary { | |
color: var(--ifm-color-gray-900); | |
} | |
:where(.button--primary) { | |
--ifm-button-background-color: var(--ifm-color-primary); | |
--ifm-button-border-color: var(--ifm-color-primary); | |
} | |
:where(.button--primary):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-primary-dark); | |
--ifm-button-border-color: var(--ifm-color-primary-dark); | |
} | |
.button--primary.button--active, | |
.button--primary:active { | |
--ifm-button-background-color: var(--ifm-color-primary-darker); | |
--ifm-button-border-color: var(--ifm-color-primary-darker); | |
} | |
:where(.button--secondary) { | |
--ifm-button-background-color: var(--ifm-color-secondary); | |
--ifm-button-border-color: var(--ifm-color-secondary); | |
} | |
:where(.button--secondary):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-secondary-dark); | |
--ifm-button-border-color: var(--ifm-color-secondary-dark); | |
} | |
.button--secondary.button--active, | |
.button--secondary:active { | |
--ifm-button-background-color: var(--ifm-color-secondary-darker); | |
--ifm-button-border-color: var(--ifm-color-secondary-darker); | |
} | |
:where(.button--success) { | |
--ifm-button-background-color: var(--ifm-color-success); | |
--ifm-button-border-color: var(--ifm-color-success); | |
} | |
:where(.button--success):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-success-dark); | |
--ifm-button-border-color: var(--ifm-color-success-dark); | |
} | |
.button--success.button--active, | |
.button--success:active { | |
--ifm-button-background-color: var(--ifm-color-success-darker); | |
--ifm-button-border-color: var(--ifm-color-success-darker); | |
} | |
:where(.button--info) { | |
--ifm-button-background-color: var(--ifm-color-info); | |
--ifm-button-border-color: var(--ifm-color-info); | |
} | |
:where(.button--info):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-info-dark); | |
--ifm-button-border-color: var(--ifm-color-info-dark); | |
} | |
.button--info.button--active, | |
.button--info:active { | |
--ifm-button-background-color: var(--ifm-color-info-darker); | |
--ifm-button-border-color: var(--ifm-color-info-darker); | |
} | |
:where(.button--warning) { | |
--ifm-button-background-color: var(--ifm-color-warning); | |
--ifm-button-border-color: var(--ifm-color-warning); | |
} | |
:where(.button--warning):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-warning-dark); | |
--ifm-button-border-color: var(--ifm-color-warning-dark); | |
} | |
.button--warning.button--active, | |
.button--warning:active { | |
--ifm-button-background-color: var(--ifm-color-warning-darker); | |
--ifm-button-border-color: var(--ifm-color-warning-darker); | |
} | |
:where(.button--danger) { | |
--ifm-button-background-color: var(--ifm-color-danger); | |
--ifm-button-border-color: var(--ifm-color-danger); | |
} | |
:where(.button--danger):not(.button--outline):hover { | |
--ifm-button-background-color: var(--ifm-color-danger-dark); | |
--ifm-button-border-color: var(--ifm-color-danger-dark); | |
} | |
.button--danger.button--active, | |
.button--danger:active { | |
--ifm-button-background-color: var(--ifm-color-danger-darker); | |
--ifm-button-border-color: var(--ifm-color-danger-darker); | |
} | |
.button-group { | |
display: inline-flex; | |
gap: var(--ifm-button-group-spacing); | |
} | |
.button-group > .button:not(:first-child) { | |
border-bottom-left-radius: 0; | |
border-top-left-radius: 0; | |
} | |
.button-group > .button:not(:last-child) { | |
border-bottom-right-radius: 0; | |
border-top-right-radius: 0; | |
} | |
.button-group--block { | |
display: flex; | |
justify-content: stretch; | |
} | |
.button-group--block > .button { | |
flex-grow: 1; | |
} | |
.card { | |
background-color: var(--ifm-card-background-color); | |
border-radius: var(--ifm-card-border-radius); | |
box-shadow: var(--ifm-global-shadow-lw); | |
display: flex; | |
flex-direction: column; | |
} | |
.card__image { | |
padding-top: var(--ifm-card-vertical-spacing); | |
} | |
.card__image:first-child { | |
padding-top: 0; | |
} | |
.card__body, | |
.card__footer, | |
.card__header { | |
padding: var(--ifm-card-vertical-spacing) var(--ifm-card-horizontal-spacing); | |
} | |
.card__body:not(:last-child), | |
.card__footer:not(:last-child), | |
.card__header:not(:last-child) { | |
padding-bottom: 0; | |
} | |
.card__body > :last-child, | |
.card__footer > :last-child, | |
.card__header > :last-child { | |
margin-bottom: 0; | |
} | |
.card__footer { | |
margin-top: auto; | |
} | |
.table-of-contents { | |
font-size: 0.8rem; | |
margin-bottom: 0; | |
padding: var(--ifm-toc-padding-vertical) 0; | |
} | |
.table-of-contents, | |
.table-of-contents ul { | |
list-style: none; | |
padding-left: var(--ifm-toc-padding-horizontal); | |
} | |
.table-of-contents li { | |
margin: var(--ifm-toc-padding-vertical) var(--ifm-toc-padding-horizontal); | |
} | |
.table-of-contents__left-border { | |
border-left: 1px solid var(--ifm-toc-border-color); | |
} | |
.table-of-contents__link { | |
color: var(--ifm-toc-link-color); | |
display: block; | |
} | |
.table-of-contents__link--active, | |
.table-of-contents__link--active code, | |
.table-of-contents__link:hover, | |
.table-of-contents__link:hover code { | |
color: var(--ifm-color-primary); | |
text-decoration: none; | |
} | |
.close { | |
color: var(--ifm-color-black); | |
font-size: 1.5rem; | |
font-weight: var(--ifm-font-weight-bold); | |
line-height: 1; | |
opacity: 0.5; | |
padding: 1rem; | |
transition: opacity var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.close:hover { | |
opacity: 0.7; | |
} | |
.close:focus, | |
.theme-code-block-highlighted-line .codeLineNumber_dS_J:before { | |
opacity: 0.8; | |
} | |
.dropdown { | |
display: inline-flex; | |
font-weight: var(--ifm-dropdown-font-weight); | |
position: relative; | |
vertical-align: top; | |
} | |
.dropdown--hoverable:hover .dropdown__menu, | |
.dropdown--show .dropdown__menu { | |
opacity: 1; | |
pointer-events: all; | |
transform: translateY(-1px); | |
visibility: visible; | |
} | |
.dropdown--right .dropdown__menu { | |
left: inherit; | |
right: 0; | |
} | |
.dropdown--nocaret .navbar__link:after { | |
content: none !important; | |
} | |
.dropdown__menu { | |
background-color: var(--ifm-dropdown-background-color); | |
border-radius: var(--ifm-global-radius); | |
box-shadow: var(--ifm-global-shadow-md); | |
left: 0; | |
list-style: none; | |
max-height: 80vh; | |
min-width: 10rem; | |
opacity: 0; | |
overflow-y: auto; | |
padding: 0.5rem; | |
pointer-events: none; | |
position: absolute; | |
top: calc(100% - var(--ifm-navbar-item-padding-vertical) + 0.3rem); | |
transform: translateY(-0.625rem); | |
transition-duration: var(--ifm-transition-fast); | |
transition-property: opacity, transform, visibility; | |
transition-timing-function: var(--ifm-transition-timing-default); | |
visibility: hidden; | |
z-index: var(--ifm-z-index-dropdown); | |
} | |
.menu__caret, | |
.menu__link, | |
.menu__list-item-collapsible { | |
border-radius: 0.25rem; | |
transition: background var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.dropdown__link { | |
border-radius: 0.25rem; | |
color: var(--ifm-dropdown-link-color); | |
display: block; | |
font-size: 0.875rem; | |
margin-top: 0.2rem; | |
padding: 0.25rem 0.5rem; | |
} | |
.dropdown__link--active, | |
.dropdown__link:hover { | |
background-color: var(--ifm-dropdown-hover-background-color); | |
color: var(--ifm-dropdown-link-color); | |
text-decoration: none; | |
} | |
.dropdown__link--active, | |
.dropdown__link--active:hover { | |
--ifm-dropdown-link-color: var(--ifm-link-color); | |
} | |
.dropdown > .navbar__link:after { | |
border-color: currentcolor #0000; | |
border-style: solid; | |
border-width: 0.4em 0.4em 0; | |
content: ""; | |
margin-left: 0.3em; | |
position: relative; | |
top: 2px; | |
transform: translateY(-50%); | |
} | |
.footer { | |
background-color: var(--ifm-footer-background-color); | |
color: var(--ifm-footer-color); | |
padding: var(--ifm-footer-padding-vertical) | |
var(--ifm-footer-padding-horizontal); | |
} | |
.footer--dark { | |
--ifm-footer-background-color: #303846; | |
--ifm-footer-color: var(--ifm-footer-link-color); | |
--ifm-footer-link-color: var(--ifm-color-secondary); | |
--ifm-footer-title-color: var(--ifm-color-white); | |
--ifm-footer-background-color: #2b3137; | |
} | |
.changelogItemContainer_jeDt, | |
.footer__links { | |
margin-bottom: 1rem; | |
} | |
.footer__link-item { | |
color: var(--ifm-footer-link-color); | |
line-height: 2; | |
} | |
.footer__link-item:hover { | |
color: var(--ifm-footer-link-hover-color); | |
} | |
.footer__link-separator { | |
margin: 0 var(--ifm-footer-link-horizontal-spacing); | |
} | |
.footer__logo { | |
margin-top: 1rem; | |
max-width: var(--ifm-footer-logo-max-width); | |
} | |
.footer__title { | |
color: var(--ifm-footer-title-color); | |
font: 700 var(--ifm-h4-font-size) / var(--ifm-heading-line-height) | |
var(--ifm-font-family-base); | |
margin-bottom: var(--ifm-heading-margin-bottom); | |
} | |
.menu, | |
.navbar__link { | |
font-weight: var(--ifm-font-weight-semibold); | |
} | |
.docItemContainer_RhpI article > :first-child, | |
.docItemContainer_RhpI header + *, | |
.footer__item, | |
.tweetQuote_h8Rz .avatar__subtitle { | |
margin-top: 0; | |
} | |
.admonitionContent_Knsx > :last-child, | |
.browserWindowBody_Idgs > :last-child, | |
.cardContainer_Uewx :last-child, | |
.collapsibleContent_EoA1 p:last-child, | |
.details_Nokh > summary > p:last-child, | |
.footer__items, | |
.headingText_iR0x > h2, | |
.tabItem_pnkT > :last-child { | |
margin-bottom: 0; | |
} | |
.codeBlockStandalone_i_cY, | |
[type="checkbox"] { | |
padding: 0; | |
} | |
.hero { | |
align-items: center; | |
background-color: var(--ifm-hero-background-color); | |
color: var(--ifm-hero-text-color); | |
display: flex; | |
padding: 4rem 2rem; | |
} | |
.hero--primary { | |
--ifm-hero-background-color: var(--ifm-color-primary); | |
--ifm-hero-text-color: var(--ifm-font-color-base-inverse); | |
} | |
.hero--dark { | |
--ifm-hero-background-color: #303846; | |
--ifm-hero-text-color: var(--ifm-color-white); | |
} | |
.hero__title, | |
.title_UBNu { | |
font-size: 3rem; | |
} | |
.hero__subtitle { | |
font-size: 1.5rem; | |
} | |
.menu__list { | |
list-style: none; | |
margin: 0; | |
padding-left: 0; | |
} | |
.menu__caret, | |
.menu__link { | |
padding: var(--ifm-menu-link-padding-vertical) | |
var(--ifm-menu-link-padding-horizontal); | |
} | |
.menu__list .menu__list { | |
flex: 0 0 100%; | |
margin-top: 0.25rem; | |
padding-left: var(--ifm-menu-link-padding-horizontal); | |
} | |
.menu__list-item:not(:first-child) { | |
margin-top: 0.25rem; | |
} | |
.menu__list-item--collapsed .menu__list { | |
height: 0; | |
overflow: hidden; | |
} | |
.details_Nokh[data-collapsed="false"].isBrowser_QrB5 > summary:before, | |
.details_Nokh[open]:not(.isBrowser_QrB5) > summary:before, | |
.menu__list-item--collapsed .menu__caret:before, | |
.menu__list-item--collapsed .menu__link--sublist:after { | |
transform: rotate(90deg); | |
} | |
.menu__list-item-collapsible { | |
display: flex; | |
flex-wrap: wrap; | |
position: relative; | |
} | |
.menu__caret:hover, | |
.menu__link:hover, | |
.menu__list-item-collapsible--active, | |
.menu__list-item-collapsible:hover { | |
background: var(--ifm-menu-color-background-hover); | |
} | |
.menu__list-item-collapsible .menu__link--active, | |
.menu__list-item-collapsible .menu__link:hover { | |
background: none !important; | |
} | |
.menu__caret, | |
.menu__link { | |
align-items: center; | |
display: flex; | |
} | |
.navbar-sidebar, | |
.navbar-sidebar__backdrop { | |
bottom: 0; | |
opacity: 0; | |
transition-duration: var(--ifm-transition-fast); | |
transition-timing-function: ease-in-out; | |
top: 0; | |
visibility: hidden; | |
left: 0; | |
} | |
.menu__link { | |
color: var(--ifm-menu-color); | |
flex: 1; | |
line-height: 1.25; | |
} | |
.menu__link:hover { | |
color: var(--ifm-menu-color); | |
text-decoration: none; | |
} | |
.menu__caret:before, | |
.menu__link--sublist-caret:after { | |
height: 1.25rem; | |
transform: rotate(180deg); | |
transition: transform var(--ifm-transition-fast) linear; | |
width: 1.25rem; | |
content: ""; | |
filter: var(--ifm-menu-link-sublist-icon-filter); | |
} | |
.menu__link--sublist-caret:after { | |
background: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem; | |
margin-left: auto; | |
min-width: 1.25rem; | |
} | |
.menu__link--active, | |
.menu__link--active:hover { | |
color: var(--ifm-menu-color-active); | |
} | |
.navbar__brand, | |
.navbar__link { | |
color: var(--ifm-navbar-link-color); | |
} | |
.menu__link--active:not(.menu__link--sublist) { | |
background-color: var(--ifm-menu-color-background-active); | |
} | |
.menu__caret:before { | |
background: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem; | |
} | |
.navbar--dark, | |
html[data-theme="dark"] { | |
--ifm-menu-link-sublist-icon-filter: invert(100%) sepia(94%) saturate(17%) | |
hue-rotate(223deg) brightness(104%) contrast(98%); | |
} | |
.navbar { | |
background-color: var(--ifm-navbar-background-color); | |
box-shadow: var(--ifm-navbar-shadow); | |
height: var(--ifm-navbar-height); | |
padding: var(--ifm-navbar-padding-vertical) | |
var(--ifm-navbar-padding-horizontal); | |
} | |
.navbar, | |
.navbar > .container, | |
.navbar > .container-fluid { | |
display: flex; | |
} | |
.navbar--fixed-top { | |
position: sticky; | |
top: 0; | |
z-index: var(--ifm-z-index-fixed); | |
} | |
.navbar__inner { | |
display: flex; | |
flex-wrap: wrap; | |
justify-content: space-between; | |
width: 100%; | |
} | |
.navbar__brand { | |
align-items: center; | |
display: flex; | |
margin-right: 1rem; | |
min-width: 0; | |
} | |
.navbar__brand:hover { | |
color: var(--ifm-navbar-link-hover-color); | |
text-decoration: none; | |
} | |
.announcementBarContent_PjqA, | |
.navbar__title { | |
flex: 1 1 auto; | |
} | |
.navbar__toggle { | |
display: none; | |
margin-right: 0.5rem; | |
} | |
.navbar__logo { | |
flex: 0 0 auto; | |
height: 2rem; | |
margin-right: 0.5rem; | |
} | |
.navbar__items { | |
align-items: center; | |
display: flex; | |
flex: 1; | |
min-width: 0; | |
} | |
.navbar__items--center { | |
flex: 0 0 auto; | |
} | |
.navbar__items--center .navbar__brand, | |
.popup_EH26 p { | |
margin: 0; | |
} | |
.navbar__items--center + .navbar__items--right { | |
flex: 1; | |
} | |
.navbar__items--right { | |
flex: 0 0 auto; | |
justify-content: flex-end; | |
} | |
.navbar__items--right > :last-child { | |
padding-right: 0; | |
} | |
.navbar__item { | |
display: inline-block; | |
padding: var(--ifm-navbar-item-padding-vertical) | |
var(--ifm-navbar-item-padding-horizontal); | |
} | |
#nprogress, | |
.navbar__item.dropdown .navbar__link:not([href]) { | |
pointer-events: none; | |
} | |
.navbar__link--active, | |
.navbar__link:hover { | |
color: var(--ifm-navbar-link-hover-color); | |
text-decoration: none; | |
} | |
.navbar--dark, | |
.navbar--primary { | |
--ifm-menu-color: var(--ifm-color-gray-300); | |
--ifm-navbar-link-color: var(--ifm-color-gray-100); | |
--ifm-navbar-search-input-background-color: #ffffff1a; | |
--ifm-navbar-search-input-placeholder-color: #ffffff80; | |
color: var(--ifm-color-white); | |
} | |
.navbar--dark { | |
--ifm-navbar-background-color: #242526; | |
--ifm-menu-color-background-active: #ffffff0d; | |
--ifm-navbar-search-input-color: var(--ifm-color-white); | |
} | |
.navbar--primary { | |
--ifm-navbar-background-color: var(--ifm-color-primary); | |
--ifm-navbar-link-hover-color: var(--ifm-color-white); | |
--ifm-menu-color-active: var(--ifm-color-white); | |
--ifm-navbar-search-input-color: var(--ifm-color-emphasis-500); | |
} | |
.navbar__search-input { | |
appearance: none; | |
background: var(--ifm-navbar-search-input-background-color) | |
var(--ifm-navbar-search-input-icon) no-repeat 0.75rem center/1rem 1rem; | |
border: none; | |
border-radius: 2rem; | |
color: var(--ifm-navbar-search-input-color); | |
cursor: text; | |
display: inline-block; | |
font-size: 1rem; | |
height: 2rem; | |
padding: 0 0.5rem 0 2.25rem; | |
width: 12.5rem; | |
} | |
.navbar__search-input::placeholder { | |
color: var(--ifm-navbar-search-input-placeholder-color); | |
} | |
.navbar-sidebar { | |
background-color: var(--ifm-navbar-background-color); | |
box-shadow: var(--ifm-global-shadow-md); | |
position: fixed; | |
transform: translate3d(-100%, 0, 0); | |
transition-property: opacity, visibility, transform; | |
width: var(--ifm-navbar-sidebar-width); | |
} | |
.navbar-sidebar--show .navbar-sidebar, | |
.navbar-sidebar__items { | |
transform: translateZ(0); | |
} | |
.navbar-sidebar--show .navbar-sidebar, | |
.navbar-sidebar--show .navbar-sidebar__backdrop { | |
opacity: 1; | |
visibility: visible; | |
} | |
.navbar-sidebar__backdrop { | |
background-color: #0009; | |
position: fixed; | |
right: 0; | |
transition-property: opacity, visibility; | |
} | |
.navbar-sidebar__brand { | |
align-items: center; | |
box-shadow: var(--ifm-navbar-shadow); | |
display: flex; | |
flex: 1; | |
height: var(--ifm-navbar-height); | |
padding: var(--ifm-navbar-padding-vertical) | |
var(--ifm-navbar-padding-horizontal); | |
} | |
.navbar-sidebar__items { | |
display: flex; | |
height: calc(100% - var(--ifm-navbar-height)); | |
transition: transform var(--ifm-transition-fast) ease-in-out; | |
} | |
.navbar-sidebar__items--show-secondary { | |
transform: translate3d(calc((var(--ifm-navbar-sidebar-width)) * -1), 0, 0); | |
} | |
.navbar-sidebar__item { | |
flex-shrink: 0; | |
padding: 0.5rem; | |
width: calc(var(--ifm-navbar-sidebar-width)); | |
} | |
.navbar-sidebar__back { | |
background: var(--ifm-menu-color-background-active); | |
font-size: 15px; | |
font-weight: var(--ifm-button-font-weight); | |
margin: 0 0 0.2rem -0.5rem; | |
padding: 0.6rem 1.5rem; | |
position: relative; | |
text-align: left; | |
top: -0.5rem; | |
width: calc(100% + 1rem); | |
} | |
.navbar-sidebar__close { | |
display: flex; | |
margin-left: auto; | |
} | |
.pagination { | |
column-gap: var(--ifm-pagination-page-spacing); | |
display: flex; | |
font-size: var(--ifm-pagination-font-size); | |
padding-left: 0; | |
} | |
.pagination--sm { | |
--ifm-pagination-font-size: 0.8rem; | |
--ifm-pagination-padding-horizontal: 0.8rem; | |
--ifm-pagination-padding-vertical: 0.2rem; | |
} | |
.pagination--lg { | |
--ifm-pagination-font-size: 1.2rem; | |
--ifm-pagination-padding-horizontal: 1.2rem; | |
--ifm-pagination-padding-vertical: 0.3rem; | |
} | |
.pagination__item { | |
display: inline-flex; | |
} | |
.pagination__item > span { | |
padding: var(--ifm-pagination-padding-vertical); | |
} | |
.pagination__item--active .pagination__link { | |
color: var(--ifm-pagination-color-active); | |
} | |
.pagination__item--active .pagination__link, | |
.pagination__item:not(.pagination__item--active):hover .pagination__link { | |
background: var(--ifm-pagination-item-active-background); | |
} | |
.pagination__item--disabled, | |
.pagination__item[disabled] { | |
opacity: 0.25; | |
pointer-events: none; | |
} | |
.pagination__link { | |
border-radius: var(--ifm-pagination-border-radius); | |
color: var(--ifm-font-color-base); | |
display: inline-block; | |
padding: var(--ifm-pagination-padding-vertical) | |
var(--ifm-pagination-padding-horizontal); | |
transition: background var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.pagination__link:hover { | |
text-decoration: none; | |
} | |
.pagination-nav { | |
display: grid; | |
grid-gap: var(--ifm-spacing-horizontal); | |
gap: var(--ifm-spacing-horizontal); | |
grid-template-columns: repeat(2, 1fr); | |
} | |
.pagination-nav__link { | |
border: 1px solid var(--ifm-color-emphasis-300); | |
border-radius: var(--ifm-pagination-nav-border-radius); | |
display: block; | |
height: 100%; | |
line-height: var(--ifm-heading-line-height); | |
padding: var(--ifm-global-spacing); | |
transition: border-color var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.pagination-nav__link:hover { | |
border-color: var(--ifm-pagination-nav-color-hover); | |
text-decoration: none; | |
} | |
.pagination-nav__link--next { | |
grid-column: 2/3; | |
text-align: right; | |
} | |
.pagination-nav__label { | |
font-size: var(--ifm-h4-font-size); | |
font-weight: var(--ifm-heading-font-weight); | |
word-break: break-word; | |
} | |
.pagination-nav__link--prev .pagination-nav__label:before { | |
content: "« "; | |
} | |
.pagination-nav__link--next .pagination-nav__label:after { | |
content: " »"; | |
} | |
.pagination-nav__sublabel { | |
color: var(--ifm-color-content-secondary); | |
font-size: var(--ifm-h5-font-size); | |
font-weight: var(--ifm-font-weight-semibold); | |
margin-bottom: 0.25rem; | |
} | |
.pills__item, | |
.tabs { | |
font-weight: var(--ifm-font-weight-bold); | |
} | |
.pills { | |
display: flex; | |
gap: var(--ifm-pills-spacing); | |
padding-left: 0; | |
} | |
.pills__item { | |
border-radius: 0.5rem; | |
cursor: pointer; | |
display: inline-block; | |
padding: 0.25rem 1rem; | |
transition: background var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.header-github-link:before, | |
.tabs__item { | |
transition: background-color var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.pills__item--active { | |
color: var(--ifm-pills-color-active); | |
} | |
.pills__item--active, | |
.pills__item:not(.pills__item--active):hover { | |
background: var(--ifm-pills-color-background-active); | |
} | |
.pills--block { | |
justify-content: stretch; | |
} | |
.pills--block .pills__item { | |
flex-grow: 1; | |
text-align: center; | |
} | |
.tabs { | |
color: var(--ifm-tabs-color); | |
display: flex; | |
margin-bottom: 0; | |
overflow-x: auto; | |
padding-left: 0; | |
} | |
.tabs__item { | |
border-bottom: 3px solid #0000; | |
border-radius: var(--ifm-global-radius); | |
cursor: pointer; | |
display: inline-flex; | |
padding: var(--ifm-tabs-padding-vertical) var(--ifm-tabs-padding-horizontal); | |
} | |
.tabs__item--active { | |
border-bottom-color: var(--ifm-tabs-color-active-border); | |
border-bottom-left-radius: 0; | |
border-bottom-right-radius: 0; | |
color: var(--ifm-tabs-color-active); | |
} | |
.tabs__item:hover { | |
background-color: var(--ifm-hover-overlay); | |
} | |
.tabs--block { | |
justify-content: stretch; | |
} | |
.tabs--block .tabs__item { | |
flex-grow: 1; | |
justify-content: center; | |
} | |
html[data-theme="dark"] { | |
--ifm-color-scheme: dark; | |
--ifm-color-emphasis-0: var(--ifm-color-gray-1000); | |
--ifm-color-emphasis-100: var(--ifm-color-gray-900); | |
--ifm-color-emphasis-200: var(--ifm-color-gray-800); | |
--ifm-color-emphasis-300: var(--ifm-color-gray-700); | |
--ifm-color-emphasis-400: var(--ifm-color-gray-600); | |
--ifm-color-emphasis-600: var(--ifm-color-gray-400); | |
--ifm-color-emphasis-700: var(--ifm-color-gray-300); | |
--ifm-color-emphasis-800: var(--ifm-color-gray-200); | |
--ifm-color-emphasis-900: var(--ifm-color-gray-100); | |
--ifm-color-emphasis-1000: var(--ifm-color-gray-0); | |
--ifm-background-color: #1b1b1d; | |
--ifm-background-surface-color: #242526; | |
--ifm-hover-overlay: #ffffff0d; | |
--ifm-color-content: #e3e3e3; | |
--ifm-color-content-secondary: #fff; | |
--ifm-breadcrumb-separator-filter: invert(64%) sepia(11%) saturate(0%) | |
hue-rotate(149deg) brightness(99%) contrast(95%); | |
--ifm-code-background: #ffffff1a; | |
--ifm-scrollbar-track-background-color: #444; | |
--ifm-scrollbar-thumb-background-color: #686868; | |
--ifm-scrollbar-thumb-hover-background-color: #7a7a7a; | |
--ifm-table-stripe-background: #ffffff12; | |
--ifm-toc-border-color: var(--ifm-color-emphasis-200); | |
--ifm-color-primary-contrast-background: #102445; | |
--ifm-color-primary-contrast-foreground: #ebf2fc; | |
--ifm-color-secondary-contrast-background: #474748; | |
--ifm-color-secondary-contrast-foreground: #fdfdfe; | |
--ifm-color-success-contrast-background: #003100; | |
--ifm-color-success-contrast-foreground: #e6f6e6; | |
--ifm-color-info-contrast-background: #193c47; | |
--ifm-color-info-contrast-foreground: #eef9fd; | |
--ifm-color-warning-contrast-background: #4d3800; | |
--ifm-color-warning-contrast-foreground: #fff8e6; | |
--ifm-color-danger-contrast-background: #4b1113; | |
--ifm-color-danger-contrast-foreground: #ffebec; | |
--site-color-feedback-background: #2a2929; | |
--docusaurus-highlighted-code-line-bg: #42424259; | |
--docsearch-text-color: #f5f6f7; | |
--docsearch-container-background: #090a11cc; | |
--docsearch-modal-background: #15172a; | |
--docsearch-modal-shadow: inset 1px 1px 0 0 #2c2e40, 0 3px 8px 0 #000309; | |
--docsearch-searchbox-background: #090a11; | |
--docsearch-searchbox-focus-background: #000; | |
--docsearch-hit-color: #bec3c9; | |
--docsearch-hit-shadow: none; | |
--docsearch-hit-background: #090a11; | |
--docsearch-key-gradient: linear-gradient(-26.5deg, #565872, #31355b); | |
--docsearch-key-shadow: inset 0 -2px 0 0 #282d55, inset 0 0 1px 1px #51577d, | |
0 2px 2px 0 #0304094d; | |
--docsearch-footer-background: #1e2136; | |
--docsearch-footer-shadow: inset 0 1px 0 0 #494c6a80, 0 -4px 8px 0 #0003; | |
--docsearch-logo-color: #fff; | |
--docsearch-muted-color: #7f8497; | |
} | |
:root { | |
--docusaurus-progress-bar-color: var(--ifm-color-primary); | |
--site-primary-hue-saturation: 167 68%; | |
--site-primary-hue-saturation-light: 167 56%; | |
--site-color-feedback-background: #f0f8ff; | |
--docusaurus-highlighted-code-line-bg: #0000001a; | |
--ifm-breadcrumb-color-active: var(--ifm-color-primary-darker) !important; | |
--ifm-menu-color-active: var(--ifm-color-primary-darker) !important; | |
--docsearch-primary-color: #5468ff; | |
--docsearch-text-color: #1c1e21; | |
--docsearch-spacing: 12px; | |
--docsearch-icon-stroke-width: 1.4; | |
--docsearch-highlight-color: var(--docsearch-primary-color); | |
--docsearch-muted-color: #969faf; | |
--docsearch-container-background: #656c85cc; | |
--docsearch-logo-color: #5468ff; | |
--docsearch-modal-width: 560px; | |
--docsearch-modal-height: 600px; | |
--docsearch-modal-background: #f5f6f7; | |
--docsearch-modal-shadow: inset 1px 1px 0 0 #ffffff80, 0 3px 8px 0 #555a64; | |
--docsearch-searchbox-height: 56px; | |
--docsearch-searchbox-background: #ebedf0; | |
--docsearch-searchbox-focus-background: #fff; | |
--docsearch-searchbox-shadow: inset 0 0 0 2px var(--docsearch-primary-color); | |
--docsearch-hit-height: 56px; | |
--docsearch-hit-color: #444950; | |
--docsearch-hit-active-color: #fff; | |
--docsearch-hit-background: #fff; | |
--docsearch-hit-shadow: 0 1px 3px 0 #d4d9e1; | |
--docsearch-key-gradient: linear-gradient(-225deg, #d5dbe4, #f8f8f8); | |
--docsearch-key-shadow: inset 0 -2px 0 0 #cdcde6, inset 0 0 1px 1px #fff, | |
0 1px 2px 1px #1e235a66; | |
--docsearch-footer-height: 44px; | |
--docsearch-footer-background: #fff; | |
--docsearch-footer-shadow: 0 -1px 0 0 #e0e3e8, 0 -3px 6px 0 #45629b1f; | |
--docsearch-primary-color: var(--ifm-color-primary); | |
--docsearch-text-color: var(--ifm-font-color-base); | |
--docusaurus-announcement-bar-height: auto; | |
--docusaurus-collapse-button-bg: #0000; | |
--docusaurus-collapse-button-bg-hover: #0000001a; | |
--doc-sidebar-width: 300px; | |
--doc-sidebar-hidden-width: 30px; | |
--docusaurus-blog-social-icon-size: 1rem; | |
--docusaurus-tag-list-border: var(--ifm-color-emphasis-300); | |
} | |
#nprogress .bar { | |
background: var(--docusaurus-progress-bar-color); | |
height: 2px; | |
left: 0; | |
position: fixed; | |
top: 0; | |
width: 100%; | |
z-index: 1031; | |
} | |
#nprogress .peg { | |
box-shadow: | |
0 0 10px var(--docusaurus-progress-bar-color), | |
0 0 5px var(--docusaurus-progress-bar-color); | |
height: 100%; | |
opacity: 1; | |
position: absolute; | |
right: 0; | |
transform: rotate(3deg) translateY(-4px); | |
width: 100px; | |
} | |
.carousel_raHC, | |
.siteSlide_AwQk, | |
[data-rmiz] { | |
position: relative; | |
} | |
[data-rmiz-ghost] { | |
pointer-events: none; | |
position: absolute; | |
} | |
[data-rmiz-btn-unzoom], | |
[data-rmiz-btn-zoom] { | |
appearance: none; | |
background-color: #000000b3; | |
border: none; | |
border-radius: 50%; | |
box-shadow: 0 0 1px #ffffff80; | |
color: #fff; | |
height: 40px; | |
margin: 0; | |
outline-offset: 2px; | |
padding: 9px; | |
touch-action: manipulation; | |
width: 40px; | |
} | |
[data-rmiz-btn-zoom]:not(:focus):not(:active) { | |
position: absolute; | |
clip: rect(0 0 0 0); | |
clip-path: inset(50%); | |
height: 1px; | |
overflow: hidden; | |
pointer-events: none; | |
white-space: nowrap; | |
width: 1px; | |
} | |
[data-rmiz-btn-zoom] { | |
cursor: zoom-in; | |
inset: 10px 10px auto auto; | |
position: absolute; | |
} | |
[data-rmiz-btn-unzoom] { | |
cursor: zoom-out; | |
inset: 20px 20px auto auto; | |
position: absolute; | |
z-index: 1; | |
} | |
[data-rmiz-content="found"] [data-zoom], | |
[data-rmiz-content="found"] [role="img"], | |
[data-rmiz-content="found"] img, | |
[data-rmiz-content="found"] svg { | |
cursor: zoom-in; | |
} | |
[data-rmiz-modal]::backdrop { | |
display: none; | |
} | |
[data-rmiz-modal][open] { | |
background: #0000; | |
border: 0; | |
height: 100vh; | |
height: 100svh; | |
margin: 0; | |
max-height: none; | |
max-width: none; | |
overflow: hidden; | |
padding: 0; | |
position: fixed; | |
width: 100vw; | |
width: 100svw; | |
} | |
[data-rmiz-modal-overlay] { | |
inset: 0; | |
position: absolute; | |
transition: background-color 0.3s; | |
} | |
[data-rmiz-modal-overlay="hidden"] { | |
background-color: #fff0; | |
} | |
[data-rmiz-modal-overlay="visible"] { | |
background-color: #fff; | |
} | |
[data-rmiz-modal-content] { | |
height: 100%; | |
position: relative; | |
width: 100%; | |
} | |
[data-rmiz-modal-img] { | |
cursor: zoom-out; | |
image-rendering: high-quality; | |
position: absolute; | |
transform-origin: top left; | |
transition: transform 0.3s; | |
} | |
[data-theme="light"] { | |
--ifm-color-primary: hsl(var(--site-primary-hue-saturation) 30%); | |
--ifm-color-primary-dark: hsl(var(--site-primary-hue-saturation) 26%); | |
--ifm-color-primary-darker: hsl(var(--site-primary-hue-saturation) 23%); | |
--ifm-color-primary-darkest: hsl(var(--site-primary-hue-saturation) 17%); | |
--ifm-color-primary-light: hsl(var(--site-primary-hue-saturation-light) 39%); | |
--ifm-color-primary-lighter: hsl( | |
var(--site-primary-hue-saturation-light) 47% | |
); | |
--ifm-color-primary-lightest: hsl( | |
var(--site-primary-hue-saturation-light) 58% | |
); | |
--ifm-background-color: #fff; | |
} | |
[data-theme="dark"] { | |
--ifm-color-primary: hsl(var(--site-primary-hue-saturation) 45%); | |
--ifm-color-primary-dark: hsl(var(--site-primary-hue-saturation) 41%); | |
--ifm-color-primary-darker: hsl(var(--site-primary-hue-saturation) 38%); | |
--ifm-color-primary-darkest: hsl(var(--site-primary-hue-saturation) 32%); | |
--ifm-color-primary-light: hsl(var(--site-primary-hue-saturation-light) 54%); | |
--ifm-color-primary-lighter: hsl( | |
var(--site-primary-hue-saturation-light) 62% | |
); | |
--ifm-color-primary-lightest: hsl( | |
var(--site-primary-hue-saturation-light) 73% | |
); | |
} | |
.header-github-link:before { | |
background-color: var(--ifm-navbar-link-color); | |
content: ""; | |
display: flex; | |
height: 24px; | |
-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E"); | |
mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E"); | |
width: 24px; | |
} | |
.header-github-link:hover:before { | |
background-color: var(--ifm-navbar-link-hover-color); | |
} | |
.unique-tabs .tabs__item { | |
line-height: 16px; | |
margin-right: 8px; | |
} | |
.unique-tabs .tabs__item--active { | |
background-color: var(--ifm-tabs-color-active); | |
border: 0; | |
border-radius: var(--ifm-global-radius); | |
color: #fff; | |
} | |
[data-theme="light"] .themedDocusaurus [fill="#FFFF50"] { | |
fill: #adff2f; | |
} | |
[data-theme="dark"] .themedDocusaurus [fill="#FFFF50"] { | |
fill: #2e8b57; | |
} | |
[data-theme="light"] .DocSearch { | |
--docsearch-muted-color: var(--ifm-color-emphasis-700); | |
--docsearch-container-background: #5e6470b3; | |
--docsearch-modal-background: var(--ifm-color-secondary-lighter); | |
--docsearch-searchbox-background: var(--ifm-color-secondary); | |
--docsearch-searchbox-focus-background: var(--ifm-color-white); | |
--docsearch-hit-background: var(--ifm-color-white); | |
--docsearch-footer-background: var(--ifm-color-white); | |
} | |
[data-theme="dark"] .DocSearch { | |
--docsearch-text-color: var(--ifm-font-color-base); | |
--docsearch-muted-color: var(--ifm-color-secondary-darkest); | |
--docsearch-container-background: #2f3745b3; | |
--docsearch-modal-background: var(--ifm-background-color); | |
--docsearch-searchbox-background: var(--ifm-background-color); | |
--docsearch-searchbox-focus-background: var(--ifm-color-black); | |
--docsearch-hit-background: var(--ifm-color-emphasis-100); | |
--docsearch-footer-background: var(--ifm-background-surface-color); | |
--docsearch-key-gradient: linear-gradient( | |
-26.5deg, | |
var(--ifm-color-emphasis-200) 0%, | |
var(--ifm-color-emphasis-100) 100% | |
); | |
} | |
div[class^="announcementBar_"] { | |
font-size: 20px; | |
--site-announcement-bar-stripe-color1: #e8d7ff; | |
--site-announcement-bar-stripe-color2: #ffe9d1; | |
background: repeating-linear-gradient( | |
35deg, | |
var(--site-announcement-bar-stripe-color1), | |
var(--site-announcement-bar-stripe-color1) 20px, | |
var(--site-announcement-bar-stripe-color2) 10px, | |
var(--site-announcement-bar-stripe-color2) 40px | |
); | |
font-weight: 700; | |
} | |
.screen-reader-only { | |
border: 0; | |
clip: rect(0 0 0 0); | |
clip-path: polygon(0 0, 0 0, 0 0); | |
height: 1px; | |
margin: -1px; | |
overflow: hidden; | |
padding: 0; | |
position: absolute; | |
width: 1px; | |
} | |
[data-theme="dark"] img[src$="#gh-light-mode-only"], | |
[data-theme="light"] img[src$="#gh-dark-mode-only"], | |
html[data-navbar="false"] .navbar { | |
display: none; | |
} | |
.test-marker-site-custom-css-unique-rule { | |
content: "site-custom-css-unique-rule"; | |
} | |
.video-container { | |
margin: 0 auto; | |
max-width: 560px; | |
overflow: hidden; | |
position: relative; | |
width: 100%; | |
} | |
.yt-lite > .lty-playbtn { | |
border: 0; | |
cursor: pointer; | |
} | |
.dropdown-separator { | |
margin: 0.3rem 0; | |
} | |
.dropdown-archived-versions { | |
font-size: 0.875rem; | |
padding: 0.2rem 0.5rem; | |
} | |
.code-block-error-line { | |
background-color: #ff000020; | |
border-left: 3px solid #ff000080; | |
display: block; | |
margin: 0 calc(var(--ifm-pre-padding) * -1); | |
padding: 0 var(--ifm-pre-padding); | |
} | |
[data-rmiz-modal-overlay="visible"] { | |
background-color: #fffffff2; | |
} | |
[data-theme="dark"] [data-rmiz-modal-overlay="visible"] { | |
background-color: #000000f2; | |
} | |
html[data-red-border] div#__docusaurus { | |
border: thick solid red; | |
} | |
.red_FE5X, | |
html.plugin-docs.plugin-id-docs-tests .red > a { | |
color: red; | |
} | |
html.plugin-docs.plugin-id-docs-tests .navbar { | |
border-bottom: thin solid #0ff; | |
} | |
html.plugin-blog.plugin-id-blog-tests .navbar { | |
border-bottom: thin solid #0f0; | |
} | |
html.plugin-pages.plugin-id-pages-tests .navbar { | |
border-bottom: thin solid #ff0; | |
} | |
#z-index-test { | |
z-index: 100; | |
} | |
html:has(#navbar-dropdown-tests) .navbar__item.dropdown ~ a { | |
display: none; | |
} | |
.test-marker-site-client-module { | |
content: "site-client-module"; | |
} | |
.container_tECh { | |
background-color: #18191a; | |
color: #fff; | |
min-height: 100vh; | |
overflow-x: hidden; | |
padding: 80px 20px 20px; | |
} | |
.container_tECh code { | |
background-color: #444950; | |
color: #fff; | |
} | |
.nav_sWk6 { | |
align-items: center; | |
background-color: #242526; | |
display: flex; | |
height: 3.75rem; | |
justify-content: space-evenly; | |
position: fixed; | |
width: 100%; | |
z-index: 1; | |
} | |
.navlink__gTJ { | |
border-radius: 4px; | |
color: #fff; | |
font-size: clamp(12px, 4vw, 16px); | |
font-weight: 500; | |
padding: 6px; | |
text-align: center; | |
} | |
.navlink__gTJ:hover { | |
background-color: #292a2b; | |
text-decoration: none; | |
} | |
.active_Uuwz { | |
background-color: #363739; | |
} | |
.containerParaiso_TYa3 { | |
background-color: #292a2b; | |
border-radius: 4px; | |
cursor: default; | |
font-family: monospace; | |
font-size: 13px; | |
margin-top: 10px; | |
padding: 10px; | |
position: relative; | |
} | |
.basicElementParaiso_DqvR { | |
border-left: 1px solid #4f424c; | |
color: #fff; | |
padding: 3px 5px 3px 20px; | |
} | |
.labelParaiso_l3ql { | |
color: #e7e9db; | |
letter-spacing: 0.5px; | |
margin-right: 3px; | |
} | |
.nullValueParaiso_Ey4X { | |
background-color: #4f424c; | |
border-radius: 3px; | |
color: #fec418; | |
display: inline-block; | |
font-size: 11px; | |
font-weight: 700; | |
padding: 1px 2px; | |
} | |
.collapseIconParaiso_MWEp, | |
.expandIconParaiso_fAkX { | |
font-size: 22px; | |
margin-right: 3px; | |
vertical-align: initial; | |
line-height: 10px; | |
display: inline-block; | |
} | |
.undefinedValueParaiso__T3e { | |
color: #8d8687; | |
} | |
.stringValueParaiso_T6i7 { | |
color: #f99b15; | |
} | |
.booleanValueParaiso__TSh { | |
color: #815ba4; | |
} | |
.numberValueParaiso_JGW0 { | |
color: #e96ba8; | |
} | |
.otherValueParaiso_nnwW, | |
.punctuationParaiso_knwc { | |
color: #fff; | |
} | |
.expandIconParaiso_fAkX { | |
color: #815ba4; | |
} | |
.collapseIconParaiso_MWEp:after { | |
content: "\25BE"; | |
} | |
.collapseIconParaiso_MWEp { | |
color: #06b6ef; | |
} | |
.expandIconParaiso_fAkX:after { | |
content: "\25B8"; | |
} | |
.collapseContentParaiso_KH36 { | |
color: #f99b15; | |
cursor: pointer; | |
font-size: 18px; | |
line-height: 10px; | |
} | |
.name_C0v7, | |
.routeName_j49z { | |
color: #e06b6b; | |
} | |
.collapseContentParaiso_KH36:after { | |
content: "..."; | |
} | |
.listItem_Bobk, | |
.listItem_lSSi, | |
.listItem_zpSX { | |
background-color: #242526; | |
border-radius: 4px; | |
margin-bottom: 20px; | |
padding: 10px; | |
} | |
.sectionTitle_T1wU { | |
margin-top: 20px; | |
} | |
.name_C0v7 { | |
font-weight: 800; | |
} | |
.route_X3At { | |
margin-bottom: 10px; | |
} | |
.backToTopButton_PuQw { | |
background-color: var(--ifm-color-emphasis-200); | |
border-radius: 50%; | |
bottom: 1.3rem; | |
box-shadow: var(--ifm-global-shadow-lw); | |
height: 3rem; | |
opacity: 0; | |
position: fixed; | |
right: 1.3rem; | |
transform: scale(0); | |
transition: all var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
visibility: hidden; | |
width: 3rem; | |
z-index: calc(var(--ifm-z-index-fixed) - 1); | |
} | |
.backToTopButton_PuQw:after { | |
background-color: var(--ifm-color-emphasis-1000); | |
content: " "; | |
display: inline-block; | |
height: 100%; | |
-webkit-mask: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat; | |
mask: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat; | |
width: 100%; | |
} | |
.backToTopButtonShow_YSA3 { | |
opacity: 1; | |
transform: scale(1); | |
visibility: visible; | |
} | |
.DocSearch-Button { | |
align-items: center; | |
background: var(--docsearch-searchbox-background); | |
border: 0; | |
border-radius: 40px; | |
color: var(--docsearch-muted-color); | |
cursor: pointer; | |
display: flex; | |
font-weight: 500; | |
height: 36px; | |
justify-content: space-between; | |
padding: 0 8px; | |
-webkit-user-select: none; | |
user-select: none; | |
} | |
.DocSearch-Button:active, | |
.DocSearch-Button:focus, | |
.DocSearch-Button:hover { | |
background: var(--docsearch-searchbox-focus-background); | |
box-shadow: var(--docsearch-searchbox-shadow); | |
color: var(--docsearch-text-color); | |
outline: 0; | |
} | |
.DocSearch-Button-Container { | |
align-items: center; | |
display: flex; | |
} | |
.DocSearch-Search-Icon { | |
stroke-width: 1.6; | |
} | |
.DocSearch-Hit-Tree, | |
.DocSearch-Hit-action, | |
.DocSearch-Hit-icon, | |
.DocSearch-Reset { | |
stroke-width: var(--docsearch-icon-stroke-width); | |
} | |
.DocSearch-Button .DocSearch-Search-Icon { | |
color: var(--docsearch-text-color); | |
} | |
.DocSearch-Button-Placeholder { | |
font-size: 1rem; | |
padding: 0 12px 0 6px; | |
} | |
.DocSearch-Button-Keys { | |
display: flex; | |
min-width: calc(40px + 0.8em); | |
} | |
.DocSearch-Button-Key { | |
align-items: center; | |
background: var(--docsearch-key-gradient); | |
border: 0; | |
border-radius: 3px; | |
box-shadow: var(--docsearch-key-shadow); | |
color: var(--docsearch-muted-color); | |
display: flex; | |
height: 18px; | |
justify-content: center; | |
margin-right: 0.4em; | |
padding: 0 0 2px; | |
position: relative; | |
top: -1px; | |
width: 20px; | |
} | |
.DocSearch--active { | |
overflow: hidden !important; | |
} | |
.DocSearch-Container { | |
background-color: var(--docsearch-container-background); | |
height: 100vh; | |
left: 0; | |
position: fixed; | |
top: 0; | |
width: 100vw; | |
z-index: 200; | |
} | |
.DocSearch-Container a, | |
.sidebarItemLink_Qrfg:hover { | |
text-decoration: none; | |
} | |
.DocSearch-Hit[aria-selected="true"] mark, | |
.content_ttnW a { | |
text-decoration: underline; | |
} | |
.DocSearch-Link { | |
appearance: none; | |
background: none; | |
border: 0; | |
color: var(--docsearch-highlight-color); | |
cursor: pointer; | |
font: inherit; | |
margin: 0; | |
padding: 0; | |
} | |
.DocSearch-Modal { | |
background: var(--docsearch-modal-background); | |
border-radius: 6px; | |
box-shadow: var(--docsearch-modal-shadow); | |
flex-direction: column; | |
margin: 60px auto auto; | |
max-width: var(--docsearch-modal-width); | |
position: relative; | |
} | |
.DocSearch-SearchBar { | |
display: flex; | |
padding: var(--docsearch-spacing) var(--docsearch-spacing) 0; | |
} | |
.DocSearch-Form { | |
align-items: center; | |
background: var(--docsearch-searchbox-focus-background); | |
border-radius: 4px; | |
box-shadow: var(--docsearch-searchbox-shadow); | |
display: flex; | |
height: var(--docsearch-searchbox-height); | |
margin: 0; | |
padding: 0 var(--docsearch-spacing); | |
position: relative; | |
width: 100%; | |
} | |
.DocSearch-Input { | |
appearance: none; | |
background: #0000; | |
border: 0; | |
color: var(--docsearch-text-color); | |
flex: 1; | |
font: inherit; | |
font-size: 1.2em; | |
height: 100%; | |
outline: 0; | |
padding: 0 0 0 8px; | |
width: 80%; | |
} | |
.DocSearch-Input::placeholder { | |
color: var(--docsearch-muted-color); | |
opacity: 1; | |
} | |
.DocSearch-Input::-webkit-search-cancel-button, | |
.DocSearch-Input::-webkit-search-decoration, | |
.DocSearch-Input::-webkit-search-results-button, | |
.DocSearch-Input::-webkit-search-results-decoration { | |
display: none; | |
} | |
.DocSearch-LoadingIndicator, | |
.DocSearch-MagnifierLabel, | |
.DocSearch-Reset, | |
.buttonContainer_Gl4a .close { | |
margin: 0; | |
padding: 0; | |
} | |
.DocSearch-Container--Stalled .DocSearch-LoadingIndicator, | |
.DocSearch-MagnifierLabel, | |
.DocSearch-Reset { | |
align-items: center; | |
color: var(--docsearch-highlight-color); | |
display: flex; | |
justify-content: center; | |
} | |
.DocSearch-Cancel, | |
.DocSearch-Container--Stalled .DocSearch-MagnifierLabel, | |
.DocSearch-LoadingIndicator, | |
.DocSearch-Reset[hidden] { | |
display: none; | |
} | |
.DocSearch-Reset { | |
animation: 0.1s ease-in forwards a; | |
appearance: none; | |
background: none; | |
border: 0; | |
border-radius: 50%; | |
color: var(--docsearch-icon-color); | |
cursor: pointer; | |
padding: 2px; | |
right: 0; | |
} | |
.DocSearch-Help, | |
.DocSearch-HitsFooter, | |
.DocSearch-Label { | |
color: var(--docsearch-muted-color); | |
} | |
.DocSearch-Reset:hover { | |
color: var(--docsearch-highlight-color); | |
} | |
.DocSearch-LoadingIndicator svg, | |
.DocSearch-MagnifierLabel svg { | |
height: 24px; | |
width: 24px; | |
} | |
.DocSearch-Dropdown { | |
max-height: calc( | |
var(--docsearch-modal-height) - var(--docsearch-searchbox-height) - | |
var(--docsearch-spacing) - var(--docsearch-footer-height) | |
); | |
min-height: var(--docsearch-spacing); | |
overflow-y: auto; | |
overflow-y: overlay; | |
padding: 0 var(--docsearch-spacing); | |
scrollbar-color: var(--docsearch-muted-color) | |
var(--docsearch-modal-background); | |
scrollbar-width: thin; | |
} | |
.DocSearch-Dropdown::-webkit-scrollbar { | |
width: 12px; | |
} | |
.DocSearch-Dropdown::-webkit-scrollbar-track { | |
background: #0000; | |
} | |
.DocSearch-Dropdown::-webkit-scrollbar-thumb { | |
background-color: var(--docsearch-muted-color); | |
border: 3px solid var(--docsearch-modal-background); | |
border-radius: 20px; | |
} | |
.DocSearch-Dropdown ul { | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
} | |
.DocSearch-Label { | |
font-size: 0.75em; | |
line-height: 1.6em; | |
} | |
.DocSearch-Help { | |
font-size: 0.9em; | |
margin: 0; | |
-webkit-user-select: none; | |
user-select: none; | |
} | |
.DocSearch-Title { | |
font-size: 1.2em; | |
} | |
.DocSearch-Logo a, | |
.indexCtasGitHubButtonWrapper_AOht { | |
display: flex; | |
} | |
.DocSearch-Logo svg { | |
color: var(--docsearch-logo-color); | |
margin-left: 8px; | |
} | |
.DocSearch-Hits:last-of-type { | |
margin-bottom: 24px; | |
} | |
.DocSearch-Hits mark { | |
background: none; | |
color: var(--docsearch-highlight-color); | |
} | |
.DocSearch-HitsFooter { | |
display: flex; | |
font-size: 0.85em; | |
justify-content: center; | |
margin-bottom: var(--docsearch-spacing); | |
padding: var(--docsearch-spacing); | |
} | |
.DocSearch-HitsFooter a { | |
border-bottom: 1px solid; | |
color: inherit; | |
} | |
.DocSearch-Hit { | |
border-radius: 4px; | |
display: flex; | |
padding-bottom: 4px; | |
position: relative; | |
} | |
.DocSearch-Hit--deleting { | |
opacity: 0; | |
transition: 0.25s linear; | |
} | |
.DocSearch-Hit--favoriting { | |
transform: scale(0); | |
transform-origin: top center; | |
transition: 0.25s linear 0.25s; | |
} | |
.DocSearch-Hit a { | |
background: var(--docsearch-hit-background); | |
border-radius: 4px; | |
box-shadow: var(--docsearch-hit-shadow); | |
display: block; | |
padding-left: var(--docsearch-spacing); | |
width: 100%; | |
} | |
.DocSearch-Hit-source { | |
background: var(--docsearch-modal-background); | |
color: var(--docsearch-highlight-color); | |
font-size: 0.85em; | |
font-weight: 600; | |
line-height: 32px; | |
margin: 0 -4px; | |
padding: 8px 4px 0; | |
position: sticky; | |
top: 0; | |
z-index: 10; | |
} | |
.DocSearch-Hit-Tree { | |
color: var(--docsearch-muted-color); | |
height: var(--docsearch-hit-height); | |
opacity: 0.5; | |
width: 24px; | |
} | |
.DocSearch-Hit[aria-selected="true"] a { | |
background-color: var(--docsearch-highlight-color); | |
} | |
.DocSearch-Hit-Container { | |
align-items: center; | |
color: var(--docsearch-hit-color); | |
display: flex; | |
flex-direction: row; | |
height: var(--docsearch-hit-height); | |
padding: 0 var(--docsearch-spacing) 0 0; | |
} | |
.DocSearch-Hit-icon { | |
height: 20px; | |
width: 20px; | |
} | |
.DocSearch-Hit-action, | |
.DocSearch-Hit-icon { | |
color: var(--docsearch-muted-color); | |
} | |
.DocSearch-Hit-action { | |
align-items: center; | |
display: flex; | |
height: 22px; | |
width: 22px; | |
} | |
.DocSearch-Hit-action svg { | |
display: block; | |
height: 18px; | |
width: 18px; | |
} | |
.DocSearch-Hit-action + .DocSearch-Hit-action { | |
margin-left: 6px; | |
} | |
.DocSearch-Hit-action-button { | |
appearance: none; | |
background: none; | |
border: 0; | |
border-radius: 50%; | |
color: inherit; | |
cursor: pointer; | |
padding: 2px; | |
} | |
#__docusaurus-base-url-issue-banner-container, | |
.docSidebarContainer_S51O, | |
.navbarSearchContainer_dDCC:empty, | |
.sidebarLogo_UK0N, | |
.themedComponent_bJGS, | |
[data-theme="dark"] .lightToggleIcon_dnYY, | |
[data-theme="light"] .darkToggleIcon_OBbf, | |
html[data-announcement-bar-initially-dismissed="true"] .announcementBar_cTOO, | |
svg.DocSearch-Hit-Select-Icon { | |
display: none; | |
} | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-Select-Icon, | |
.tocCollapsibleContent_FG8F a { | |
display: block; | |
} | |
.DocSearch-Hit-action-button:focus, | |
.DocSearch-Hit-action-button:hover { | |
background: #0003; | |
transition: background-color 0.1s ease-in; | |
} | |
.DocSearch-Hit-action-button:focus path, | |
.DocSearch-Hit-action-button:hover path { | |
fill: #fff; | |
} | |
.DocSearch-Hit-content-wrapper { | |
display: flex; | |
flex: 1 1 auto; | |
flex-direction: column; | |
font-weight: 500; | |
justify-content: center; | |
line-height: 1.2em; | |
margin: 0 8px; | |
overflow-x: hidden; | |
position: relative; | |
width: 80%; | |
} | |
.DocSearch-Hit-title { | |
font-size: 0.9em; | |
} | |
.DocSearch-Hit-path { | |
color: var(--docsearch-muted-color); | |
font-size: 0.75em; | |
} | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-Tree, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-action, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-icon, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-path, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-text, | |
.DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-title, | |
.DocSearch-Hit[aria-selected="true"] mark { | |
color: var(--docsearch-hit-active-color) !important; | |
} | |
.DocSearch-ErrorScreen, | |
.DocSearch-NoResults, | |
.DocSearch-StartScreen { | |
font-size: 0.9em; | |
margin: 0 auto; | |
padding: 36px 0; | |
text-align: center; | |
width: 80%; | |
} | |
.DocSearch-Screen-Icon { | |
color: var(--docsearch-muted-color); | |
padding-bottom: 12px; | |
} | |
.DocSearch-NoResults-Prefill-List { | |
display: inline-block; | |
padding-bottom: 24px; | |
text-align: left; | |
} | |
.DocSearch-NoResults-Prefill-List ul { | |
display: inline-block; | |
padding: 8px 0 0; | |
} | |
.DocSearch-NoResults-Prefill-List li { | |
list-style-position: inside; | |
list-style-type: "» "; | |
} | |
.DocSearch-Prefill { | |
appearance: none; | |
background: none; | |
border: 0; | |
border-radius: 1em; | |
color: var(--docsearch-highlight-color); | |
cursor: pointer; | |
display: inline-block; | |
font-size: 1em; | |
font-weight: 700; | |
padding: 0; | |
} | |
.DocSearch-Prefill:focus, | |
.DocSearch-Prefill:hover { | |
outline: 0; | |
text-decoration: underline; | |
} | |
.DocSearch-Footer { | |
align-items: center; | |
background: var(--docsearch-footer-background); | |
border-radius: 0 0 8px 8px; | |
box-shadow: var(--docsearch-footer-shadow); | |
display: flex; | |
flex-direction: row-reverse; | |
flex-shrink: 0; | |
height: var(--docsearch-footer-height); | |
justify-content: space-between; | |
padding: 0 var(--docsearch-spacing); | |
position: relative; | |
-webkit-user-select: none; | |
user-select: none; | |
width: 100%; | |
z-index: 300; | |
} | |
.DocSearch-Commands { | |
color: var(--docsearch-muted-color); | |
display: flex; | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
} | |
.DocSearch-Commands li, | |
.buttonContainer_Gl4a, | |
.headingButtons_DX79, | |
.headingFavorites_LTro { | |
align-items: center; | |
display: flex; | |
} | |
.DocSearch-Commands li:not(:last-of-type) { | |
margin-right: 0.8em; | |
} | |
.DocSearch-Commands-Key { | |
align-items: center; | |
background: var(--docsearch-key-gradient); | |
border: 0; | |
border-radius: 2px; | |
box-shadow: var(--docsearch-key-shadow); | |
color: var(--docsearch-muted-color); | |
display: flex; | |
height: 18px; | |
justify-content: center; | |
margin-right: 0.4em; | |
padding: 0 0 1px; | |
width: 20px; | |
} | |
@keyframes a { | |
0% { | |
opacity: 0; | |
} | |
to { | |
opacity: 1; | |
} | |
} | |
.DocSearch-Button { | |
margin: 0; | |
transition: all var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.DocSearch-Container { | |
z-index: calc(var(--ifm-z-index-fixed) + 1); | |
} | |
.popup_EH26 { | |
align-items: center; | |
bottom: 16px; | |
display: flex; | |
justify-content: space-between; | |
position: fixed; | |
right: 16px; | |
width: 344px; | |
z-index: 999; | |
} | |
.apiTable_e8hp, | |
.colorTable_Js7s { | |
font-size: small; | |
} | |
.apiTable_e8hp tbody tr { | |
transition: box-shadow 0.2s; | |
} | |
.apiTable_e8hp tbody tr:focus, | |
.apiTable_e8hp tbody tr:hover { | |
box-shadow: 0 0 7px 0 inset var(--ifm-color-warning); | |
cursor: pointer; | |
outline: 0; | |
transition: box-shadow 0.2s; | |
} | |
.skipToContent_UHvc { | |
background-color: var(--ifm-background-surface-color); | |
color: var(--ifm-color-emphasis-900); | |
left: 100%; | |
padding: calc(var(--ifm-global-spacing) / 2) var(--ifm-global-spacing); | |
position: fixed; | |
top: 1rem; | |
z-index: calc(var(--ifm-z-index-fixed) + 1); | |
} | |
.skipToContent_UHvc:focus { | |
box-shadow: var(--ifm-global-shadow-md); | |
left: 1rem; | |
} | |
.closeButton_nmpN { | |
line-height: 0; | |
padding: 0; | |
} | |
.content_ttnW { | |
font-size: 85%; | |
padding: 5px 0; | |
text-align: center; | |
} | |
.content_ttnW a { | |
color: inherit; | |
} | |
.announcementBar_cTOO { | |
align-items: center; | |
background-color: var(--ifm-color-white); | |
border-bottom: 1px solid var(--ifm-color-emphasis-100); | |
color: var(--ifm-color-black); | |
display: flex; | |
height: var(--docusaurus-announcement-bar-height); | |
} | |
.announcementBarPlaceholder_Lqfg { | |
flex: 0 0 10px; | |
} | |
.announcementBarClose_UFLi { | |
align-self: stretch; | |
flex: 0 0 30px; | |
} | |
.yt-lite { | |
background-color: #000; | |
background-position: 50%; | |
background-size: cover; | |
contain: content; | |
cursor: pointer; | |
display: block; | |
position: relative; | |
} | |
.yt-lite.lyt-activated:before { | |
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==); | |
background-position: top; | |
background-repeat: repeat-x; | |
content: ""; | |
display: block; | |
height: 60px; | |
padding-bottom: 50px; | |
position: absolute; | |
top: 0; | |
transition: 0.2s cubic-bezier(0, 0, 0.2, 1); | |
width: 100%; | |
} | |
.yt-lite:after { | |
content: ""; | |
display: block; | |
padding-bottom: var(--aspect-ratio); | |
} | |
.slideInner___2mfX9, | |
.yt-lite > iframe { | |
height: 100%; | |
left: 0; | |
position: absolute; | |
top: 0; | |
width: 100%; | |
} | |
.yt-lite > .lty-playbtn { | |
background-color: #212121; | |
border-radius: 14%; | |
height: 46px; | |
opacity: 0.8; | |
transition: 0.2s cubic-bezier(0, 0, 0.2, 1); | |
width: 70px; | |
z-index: 1; | |
} | |
.browserWindowHeader_jXSR, | |
.toggleButton_x9TT:hover { | |
background: var(--ifm-color-emphasis-200); | |
} | |
.yt-lite:hover > .lty-playbtn { | |
background-color: red; | |
opacity: 1; | |
} | |
.yt-lite > .lty-playbtn:before { | |
border-color: #0000 #0000 #0000 #fff; | |
border-style: solid; | |
border-width: 11px 0 11px 19px; | |
content: ""; | |
} | |
.yt-lite > .lty-playbtn, | |
.yt-lite > .lty-playbtn:before { | |
left: 50%; | |
position: absolute; | |
top: 50%; | |
transform: translate3d(-50%, -50%, 0); | |
} | |
.yt-lite.lyt-activated { | |
cursor: unset; | |
} | |
.yt-lite.lyt-activated:before, | |
.yt-lite.lyt-activated > .lty-playbtn { | |
opacity: 0; | |
pointer-events: none; | |
} | |
.toggle_bT41 { | |
height: 2rem; | |
width: 2rem; | |
} | |
.toggleButton_x9TT { | |
align-items: center; | |
border-radius: 50%; | |
display: flex; | |
height: 100%; | |
justify-content: center; | |
transition: background var(--ifm-transition-fast); | |
width: 100%; | |
} | |
.toggleButtonDisabled_Dj8q { | |
cursor: not-allowed; | |
} | |
.darkNavbarColorModeToggle_JF8j:hover { | |
background: var(--ifm-color-gray-800); | |
} | |
[data-theme="dark"] .themedComponent--dark_jnGk, | |
[data-theme="light"] .themedComponent--light_LEkC, | |
html:not([data-theme]) .themedComponent--light_LEkC { | |
display: initial; | |
} | |
[data-theme="dark"]:root { | |
--docusaurus-collapse-button-bg: #ffffff0d; | |
--docusaurus-collapse-button-bg-hover: #ffffff1a; | |
} | |
.collapseSidebarButton_PUyN { | |
display: none; | |
margin: 0; | |
} | |
.iconExternalLink_Rdzz { | |
margin-left: 0.3rem; | |
} | |
.docMainContainer_EfwR, | |
.docRoot_kBZ6 { | |
display: flex; | |
width: 100%; | |
} | |
.docsWrapper_lLmf { | |
display: flex; | |
flex: 1 0 auto; | |
} | |
.buttonBack___1mlaL, | |
.buttonFirst___2rhFr, | |
.buttonLast___2yuh0, | |
.buttonNext___2mOCa, | |
.buttonNext___3Lm3s, | |
.dot___3c3SI, | |
.dropdownNavbarItemMobile_A1en { | |
cursor: pointer; | |
} | |
.iconLanguage_tqOs { | |
margin-right: 5px; | |
vertical-align: text-bottom; | |
} | |
.navbarHideable_uAgx { | |
transition: transform var(--ifm-transition-fast) ease; | |
} | |
.navbarHidden_QgM6 { | |
transform: translate3d(0, calc(-100% - 2px), 0); | |
} | |
.browserWindow_my1Q { | |
border: 3px solid var(--ifm-color-emphasis-200); | |
border-radius: var(--ifm-global-radius); | |
box-shadow: var(--ifm-global-shadow-lw); | |
margin-bottom: var(--ifm-leading); | |
} | |
.browserWindowHeader_jXSR { | |
align-items: center; | |
display: flex; | |
padding: 0.5rem 1rem; | |
} | |
.row_KZDM:after { | |
clear: both; | |
content: ""; | |
display: table; | |
} | |
.right_oyze { | |
align-self: center; | |
width: 10%; | |
} | |
.browserWindowAddressBar_Pd8y { | |
background-color: var(--ifm-background-color); | |
border-radius: 12.5px; | |
color: var(--ifm-color-gray-800); | |
flex: 1 0; | |
font: | |
400 13px Arial, | |
sans-serif; | |
margin: 0 1rem 0 0.5rem; | |
padding: 5px 15px; | |
-webkit-user-select: none; | |
user-select: none; | |
} | |
.hash-link, | |
.svg_d33c { | |
-webkit-user-select: none; | |
} | |
[data-theme="dark"] .browserWindowAddressBar_Pd8y { | |
color: var(--ifm-color-gray-300); | |
} | |
.dot_giz1 { | |
background-color: #bbb; | |
border-radius: 50%; | |
display: inline-block; | |
height: 12px; | |
margin-right: 6px; | |
margin-top: 4px; | |
width: 12px; | |
} | |
.browserWindowMenuIcon_Vhuh, | |
.searchBar_E3wW { | |
margin-left: auto; | |
} | |
.bar_rrRL { | |
background-color: #aaa; | |
display: block; | |
height: 3px; | |
margin: 3px 0; | |
width: 17px; | |
} | |
.browserWindowBody_Idgs { | |
background-color: var(--ifm-background-color); | |
border-bottom-left-radius: inherit; | |
border-bottom-right-radius: inherit; | |
padding: 1rem; | |
} | |
.red_FE5X[aria-selected="true"] { | |
border-bottom-color: red; | |
} | |
.orange_kp8w { | |
color: orange; | |
} | |
.orange_kp8w[aria-selected="true"] { | |
border-bottom-color: orange; | |
} | |
.yellow_uGry { | |
color: #ff0; | |
} | |
.yellow_uGry[aria-selected="true"] { | |
border-bottom-color: #ff0; | |
} | |
.image___xtQGH { | |
display: block; | |
height: 100%; | |
width: 100%; | |
} | |
.spinner___27VUp { | |
animation-duration: 1s; | |
animation-iteration-count: infinite; | |
animation-name: b; | |
animation-timing-function: linear; | |
border: 4px solid #a9a9a9; | |
border-radius: 30px; | |
border-top-color: #000; | |
height: 30px; | |
left: calc(50% - 15px); | |
position: absolute; | |
top: calc(50% - 15px); | |
width: 30px; | |
} | |
@keyframes b { | |
0% { | |
transform: rotate(0); | |
} | |
to { | |
transform: rotate(1turn); | |
} | |
} | |
.container___2O72F { | |
height: 100%; | |
overflow: hidden; | |
position: relative; | |
width: 100%; | |
} | |
.overlay___IV4qY { | |
bottom: 0; | |
cursor: zoom-in; | |
left: 0; | |
opacity: 0; | |
position: absolute; | |
right: 0; | |
top: 0; | |
transition: | |
opacity 0.3s, | |
transform 0.3s; | |
} | |
.footerLogoLink_CiM_:hover, | |
.hash-link:focus, | |
.hover___MYy31, | |
.loading___1pvNI, | |
.zoom___3kqYk, | |
:hover > .hash-link { | |
opacity: 1; | |
} | |
.imageLoadingSpinnerContainer___3UIPD, | |
.masterSpinnerContainer___1Z6hB { | |
background-color: #f4f4f4; | |
bottom: 0; | |
left: 0; | |
position: absolute; | |
right: 0; | |
top: 0; | |
} | |
.slide___3-Nqo { | |
display: block; | |
height: 0; | |
list-style-type: none; | |
margin: 0; | |
position: relative; | |
} | |
.slide___3-Nqo:focus { | |
outline: 0 !important; | |
} | |
.slideHorizontal___1NzNV, | |
.verticalTray___12Key { | |
float: left; | |
} | |
[dir="rtl"] .slideHorizontal___1NzNV { | |
direction: rtl; | |
transform: scaleX(-1); | |
} | |
.focusRing___1airF { | |
bottom: 5px; | |
left: 5px; | |
outline: Highlight solid 5px; | |
pointer-events: none; | |
position: absolute; | |
right: 5px; | |
top: 5px; | |
} | |
.horizontalSlider___281Ls, | |
.verticalSlider___34ZFD { | |
position: relative; | |
overflow: hidden; | |
} | |
.horizontalSlider___281Ls { | |
touch-action: pan-y pinch-zoom; | |
} | |
[dir="rtl"] .horizontalSlider___281Ls { | |
direction: ltr; | |
transform: scaleX(-1); | |
} | |
.horizontalSliderTray___1L-0W { | |
overflow: hidden; | |
width: 100%; | |
} | |
.indexCtasGitHubButton_sMIS, | |
.verticalSlideTrayWrap___2nO7o, | |
.verticalSliderTray___267D8 { | |
overflow: hidden; | |
} | |
.sliderTray___-vHFQ { | |
display: block; | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
} | |
.sliderAnimation___300FY { | |
transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); | |
will-change: transform; | |
} | |
.navButton_qSul, | |
.siteLink_IglZ { | |
background-color: #0000004d; | |
transition: all var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
position: absolute; | |
} | |
.navButton_qSul { | |
border: 0; | |
border-radius: 50%; | |
color: #fff; | |
font-size: 20px; | |
height: 40px; | |
top: 50%; | |
transform: translateY(-50%); | |
width: 40px; | |
} | |
.authorSocialIcon_hTX6, | |
.authorSocialLink_hEWM, | |
.authorSocials_tPnL { | |
height: var(--docusaurus-blog-social-icon-size); | |
} | |
.navButton_qSul:hover { | |
background-color: #00000073; | |
} | |
.dotGroup_n_95 { | |
bottom: 5px; | |
display: flex; | |
justify-content: center; | |
pointer-events: none; | |
position: absolute; | |
width: 100%; | |
} | |
.dotGroup_n_95 > .carousel__dot { | |
background: #0003; | |
border: none; | |
border-radius: 50%; | |
display: inline-block; | |
height: 1rem; | |
margin: 2px; | |
pointer-events: auto; | |
width: 1rem; | |
} | |
.dotGroup_n_95 > .carousel__dot--selected { | |
background: #00000073; | |
} | |
.siteLink_IglZ { | |
border-radius: 6px; | |
bottom: 2px; | |
font-size: 16px; | |
padding: 0 12px; | |
right: 2px; | |
--ifm-link-color: var(--ifm-color-gray-400); | |
} | |
.siteLink_IglZ:hover { | |
background-color: #00000073; | |
--ifm-link-color: var(--ifm-color-gray-200); | |
--ifm-link-hover-color: var(--ifm-color-gray-200); | |
--ifm-link-hover-decoration: none; | |
} | |
.wrappingBlock_S4U4 { | |
display: inline-block; | |
padding: 5px; | |
vertical-align: top; | |
width: 50%; | |
} | |
.wrappingBlock_S4U4 code[class^="codeBlockLines"] { | |
white-space: pre-wrap; | |
} | |
.tableOfContentsInline_2sru ul { | |
font-size: medium; | |
list-style-type: disc; | |
padding-top: 0; | |
} | |
.tocCollapsibleButton_IbtT { | |
align-items: center; | |
display: flex; | |
font-size: inherit; | |
justify-content: space-between; | |
padding: 0.4rem 0.8rem; | |
width: 100%; | |
} | |
.authorSocialIcon_hTX6, | |
.authorSocialLink_hEWM { | |
width: var(--docusaurus-blog-social-icon-size); | |
} | |
.tocCollapsibleButton_IbtT:after { | |
background: var(--ifm-menu-link-sublist-icon) 50% 50%/2rem 2rem no-repeat; | |
content: ""; | |
filter: var(--ifm-menu-link-sublist-icon-filter); | |
height: 1.25rem; | |
transform: rotate(180deg); | |
transition: transform var(--ifm-transition-fast); | |
width: 1.25rem; | |
} | |
.tocCollapsibleButtonExpanded_Nor3:after, | |
.tocCollapsibleExpanded_FzA_ { | |
transform: none; | |
} | |
.tocCollapsible_BEWm { | |
background-color: var(--ifm-menu-color-background-active); | |
border-radius: var(--ifm-global-radius); | |
margin: 1rem 0; | |
} | |
.tocCollapsibleContent_FG8F > ul { | |
border-left: none; | |
border-top: 1px solid var(--ifm-color-emphasis-300); | |
font-size: 15px; | |
padding: 0.2rem 0; | |
} | |
.tocCollapsibleContent_FG8F ul li { | |
margin: 0.4rem 0.8rem; | |
} | |
.errorBoundaryError_rP1m { | |
color: red; | |
white-space: pre-wrap; | |
} | |
.errorBoundaryFallback_heah { | |
color: red; | |
padding: 0.55rem; | |
} | |
.anchorWithStickyNavbar_rB0w { | |
scroll-margin-top: calc(var(--ifm-navbar-height) + 0.5rem); | |
} | |
.anchorWithHideOnScrollNavbar_SSbb { | |
scroll-margin-top: 0.5rem; | |
} | |
.hash-link { | |
opacity: 0; | |
padding-left: 0.5rem; | |
transition: opacity var(--ifm-transition-fast); | |
user-select: none; | |
} | |
.hash-link:before { | |
content: "#"; | |
} | |
.cardContainer_Uewx { | |
--ifm-link-color: var(--ifm-color-emphasis-800); | |
--ifm-link-hover-color: var(--ifm-color-emphasis-700); | |
--ifm-link-hover-decoration: none; | |
border: 1px solid var(--ifm-color-emphasis-200); | |
box-shadow: 0 1.5px 3px 0 #00000026; | |
transition: all var(--ifm-transition-fast) ease; | |
transition-property: border, box-shadow; | |
} | |
.cardContainer_Uewx:hover { | |
border-color: var(--ifm-color-primary); | |
box-shadow: 0 3px 6px 0 #0003; | |
} | |
.cardTitle_dwRT { | |
font-size: 1.2rem; | |
} | |
.cardDescription_mCBT { | |
font-size: 0.8rem; | |
} | |
body:not(.navigation-with-keyboard) :not(input):focus { | |
outline: 0; | |
} | |
.footerLogoLink_CiM_ { | |
opacity: 0.5; | |
transition: opacity var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
} | |
.mainWrapper_PEsc { | |
display: flex; | |
flex: 1 0 auto; | |
flex-direction: column; | |
} | |
.docusaurus-mt-lg { | |
margin-top: 3rem; | |
} | |
#__docusaurus { | |
display: flex; | |
flex-direction: column; | |
min-height: 100%; | |
} | |
.test-marker-theme-layout_zWhB { | |
content: "theme-layout"; | |
} | |
.sidebar_P3nc { | |
max-height: calc(100vh - var(--ifm-navbar-height) - 2rem); | |
overflow-y: auto; | |
position: sticky; | |
top: calc(var(--ifm-navbar-height) + 2rem); | |
} | |
.sidebarItemTitle_VrjY { | |
font-size: var(--ifm-h3-font-size); | |
font-weight: var(--ifm-font-weight-bold); | |
} | |
.container_x5Un, | |
.sidebarItemList_OSkG { | |
font-size: 0.9rem; | |
} | |
.sidebarItem_WJ0y { | |
margin-top: 0.7rem; | |
} | |
.sidebarItemLink_Qrfg { | |
color: var(--ifm-font-color-base); | |
display: block; | |
} | |
.sidebarItemLinkActive_nUeK { | |
color: var(--ifm-color-primary) !important; | |
} | |
.yearGroupHeading_lECJ { | |
margin-bottom: 0.4rem; | |
margin-top: 1.6rem; | |
} | |
.yearGroupHeading_Ruz9 { | |
margin: 1rem 0.75rem 0.5rem; | |
} | |
[data-theme="dark"] .githubSvg_jqE4, | |
[data-theme="dark"] .xSvg_Q0g7 { | |
fill: var(--light); | |
} | |
[data-theme="light"] .githubSvg_jqE4, | |
[data-theme="light"] .xSvg_Q0g7 { | |
fill: var(--dark); | |
} | |
.authorSocials_tPnL { | |
align-items: center; | |
display: flex; | |
flex-wrap: wrap; | |
overflow: hidden; | |
line-clamp: 1; | |
-webkit-line-clamp: 1; | |
-webkit-box-orient: vertical; | |
} | |
.authorSocialLink_hEWM, | |
.authorSocials_tPnL { | |
line-height: 0; | |
} | |
.authorSocialLink_hEWM { | |
margin-right: 0.4rem; | |
} | |
.authorImage_p8ow { | |
--ifm-avatar-photo-size: 3.6rem; | |
} | |
.author-as-h1_Pd3R .authorImage_p8ow { | |
--ifm-avatar-photo-size: 7rem; | |
} | |
.author-as-h2_UaZL .authorImage_p8ow { | |
--ifm-avatar-photo-size: 5.4rem; | |
} | |
.authorDetails_dWdF { | |
align-items: flex-start; | |
display: flex; | |
flex-direction: column; | |
justify-content: space-around; | |
} | |
.authorName_Y8Hr { | |
display: flex; | |
flex-direction: row; | |
font-size: 1.1rem; | |
line-height: 1.1rem; | |
} | |
.author-as-h1_Pd3R .authorName_Y8Hr { | |
display: inline; | |
font-size: 2.4rem; | |
line-height: 2.4rem; | |
} | |
.author-as-h2_UaZL .authorName_Y8Hr { | |
display: inline; | |
font-size: 1.4rem; | |
line-height: 1.4rem; | |
} | |
.authorTitle_Slpj { | |
display: -webkit-box; | |
font-size: 0.8rem; | |
line-height: 1rem; | |
overflow: hidden; | |
line-clamp: 1; | |
-webkit-line-clamp: 1; | |
-webkit-box-orient: vertical; | |
} | |
.author-as-h1_Pd3R .authorTitle_Slpj { | |
font-size: 1.2rem; | |
line-height: 1.6rem; | |
} | |
.author-as-h2_UaZL .authorTitle_Slpj { | |
font-size: 1rem; | |
line-height: 1.3rem; | |
} | |
.authorBlogPostCount_FxU_ { | |
background: var(--ifm-color-secondary); | |
border-radius: var(--ifm-global-radius); | |
color: var(--ifm-color-black); | |
font-size: 0.8rem; | |
line-height: 1.2; | |
margin-left: 0.3rem; | |
padding: 0.1rem 0.4rem; | |
} | |
.authorCol_bvyx { | |
max-width: inherit !important; | |
} | |
.imageOnlyAuthorRow_L2DM, | |
.imageOnlyAuthorRow_WiD6 { | |
display: flex; | |
flex-flow: row wrap; | |
} | |
.indexCtas_hUA_, | |
.topBanner_JYZy { | |
align-items: center; | |
display: flex; | |
} | |
.imageOnlyAuthorCol_oyze, | |
.imageOnlyAuthorCol_uiac { | |
margin-left: 0.3rem; | |
margin-right: 0.3rem; | |
} | |
.searchQueryInput_S_pS, | |
.searchVersionInput_RZ74 { | |
background: var(--docsearch-searchbox-focus-background); | |
border: 2px solid var(--ifm-toc-border-color); | |
border-radius: var(--ifm-global-radius); | |
color: var(--docsearch-text-color); | |
font: var(--ifm-font-size-base) var(--ifm-font-family-base); | |
margin-bottom: 0.5rem; | |
padding: 0.8rem; | |
transition: border var(--ifm-transition-fast) ease; | |
width: 100%; | |
} | |
.searchQueryInput_S_pS:focus, | |
.searchVersionInput_RZ74:focus { | |
border-color: var(--docsearch-primary-color); | |
outline: 0; | |
} | |
.searchQueryInput_S_pS::placeholder { | |
color: var(--docsearch-muted-color); | |
} | |
.searchResultsColumn_dGxU { | |
font-size: 0.9rem; | |
font-weight: 700; | |
} | |
.algoliaLogo_nq6Q { | |
max-width: 150px; | |
} | |
.algoliaLogoPathFill_IWVH { | |
fill: var(--ifm-font-color-base); | |
} | |
.searchResultItem_jZK3 { | |
border-bottom: 1px solid var(--ifm-toc-border-color); | |
padding: 1rem 0; | |
} | |
.searchResultItemHeading_Nbvf { | |
font-weight: 400; | |
margin-bottom: 0; | |
} | |
.searchResultItemPath_wcJo { | |
color: var(--ifm-color-content-secondary); | |
font-size: 0.8rem; | |
--ifm-breadcrumb-separator-size-multiplier: 1; | |
} | |
.searchResultItemSummary_HbIg { | |
font-style: italic; | |
margin: 0.5rem 0 0; | |
} | |
.loadingSpinner_Jw0H { | |
animation: 1s linear infinite c; | |
border: 0.4em solid #eee; | |
border-radius: 50%; | |
border-top: 0.4em solid var(--ifm-color-primary); | |
height: 3rem; | |
margin: 0 auto; | |
width: 3rem; | |
} | |
@keyframes c { | |
to { | |
transform: rotate(1turn); | |
} | |
} | |
.loader_rYmk { | |
margin-top: 2rem; | |
} | |
.search-result-match { | |
background: #ffd78e40; | |
color: var(--docsearch-hit-color); | |
padding: 0.09em 0; | |
} | |
.tweet_x2tn { | |
font-size: 15px; | |
} | |
.tweetMeta_fAxr { | |
color: var(--ifm-color-emphasis-700); | |
} | |
.section_rC2D { | |
padding: 40px 0; | |
} | |
.imageOnlyAuthorCol_uiac [class^="image"], | |
.sectionAlt_XiGz, | |
.toggleButton_WvRg { | |
background-color: var(--ifm-color-emphasis-100); | |
} | |
.sectionInner_Y4r1 { | |
margin: 0 auto; | |
} | |
.featureImage_yA8i { | |
margin: 0 auto; | |
max-height: 128px; | |
width: auto; | |
} | |
.featureHeading_TLGJ { | |
font-size: var(--ifm-h3-font-size); | |
padding-top: 1rem; | |
} | |
.announcement_FsS0 { | |
font-size: 24px; | |
font-weight: 700; | |
margin: 0 auto; | |
padding: 48px; | |
text-align: center; | |
} | |
.announcementDark_tzC4 { | |
background-color: #20232a; | |
color: #fff; | |
--ifm-link-color: var(--ifm-color-primary); | |
} | |
.announcementInner_RsrQ { | |
margin: 0 auto; | |
max-width: 768px; | |
} | |
.topBanner_JYZy { | |
flex-direction: column; | |
font-size: 20px; | |
margin: 0 auto; | |
max-width: 900px; | |
padding: 30px 20px; | |
text-align: center; | |
} | |
.topBannerTitle_nAZL { | |
font-size: 54px; | |
font-weight: 700; | |
margin-bottom: 0.4rem; | |
} | |
.topBannerTitleText_Ferb { | |
background: linear-gradient(90deg, #833ab4, #fd1d1d 50%, #fcb045); | |
-webkit-background-clip: text; | |
background-clip: text; | |
-webkit-text-fill-color: #0000; | |
} | |
.topBannerTitleText_Ferb:hover { | |
border-bottom: 2px solid; | |
border-color: #9800ff; | |
} | |
html[data-theme="dark"] .topBannerTitleText_Ferb { | |
background: linear-gradient(90deg, #9800ff, #f62929 50%, #ffa908); | |
-webkit-background-clip: text; | |
background-clip: text; | |
-webkit-text-fill-color: #0000; | |
} | |
.topBannerDescription_fLgs { | |
font-size: 20px; | |
} | |
.hero_syme { | |
background-color: #2b3137; | |
padding: 48px; | |
} | |
.heroInner_VWeJ { | |
margin: 0 auto; | |
max-width: 1100px; | |
padding: 0 20px; | |
} | |
.heroProjectTagline_EkV5 { | |
color: #fff; | |
font-size: 60px; | |
margin: 0; | |
} | |
.heroTitleTextHtml_zYwv b, | |
.indexCtaTryNowButton_wlFR:hover, | |
.wordWrapButtonEnabled_TBIH .wordWrapButtonIcon_MQXS { | |
color: var(--ifm-color-primary); | |
} | |
@keyframes d { | |
0% { | |
opacity: 0; | |
transform: scale(0.1) rotate(30deg); | |
transform-origin: center bottom; | |
} | |
50% { | |
transform: rotate(-10deg); | |
} | |
70% { | |
transform: rotate(3deg); | |
} | |
to { | |
opacity: 1; | |
transform: scale(1); | |
} | |
} | |
.heroLogo_jM6J { | |
animation-duration: 2s; | |
animation-name: d; | |
float: right; | |
height: auto; | |
margin-top: 20px; | |
padding: 0 20px 20px; | |
} | |
.indexCtas_hUA_ { | |
--ifm-button-size-multiplier: 1.6; | |
flex-wrap: wrap; | |
margin-top: 24px; | |
} | |
.indexCtas_hUA_ a, | |
.indexCtas_hUA_ a:hover { | |
color: #000; | |
} | |
.indexCtas_hUA_ a:last-of-type { | |
margin: 20px 36px; | |
} | |
.tweetsSection_Fqsy > .col > * { | |
margin-bottom: 2rem; | |
} | |
.test-marker-site-index-page_LJ7R { | |
content: "site-index-page"; | |
} | |
.main_LiBd { | |
background: var(--site-color-feedback-background); | |
border-radius: 4px; | |
min-height: 500px; | |
padding: var(--ifm-spacing-horizontal); | |
} | |
.authorListItem_Y1Zl { | |
list-style-type: none; | |
margin-bottom: 2rem; | |
} | |
.searchBar_E3wW input { | |
border: 1px solid gray; | |
border-radius: 15px; | |
height: 30px; | |
padding: 10px; | |
} | |
.svg_d33c { | |
color: #e9669e; | |
display: inline-block; | |
height: 1em; | |
user-select: none; | |
width: 1em; | |
fill: currentColor; | |
} | |
.small_xkoK { | |
font-size: 1rem; | |
} | |
.medium_J4if { | |
font-size: 1.25rem; | |
} | |
.large_G4cM { | |
font-size: 1.8rem; | |
} | |
.showcaseCardImage_wjKy { | |
border-bottom: 2px solid var(--ifm-color-emphasis-200); | |
height: 150px; | |
overflow: hidden; | |
} | |
.showcaseCardHeader_H8b9 { | |
align-items: center; | |
display: flex; | |
margin-bottom: 12px; | |
} | |
.showcaseCardTitle_ZxTI { | |
flex: 1 1 auto; | |
margin-bottom: 0; | |
} | |
.showcaseCardTitle_ZxTI a { | |
background: linear-gradient( | |
var(--ifm-color-primary), | |
var(--ifm-color-primary) | |
) | |
0 100%/0 1px no-repeat; | |
text-decoration: none; | |
transition: background-size 0.2s ease-out; | |
} | |
.showcaseCardTitle_ZxTI a:not(:focus):hover { | |
background-size: 100% 1px; | |
} | |
.showcaseCardHeader_H8b9, | |
.showcaseCardTitle_ZxTI { | |
margin-right: 0.25rem; | |
} | |
.showcaseCardSrcBtn_F6t0 { | |
border: none; | |
margin-left: 6px; | |
padding-left: 12px; | |
padding-right: 12px; | |
} | |
.showcaseCardSrcBtn_F6t0:focus-visible { | |
background-color: var(--ifm-color-secondary-dark); | |
} | |
[data-theme="dark"] .showcaseCardSrcBtn_F6t0 { | |
background-color: var(--ifm-color-emphasis-200) !important; | |
color: inherit; | |
} | |
[data-theme="dark"] .showcaseCardSrcBtn_F6t0:hover { | |
background-color: var(--ifm-color-emphasis-300) !important; | |
} | |
.showcaseCardBody_bvOP { | |
font-size: smaller; | |
line-height: 1.66; | |
} | |
.cardFooter_Xq1d { | |
display: flex; | |
flex-wrap: wrap; | |
} | |
.tag_jo6t { | |
align-items: center; | |
border: 1px solid var(--ifm-color-secondary-darkest); | |
border-radius: 12px; | |
cursor: default; | |
display: inline-flex; | |
font-size: 0.675rem; | |
margin-bottom: 6px !important; | |
margin-right: 6px; | |
} | |
.headingButtons_DX79 > *, | |
.headingText_iR0x > span, | |
.tag_jo6t .textLabel_lQex { | |
margin-left: 8px; | |
} | |
.tag_jo6t .colorLabel_D_Fl { | |
border-radius: 50%; | |
height: 7px; | |
margin-left: 6px; | |
margin-right: 6px; | |
width: 7px; | |
} | |
.cardList_kMxr { | |
display: grid; | |
gap: 24px; | |
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); | |
} | |
.showcaseFavorite_LFys { | |
background-color: #f6fdfd; | |
padding-bottom: 2rem; | |
padding-top: 2rem; | |
} | |
html[data-theme="dark"] .showcaseFavorite_LFys { | |
background-color: #232525; | |
} | |
.checkboxLabel_vxMa:hover { | |
box-shadow: 0 0 2px 1px var(--ifm-color-secondary-darkest); | |
opacity: 1; | |
} | |
input[type="checkbox"] + .checkboxLabel_vxMa { | |
align-items: center; | |
border: 2px solid var(--ifm-color-secondary-darkest); | |
border-radius: 4px; | |
cursor: pointer; | |
display: flex; | |
line-height: 1.5; | |
opacity: 0.85; | |
padding: 0.275rem 0.8rem; | |
transition: opacity 0.2s ease-out; | |
} | |
input:focus-visible + .checkboxLabel_vxMa { | |
outline: currentColor solid 2px; | |
} | |
input:checked + .checkboxLabel_vxMa { | |
background-color: #94e1d040; | |
border: 2px solid var(--ifm-color-primary-darkest); | |
opacity: 0.9; | |
} | |
input:checked + .checkboxLabel_vxMa:hover { | |
box-shadow: 0 0 2px 1px var(--ifm-color-primary-dark); | |
opacity: 0.75; | |
} | |
html[data-theme="dark"] input:checked + .checkboxLabel_vxMa { | |
background-color: #94e1d01a; | |
} | |
.checkboxLabel_DiOL { | |
--height: 25px; | |
--width: 80px; | |
--border: 2px; | |
border: var(--border) solid var(--ifm-color-primary-darkest); | |
border-radius: var(--height); | |
box-shadow: var(--ifm-global-shadow-md); | |
cursor: pointer; | |
display: flex; | |
height: var(--height); | |
justify-content: space-around; | |
opacity: 0.75; | |
position: relative; | |
transition: opacity var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
width: var(--width); | |
} | |
.codeBlockContainer_jDV4, | |
.playgroundContainer_6Ior { | |
box-shadow: var(--ifm-global-shadow-lw); | |
margin-bottom: var(--ifm-leading); | |
} | |
.checkboxLabel_DiOL:hover { | |
box-shadow: | |
var(--ifm-global-shadow-md), | |
0 0 2px 1px var(--ifm-color-primary-dark); | |
opacity: 1; | |
} | |
.checkboxLabel_DiOL:after { | |
background-color: var(--ifm-color-primary-darkest); | |
border-radius: var(--height); | |
content: ""; | |
height: 100%; | |
inset: 0; | |
position: absolute; | |
transform: translateX(calc(var(--width) / 2 - var(--border))); | |
transition: transform var(--ifm-transition-fast) | |
var(--ifm-transition-timing-default); | |
width: calc(var(--width) / 2); | |
} | |
input:focus-visible ~ .checkboxLabel_DiOL:after { | |
outline: currentColor solid 2px; | |
} | |
.checkboxLabel_DiOL > * { | |
color: inherit; | |
font-size: 0.8rem; | |
transition: opacity 0.15s ease-in 50ms; | |
} | |
input:checked ~ .checkboxLabel_DiOL:after { | |
transform: translateX(calc(var(--border) * -1)); | |
} | |
.headingRow_DGKw { | |
align-items: center; | |
display: flex; | |
justify-content: space-between; | |
} | |
.headingText_iR0x { | |
align-items: baseline; | |
display: flex; | |
} | |
.tagList_Ku_M { | |
align-items: center; | |
display: flex; | |
flex-wrap: wrap; | |
} | |
.tagListItem_aQcS { | |
font-size: 0.8rem; | |
height: 32px; | |
margin-right: 0.5rem; | |
margin-top: 0.5rem; | |
-webkit-user-select: none; | |
user-select: none; | |
white-space: nowrap; | |
} | |
.tagListItem_aQcS:last-child { | |
margin-right: 0; | |
} | |
.playgroundContainer_6Ior { | |
border-radius: var(--ifm-global-radius); | |
overflow: hidden; | |
} | |
.playgroundHeader_Tvsk { | |
background: var(--ifm-color-emphasis-200); | |
color: var(--ifm-color-content); | |
font-size: var(--ifm-code-font-size); | |
font-weight: 700; | |
letter-spacing: 0.08rem; | |
padding: 0.75rem; | |
} | |
.playgroundHeader_Tvsk:first-of-type { | |
background: var(--ifm-color-emphasis-600); | |
color: var(--ifm-color-content-inverse); | |
} | |
.playgroundEditor_TySg { | |
direction: ltr; | |
font: var(--ifm-code-font-size) / var(--ifm-pre-line-height) | |
var(--ifm-font-family-monospace) !important; | |
} | |
.playgroundPreview_mApW { | |
background-color: var(--ifm-pre-background); | |
padding: 1rem; | |
} | |
.buttonGroup_cUGO button, | |
.codeBlockContainer_jDV4 { | |
background: var(--prism-background-color); | |
color: var(--prism-color); | |
} | |
.codeBlockContainer_jDV4 { | |
border-radius: var(--ifm-code-border-radius); | |
} | |
.codeBlockContent_vx7S { | |
border-radius: inherit; | |
direction: ltr; | |
position: relative; | |
} | |
.codeBlockTitle_bdru { | |
border-bottom: 1px solid var(--ifm-color-emphasis-300); | |
border-top-left-radius: inherit; | |
border-top-right-radius: inherit; | |
font-size: var(--ifm-code-font-size); | |
font-weight: 500; | |
padding: 0.75rem var(--ifm-pre-padding); | |
} | |
.codeBlock_Gebt { | |
--ifm-pre-background: var(--prism-background-color); | |
margin: 0; | |
padding: 0; | |
} | |
.codeBlockTitle_bdru + .codeBlockContent_vx7S .codeBlock_Gebt { | |
border-top-left-radius: 0; | |
border-top-right-radius: 0; | |
} | |
.codeBlockLines_FJaf { | |
float: left; | |
font: inherit; | |
min-width: 100%; | |
padding: var(--ifm-pre-padding); | |
} | |
.codeBlockLinesWithNumbering_FU9Q { | |
display: table; | |
padding: var(--ifm-pre-padding) 0; | |
} | |
.buttonGroup_cUGO { | |
column-gap: 0.2rem; | |
display: flex; | |
position: absolute; | |
right: calc(var(--ifm-pre-padding) / 2); | |
top: calc(var(--ifm-pre-padding) / 2); | |
} | |
.buttonGroup_cUGO button { | |
align-items: center; | |
border: 1px solid var(--ifm-color-emphasis-300); | |
border-radius: var(--ifm-global-radius); | |
display: flex; | |
line-height: 0; | |
opacity: 0; | |
padding: 0.4rem; | |
transition: opacity var(--ifm-transition-fast) ease-in-out; | |
} | |
.buttonGroup_cUGO button:focus-visible, | |
.buttonGroup_cUGO button:hover { | |
opacity: 1 !important; | |
} | |
.theme-code-block:hover .buttonGroup_cUGO button { | |
opacity: 0.4; | |
} | |
:where(:root) { | |
--docusaurus-highlighted-code-line-bg: #484d5b; | |
} | |
:where([data-theme="dark"]) { | |
--docusaurus-highlighted-code-line-bg: #646464; | |
} | |
.theme-code-block-highlighted-line { | |
background-color: var(--docusaurus-highlighted-code-line-bg); | |
display: block; | |
margin: 0 calc(var(--ifm-pre-padding) * -1); | |
padding: 0 var(--ifm-pre-padding); | |
} | |
.codeLine_qRmp { | |
counter-increment: a; | |
display: table-row; | |
} | |
.codeLineNumber_dS_J { | |
background: var(--ifm-pre-background); | |
display: table-cell; | |
left: 0; | |
overflow-wrap: normal; | |
padding: 0 var(--ifm-pre-padding); | |
position: sticky; | |
text-align: right; | |
width: 1%; | |
} | |
.codeLineNumber_dS_J:before { | |
content: counter(a); | |
opacity: 0.4; | |
} | |
.codeLineContent_XF5l { | |
padding-right: var(--ifm-pre-padding); | |
} | |
.theme-code-block:hover .copyButtonCopied_OkN_ { | |
opacity: 1 !important; | |
} | |
.copyButtonIcons_OqsO { | |
height: 1.125rem; | |
position: relative; | |
width: 1.125rem; | |
} | |
.copyButtonIcon_PgCn, | |
.copyButtonSuccessIcon_bsQG { | |
left: 0; | |
position: absolute; | |
top: 0; | |
fill: currentColor; | |
height: inherit; | |
opacity: inherit; | |
transition: all var(--ifm-transition-fast) ease; | |
width: inherit; | |
} | |
.copyButtonSuccessIcon_bsQG { | |
color: #00d600; | |
left: 50%; | |
opacity: 0; | |
top: 50%; | |
transform: translate(-50%, -50%) scale(0.33); | |
} | |
.copyButtonCopied_OkN_ .copyButtonIcon_PgCn { | |
opacity: 0; | |
transform: scale(0.33); | |
} | |
.copyButtonCopied_OkN_ .copyButtonSuccessIcon_bsQG { | |
opacity: 1; | |
transform: translate(-50%, -50%) scale(1); | |
transition-delay: 75ms; | |
} | |
.tag_Nd8t { | |
border: 1px solid var(--docusaurus-tag-list-border); | |
transition: border var(--ifm-transition-fast); | |
} | |
.tag_Nd8t:hover { | |
--docusaurus-tag-list-border: var(--ifm-link-color); | |
text-decoration: none; | |
} | |
.tagRegular_TiLs { | |
border-radius: var(--ifm-global-radius); | |
font-size: 90%; | |
padding: 0.2rem 0.5rem 0.3rem; | |
} | |
.tagWithCount_AQg7 { | |
align-items: center; | |
border-left: 0; | |
display: flex; | |
padding: 0 0.5rem 0 1rem; | |
position: relative; | |
} | |
.tagWithCount_AQg7:after, | |
.tagWithCount_AQg7:before { | |
border: 1px solid var(--docusaurus-tag-list-border); | |
content: ""; | |
position: absolute; | |
top: 50%; | |
transition: inherit; | |
} | |
.tagWithCount_AQg7:before { | |
border-bottom: 0; | |
border-right: 0; | |
height: 1.18rem; | |
right: 100%; | |
transform: translate(50%, -50%) rotate(-45deg); | |
width: 1.18rem; | |
} | |
.tagWithCount_AQg7:after { | |
border-radius: 50%; | |
height: 0.5rem; | |
left: 0; | |
transform: translateY(-50%); | |
width: 0.5rem; | |
} | |
.tagWithCount_AQg7 span { | |
background: var(--ifm-color-secondary); | |
border-radius: var(--ifm-global-radius); | |
color: var(--ifm-color-black); | |
font-size: 0.7rem; | |
line-height: 1.2; | |
margin-left: 0.3rem; | |
padding: 0.1rem 0.4rem; | |
} | |
.tag_SyQ5 { | |
display: inline-block; | |
margin: 0.5rem 0.5rem 0 1rem; | |
} | |
.wordWrapButtonIcon_MQXS { | |
height: 1.2rem; | |
width: 1.2rem; | |
} | |
.details_Nokh { | |
--docusaurus-details-summary-arrow-size: 0.38rem; | |
--docusaurus-details-transition: transform 200ms ease; | |
--docusaurus-details-decoration-color: grey; | |
} | |
.details_Nokh > summary { | |
cursor: pointer; | |
list-style: none; | |
padding-left: 1rem; | |
position: relative; | |
} | |
.details_Nokh > summary::-webkit-details-marker { | |
display: none; | |
} | |
.details_Nokh > summary:before { | |
border-color: #0000 #0000 #0000 var(--docusaurus-details-decoration-color); | |
border-style: solid; | |
border-width: var(--docusaurus-details-summary-arrow-size); | |
content: ""; | |
left: 0; | |
position: absolute; | |
top: 0.45rem; | |
transform: rotate(0); | |
transform-origin: calc(var(--docusaurus-details-summary-arrow-size) / 2) 50%; | |
transition: var(--docusaurus-details-transition); | |
} | |
.collapsibleContent_EoA1 { | |
border-top: 1px solid var(--docusaurus-details-decoration-color); | |
margin-top: 1rem; | |
padding-top: 1rem; | |
} | |
.details_Cn_P { | |
--docusaurus-details-decoration-color: var(--ifm-alert-border-color); | |
--docusaurus-details-transition: transform var(--ifm-transition-fast) ease; | |
border: 1px solid var(--ifm-alert-border-color); | |
margin: 0 0 var(--ifm-spacing-vertical); | |
} | |
.tags_rTaS, | |
.tweetQuote_h8Rz p { | |
display: inline; | |
} | |
.tag_l5va { | |
display: inline-block; | |
margin: 0 0.4rem 0.5rem 0; | |
} | |
.iconEdit_IMw_ { | |
margin-right: 0.3em; | |
vertical-align: sub; | |
} | |
.admonitionIcon_rXq6, | |
.color_mVUL { | |
display: inline-block; | |
vertical-align: middle; | |
} | |
.image_oRbT { | |
height: 100%; | |
object-fit: cover; | |
width: 100%; | |
} | |
.containsTaskList_k9gM { | |
list-style: none; | |
} | |
:not(.containsTaskList_k9gM > li) > .containsTaskList_k9gM { | |
padding-left: 0; | |
} | |
.authorCol_mDBc { | |
flex-grow: 1 !important; | |
max-width: inherit !important; | |
} | |
.toggleButton_WvRg { | |
border-radius: 50%; | |
height: var(--ifm-avatar-photo-size); | |
margin-left: 0.3rem; | |
margin-right: 0.3rem; | |
width: var(--ifm-avatar-photo-size); | |
} | |
.toggleButtonIconExpanded_ERxv { | |
transform: rotate(180deg); | |
} | |
.img_vXGZ { | |
height: auto; | |
} | |
.changelogItemTitleList_sueG { | |
font-size: 2rem; | |
} | |
.admonition_o5H7 { | |
margin-bottom: 1em; | |
} | |
.admonitionHeading_FzoX { | |
font: var(--ifm-heading-font-weight) var(--ifm-h5-font-size) / | |
var(--ifm-heading-line-height) var(--ifm-heading-font-family); | |
} | |
.admonitionHeading_FzoX:not(:last-child) { | |
margin-bottom: 0.3rem; | |
} | |
.admonitionHeading_FzoX code { | |
text-transform: none; | |
} | |
.admonitionIcon_rXq6 { | |
margin-right: 0.4em; | |
} | |
.admonitionIcon_rXq6 svg { | |
display: inline-block; | |
height: 1.6em; | |
width: 1.6em; | |
fill: var(--ifm-alert-foreground-color); | |
} | |
.color_mVUL { | |
border-radius: 0.5rem; | |
height: 2rem; | |
width: 2rem; | |
} | |
.input_HUC3 { | |
font-size: var(--ifm-font-size-base); | |
padding: 0.5rem; | |
} | |
.colorInput_C1YB, | |
.input_HUC3 { | |
border-color: var(--ifm-color-content-secondary); | |
border-radius: var(--ifm-global-radius); | |
border-style: solid; | |
border-width: var(--ifm-global-border-width); | |
} | |
.colorInput_C1YB { | |
height: 2.25rem; | |
position: relative; | |
top: 7px; | |
} | |
.lastUpdated_OHCJ { | |
font-size: smaller; | |
font-style: italic; | |
margin-top: 0.2rem; | |
} | |
.tweetQuote_h8Rz { | |
margin: 3rem 1rem; | |
padding: 0; | |
--ifm-link-color: var(--ifm-color-emphasis-900); | |
--ifm-link-hover-color: var(--ifm-color-emphasis-900); | |
} | |
.tweetQuote_h8Rz blockquote { | |
border: none; | |
font-size: 1.2rem; | |
font-weight: 200; | |
line-height: 1.4; | |
margin-bottom: 0.6rem; | |
position: relative; | |
text-align: center; | |
} | |
.tweetQuote_h8Rz blockquote:after, | |
.tweetQuote_h8Rz blockquote:before { | |
color: #f1efe6; | |
font-family: cursive; | |
font-size: 6rem; | |
height: 3rem; | |
line-height: 1; | |
position: absolute; | |
width: 3rem; | |
} | |
.tweetQuote_h8Rz blockquote:before { | |
content: "“"; | |
left: -2.4rem; | |
top: -1.1rem; | |
} | |
.tweetQuote_h8Rz blockquote:after { | |
bottom: -1.1rem; | |
content: "”"; | |
right: -1.6rem; | |
} | |
[data-theme="dark"] .tweetQuote_h8Rz blockquote:after, | |
[data-theme="dark"] .tweetQuote_h8Rz blockquote:before { | |
color: #3b3b3b; | |
} | |
.tweetQuote_h8Rz .avatarImg_b51M { | |
height: 42px; | |
width: 42px; | |
} | |
.tableOfContents_RLlU { | |
max-height: calc(100vh - var(--ifm-navbar-height) - 2rem); | |
overflow-y: auto; | |
position: sticky; | |
top: calc(var(--ifm-navbar-height) + 1rem); | |
} | |
.rss_fOa_, | |
.rss_fOa_:hover { | |
color: #f26522; | |
} | |
.x_RTSd, | |
.x_RTSd:hover { | |
color: #1da1f2; | |
} | |
.breadcrumbHomeIcon_uaSn { | |
height: 1.1rem; | |
position: relative; | |
top: 1px; | |
vertical-align: top; | |
width: 1.1rem; | |
} | |
.breadcrumbsContainer_Wvrh { | |
--ifm-breadcrumb-size-multiplier: 0.8; | |
margin-bottom: 0.8rem; | |
} | |
.title_tRie { | |
--ifm-h1-font-size: 3rem; | |
margin-bottom: calc(var(--ifm-leading) * 1.25); | |
} | |
.footerTip_UBUV { | |
font-size: 0.8rem; | |
margin-top: var(--ifm-paragraph-margin-bottom); | |
} | |
.mdxPageWrapper_bWhk { | |
justify-content: center; | |
} | |
@media screen and (min-width: 800px) { | |
.nav_sWk6 { | |
align-items: center; | |
background-color: #18191a; | |
border-right: 1px solid #606770; | |
flex-direction: column; | |
float: left; | |
height: 100vh; | |
justify-content: flex-start; | |
padding-top: 20px; | |
width: 200px; | |
} | |
.navlink__gTJ { | |
margin-top: 20px; | |
text-align: left; | |
width: 80%; | |
} | |
.container_tECh { | |
float: right; | |
padding-top: 40px; | |
width: calc(100% - 200px); | |
} | |
} | |
@media (min-width: 997px) { | |
.collapseSidebarButton_PUyN, | |
.expandButton_ockD { | |
background-color: var(--docusaurus-collapse-button-bg); | |
} | |
:root { | |
--docusaurus-announcement-bar-height: 30px; | |
} | |
.announcementBarClose_UFLi, | |
.announcementBarPlaceholder_Lqfg { | |
flex-basis: 50px; | |
} | |
.collapseSidebarButton_PUyN { | |
border: 1px solid var(--ifm-toc-border-color); | |
border-radius: 0; | |
bottom: 0; | |
display: block !important; | |
height: 40px; | |
position: sticky; | |
} | |
.collapseSidebarButtonIcon_DI0B { | |
margin-top: 4px; | |
transform: rotate(180deg); | |
} | |
.expandButtonIcon_H1n0, | |
[dir="rtl"] .collapseSidebarButtonIcon_DI0B { | |
transform: rotate(0); | |
} | |
.collapseSidebarButton_PUyN:focus, | |
.collapseSidebarButton_PUyN:hover, | |
.expandButton_ockD:focus, | |
.expandButton_ockD:hover { | |
background-color: var(--docusaurus-collapse-button-bg-hover); | |
} | |
.menuHtmlItem_t1vY { | |
padding: var(--ifm-menu-link-padding-vertical) | |
var(--ifm-menu-link-padding-horizontal); | |
} | |
.menu_rWGR { | |
flex-grow: 1; | |
padding: 0.5rem; | |
} | |
@supports (scrollbar-gutter: stable) { | |
.menu_rWGR { | |
padding: 0.5rem 0 0.5rem 0.5rem; | |
scrollbar-gutter: stable; | |
} | |
} | |
.menuWithAnnouncementBar_Pf08 { | |
margin-bottom: var(--docusaurus-announcement-bar-height); | |
} | |
.sidebar_vtcw { | |
display: flex; | |
flex-direction: column; | |
height: 100%; | |
padding-top: var(--ifm-navbar-height); | |
width: var(--doc-sidebar-width); | |
} | |
.sidebarWithHideableNavbar_tZ9s { | |
padding-top: 0; | |
} | |
.sidebarHidden_PrHU { | |
opacity: 0; | |
visibility: hidden; | |
} | |
.sidebarLogo_UK0N { | |
align-items: center; | |
color: inherit !important; | |
display: flex !important; | |
margin: 0 var(--ifm-navbar-padding-horizontal); | |
max-height: var(--ifm-navbar-height); | |
min-height: var(--ifm-navbar-height); | |
text-decoration: none !important; | |
} | |
.sidebarLogo_UK0N img { | |
height: 2rem; | |
margin-right: 0.5rem; | |
} | |
.expandButton_ockD { | |
align-items: center; | |
display: flex; | |
height: 100%; | |
justify-content: center; | |
position: absolute; | |
right: 0; | |
top: 0; | |
transition: background-color var(--ifm-transition-fast) ease; | |
width: 100%; | |
} | |
[dir="rtl"] .expandButtonIcon_H1n0 { | |
transform: rotate(180deg); | |
} | |
.docSidebarContainer_S51O { | |
border-right: 1px solid var(--ifm-toc-border-color); | |
clip-path: inset(0); | |
display: block; | |
margin-top: calc(var(--ifm-navbar-height) * -1); | |
transition: width var(--ifm-transition-fast) ease; | |
width: var(--doc-sidebar-width); | |
will-change: width; | |
} | |
.docSidebarContainerHidden_gbDM { | |
cursor: pointer; | |
width: var(--doc-sidebar-hidden-width); | |
} | |
.sidebarViewport_K3q9 { | |
height: 100%; | |
max-height: 100vh; | |
position: sticky; | |
top: 0; | |
} | |
.docMainContainer_EfwR { | |
flex-grow: 1; | |
max-width: calc(100% - var(--doc-sidebar-width)); | |
} | |
.docMainContainerEnhanced_r8nV { | |
max-width: calc(100% - var(--doc-sidebar-hidden-width)); | |
} | |
.docItemWrapperEnhanced_nA1F { | |
max-width: calc( | |
var(--ifm-container-width) + var(--doc-sidebar-width) | |
) !important; | |
} | |
.navbarSearchContainer_dDCC { | |
padding: var(--ifm-navbar-item-padding-vertical) | |
var(--ifm-navbar-item-padding-horizontal); | |
} | |
.tweetsSection_Fqsy > .col > :last-child { | |
margin-bottom: 0; | |
} | |
.lastUpdated_OHCJ { | |
text-align: right; | |
} | |
.tocMobile_NSfz { | |
display: none; | |
} | |
.docItemCol_n6xZ, | |
.generatedIndexPage_hs4p { | |
max-width: 75% !important; | |
} | |
.list_ZO3j article:nth-last-child(-n + 2) { | |
margin-bottom: 0 !important; | |
} | |
} | |
@media (min-width: 1440px) { | |
.container { | |
max-width: var(--ifm-container-width-xl); | |
} | |
} | |
@media (max-width: 996px) { | |
.col { | |
--ifm-col-width: 100%; | |
flex-basis: var(--ifm-col-width); | |
margin-left: 0; | |
} | |
.footer { | |
--ifm-footer-padding-horizontal: 0; | |
} | |
.colorModeToggle_UolE, | |
.footer__link-separator, | |
.navbar__item, | |
.sidebar_P3nc, | |
.tableOfContents_RLlU { | |
display: none; | |
} | |
.footer__col { | |
margin-bottom: calc(var(--ifm-spacing-vertical) * 3); | |
} | |
.footer__link-item { | |
display: block; | |
width: max-content; | |
} | |
.hero { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
.navbar > .container, | |
.navbar > .container-fluid { | |
padding: 0; | |
} | |
.navbar__toggle { | |
display: inherit; | |
} | |
.navbar__search-input { | |
width: 9rem; | |
} | |
.pills--block, | |
.tabs--block { | |
flex-direction: column; | |
} | |
.navbarSearchContainer_dDCC { | |
position: absolute; | |
right: var(--ifm-navbar-padding-horizontal); | |
} | |
.tweetsSection_Fqsy > .col:last-child > :last-child { | |
margin-bottom: 0; | |
} | |
.docItemContainer_oucX { | |
padding: 0 0.3rem; | |
} | |
} | |
@media only screen and (max-width: 996px) { | |
.searchQueryColumn_ourN, | |
.searchResultsColumn_dGxU { | |
max-width: 60% !important; | |
} | |
.searchLogoColumn_v5Xz, | |
.searchVersionColumn_n2Lb { | |
max-width: 40% !important; | |
} | |
.searchLogoColumn_v5Xz { | |
padding-left: 0 !important; | |
} | |
} | |
@media (max-width: 768px) { | |
.DocSearch-Button-Keys, | |
.DocSearch-Button-Placeholder, | |
.DocSearch-Commands, | |
.DocSearch-Hit-Tree { | |
display: none; | |
} | |
:root { | |
--docsearch-spacing: 10px; | |
--docsearch-footer-height: 40px; | |
} | |
.DocSearch-Dropdown { | |
height: 100%; | |
max-height: calc( | |
var(--docsearch-vh, 1vh) * 100 - var(--docsearch-searchbox-height) - | |
var(--docsearch-spacing) - var(--docsearch-footer-height) | |
); | |
} | |
.DocSearch-Container { | |
height: 100vh; | |
height: -webkit-fill-available; | |
height: calc(var(--docsearch-vh, 1vh) * 100); | |
position: absolute; | |
} | |
.DocSearch-Footer { | |
border-radius: 0; | |
bottom: 0; | |
position: absolute; | |
} | |
.DocSearch-Hit-content-wrapper { | |
display: flex; | |
position: relative; | |
width: 80%; | |
} | |
.DocSearch-Modal { | |
border-radius: 0; | |
box-shadow: none; | |
height: 100vh; | |
height: -webkit-fill-available; | |
height: calc(var(--docsearch-vh, 1vh) * 100); | |
margin: 0; | |
max-width: 100%; | |
width: 100%; | |
} | |
.DocSearch-Cancel { | |
appearance: none; | |
background: none; | |
border: 0; | |
color: var(--docsearch-highlight-color); | |
cursor: pointer; | |
display: inline-block; | |
flex: none; | |
font: inherit; | |
font-size: 1em; | |
font-weight: 500; | |
margin-left: var(--docsearch-spacing); | |
outline: 0; | |
overflow: hidden; | |
padding: 0; | |
-webkit-user-select: none; | |
user-select: none; | |
white-space: nowrap; | |
} | |
} | |
@media only screen and (max-width: 768px) { | |
.siteLink_IglZ { | |
font-size: 12px; | |
padding: 0 8px; | |
} | |
.topBannerTitle_nAZL { | |
font-size: 40px; | |
} | |
.topBannerDescription_fLgs { | |
font-size: 16px; | |
white-space: normal; | |
} | |
.hero_syme { | |
padding-left: 20px; | |
padding-right: 20px; | |
} | |
.heroInner_VWeJ { | |
padding: 0; | |
} | |
.heroProjectTagline_EkV5 { | |
font-size: 36px; | |
text-align: center; | |
} | |
.heroLogo_jM6J { | |
display: block; | |
float: none; | |
margin: 0 auto; | |
} | |
.indexCtas_hUA_ { | |
justify-content: center; | |
} | |
.indexCtas_hUA_ a { | |
margin: 20px 36px; | |
} | |
.indexCtasGitHubButton_sMIS { | |
display: none; | |
} | |
} | |
@media (max-width: 576px) { | |
.markdown h1:first-child { | |
--ifm-h1-font-size: 2rem; | |
} | |
.markdown > h2 { | |
--ifm-h2-font-size: 1.5rem; | |
} | |
.markdown > h3 { | |
--ifm-h3-font-size: 1.25rem; | |
} | |
.title_UBNu { | |
font-size: 2rem; | |
} | |
} | |
@media screen and (max-width: 576px) { | |
.searchQueryColumn_ourN { | |
max-width: 100% !important; | |
} | |
.searchVersionColumn_n2Lb { | |
max-width: 100% !important; | |
padding-left: var(--ifm-spacing-horizontal) !important; | |
} | |
} | |
@media screen and (max-width: 500px) { | |
.popup_EH26 { | |
bottom: 0; | |
right: 0; | |
width: 100%; | |
} | |
} | |
@media (-webkit-min-device-pixel-ratio: 0) { | |
.focusRing___1airF { | |
outline-color: -webkit-focus-ring-color; | |
outline-style: auto; | |
} | |
} | |
@media (hover: hover) { | |
.backToTopButton_PuQw:hover { | |
background-color: var(--ifm-color-emphasis-300); | |
} | |
} | |
@media (pointer: fine) { | |
.thin-scrollbar { | |
scrollbar-width: thin; | |
} | |
.thin-scrollbar::-webkit-scrollbar { | |
height: var(--ifm-scrollbar-size); | |
width: var(--ifm-scrollbar-size); | |
} | |
.thin-scrollbar::-webkit-scrollbar-track { | |
background: var(--ifm-scrollbar-track-background-color); | |
border-radius: 10px; | |
} | |
.thin-scrollbar::-webkit-scrollbar-thumb { | |
background: var(--ifm-scrollbar-thumb-background-color); | |
border-radius: 10px; | |
} | |
.thin-scrollbar::-webkit-scrollbar-thumb:hover { | |
background: var(--ifm-scrollbar-thumb-hover-background-color); | |
} | |
} | |
@media (prefers-reduced-motion: reduce) { | |
:root { | |
--ifm-transition-fast: 0ms; | |
--ifm-transition-slow: 0ms; | |
} | |
[data-rmiz-modal-img], | |
[data-rmiz-modal-overlay] { | |
transition-duration: 0.01ms !important; | |
} | |
} | |
@media screen and (prefers-reduced-motion: reduce) { | |
.DocSearch-Reset { | |
animation: none; | |
appearance: none; | |
background: none; | |
border: 0; | |
border-radius: 50%; | |
color: var(--docsearch-icon-color); | |
cursor: pointer; | |
right: 0; | |
stroke-width: var(--docsearch-icon-stroke-width); | |
} | |
.DocSearch-Hit--deleting, | |
.DocSearch-Hit--favoriting { | |
transition: none; | |
} | |
.DocSearch-Hit-action-button:focus, | |
.DocSearch-Hit-action-button:hover { | |
background: #0003; | |
transition: none; | |
} | |
} | |
@media print { | |
.announcementBar_cTOO, | |
.footer, | |
.menu, | |
.navbar, | |
.pagination-nav, | |
.table-of-contents, | |
.tocMobile_NSfz { | |
display: none; | |
} | |
.tabs { | |
page-break-inside: avoid; | |
} | |
.codeBlockLines_FJaf { | |
white-space: pre-wrap; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment