| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /**
- * 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.
- */
- /* You can override the default Infima variables here. */
- :root {
- --ifm-color-primary: hsl(196 100% 35%);
- --ifm-color-primary-dark: hsl(196 100% 25%);
- --ifm-color-primary-darker: hsl(196 100% 15%);
- --ifm-color-primary-darkest: hsl(196 100% 7%);
- --ifm-color-primary-light: hsl(196 100% 65%);
- --ifm-color-primary-lighter: hsl(196 100% 75%);
- --ifm-color-primary-lightest: hsl(196 100% 90%);
- --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);
- }
- /* For readability concerns, you should choose a lighter palette in dark mode. */
- [data-theme='dark'] {
- --ifm-color-primary: hsl(196 100% 45%);
- --ifm-color-primary-dark: hsl(196 100% 35%);
- --ifm-color-primary-darker: hsl(196 100% 25%);
- --ifm-color-primary-darkest: hsl(196 100% 15%);
- --ifm-color-primary-light: hsl(196 100% 65%);
- --ifm-color-primary-lighter: hsl(196 100% 75%);
- --ifm-color-primary-lightest: hsl(196 100% 90%);
- --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
- --color-graphql-comment: #6ea372;
- --color-graphql-identifier: rgb(255, 121, 198);
- }
- .markdown h2:not(:first-of-type) {
- --ifm-h2-vertical-rhythm-top: 5;
- }
- .members-wrapper {
- border-left: 1px solid var(--ifm-color-secondary);
- padding-left: 32px;
- }
- .members-wrapper > h3 {
- margin-top: 42px;
- }
- /* Styling of GraphQL code blocks */
- .graphql-code-block {
- background-color: var(--ifm-pre-background);
- border-radius: var(--ifm-pre-border-radius);
- padding: var(--ifm-pre-padding);
- color: var(--ifm-pre-color);
- font: var(--ifm-code-font-size) / var(--ifm-pre-line-height) var(--ifm-font-family-monospace);
- }
- .graphql-code-line {
- }
- .graphql-code-line:not(.top-level) {
- margin-left: 24px;
- }
- .graphql-code-line.comment {
- color: var(--color-graphql-comment);
- }
- .graphql-code-identifier {
- color: var(--color-graphql-identifier);
- margin-right: 6px;
- }
|