| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /**
- * Any CSS included here will be global. The classic template
- * bundles Infima by default. Infima is a CSS framework designed to
- * work well for content-centric websites.
- */
- @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
- :root {
- --ifm-font-family-base: "Inter"
- }
- /* You can override the default Infima variables here. */
- :root {
- /* Colors */
- --ifm-color-primary: #17c1ff;
- --ifm-color-primary-dark: #008ece;
- --ifm-color-primary-darker: #0072a7;
- --ifm-color-primary-darkest: #084f72;
- --ifm-color-primary-light: #78daff;
- --ifm-color-primary-lighter: #b8eaff;
- --ifm-color-primary-lightest: #dff3ff;
- --ifm-navbar-background-color: #ffffff11;
- --navbar-background-color-mobile: #ffffffee;
- --ifm-heading-color: #000212;
- --ifm-color-content: var(--ifm-color-emphasis-800);
- --ifm-code-font-size: 95%;
- --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
- --color-graphql-comment: #47954d;
- --color-graphql-identifier: rgb(227, 17, 108);
- --color-members-border: var(--ifm-color-secondary);
- --docusaurus-highlighted-code-line-bg: #e0f1ff;
- --ifm-menu-link-sublist-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"><path stroke-linecap="round" stroke-linejoin="round" d="M4.5 15.75l7.5-7.5 7.5 7.5" /></svg>');
- --body-background: white;
- --ifm-footer-background-color: #edf2f5;
- --color-docsearch-border: #b7b7c3;
- /* Fonts */
- --ifm-heading-font-family: 'Plus Jakarta Sans', var(--ifm-font-family-base);
- --ifm-heading-font-weight: 700;
- }
- /* For readability concerns, you should choose a lighter palette in dark mode. */
- html[data-theme='dark']{
- --ifm-background-color: #000212;
- --ifm-heading-color: #ffffff;
- --ifm-navbar-background-color: transparent;
- --navbar-background-color-mobile: transparent;
- --ifm-card-background-color: transparent;
- --ifm-color-content: hsla(0,0%,100%,.7);
- --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
- --color-graphql-comment: #6ea372;
- --color-graphql-identifier: rgb(255, 121, 198);
- --color-members-border: #333;
- --docusaurus-highlighted-code-line-bg: rgba(15, 71, 117, 0.5);
- --body-background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 208, 255, 0.3), transparent);
- --ifm-footer-background-color: var(--ifm-background-color);
- --color-docsearch-border: #232347;
- --ifm-footer-title-color: #ffffff;
- }
- html[data-theme='light'] {
- --ifm-background-color: #ffffff;
- }
- h1, h2, h3, h4, h5, h6 {
- letter-spacing: -0.05rem;
- }
- .markdown h2:not(:first-of-type) {
- --ifm-h2-vertical-rhythm-top: 5;
- }
- .markdown img {
- border-radius: 4px;
- }
- .members-wrapper {
- border-left: 1px solid var(--color-members-border);
- padding-left: 32px;
- }
- .members-wrapper > h3 {
- margin-top: 42px;
- }
- .sidebar-section-header {
- text-transform: uppercase;
- font-weight: bold;
- font-size: 12px;
- opacity: 0.8;
- color: #afafaf;
- padding: var(--ifm-menu-link-padding-vertical)
- var(--ifm-menu-link-padding-horizontal);
- }
- .sidebar-section-divider {
- border-bottom: 1px solid var(--ifm-font-color-base);
- opacity: 0.2;
- margin: 6px 12px;
- }
- .limited-height-code-block pre.prism-code {
- max-height: 800px;
- }
|