30 lines
927 B
CSS
30 lines
927 B
CSS
/* stylelint-disable docusaurus/copyright-header */
|
|
/**
|
|
* 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: #dde000;
|
|
--ifm-color-primary-dark: rgb(175, 173, 33);
|
|
--ifm-color-primary-darker: rgb(165, 163, 31);
|
|
--ifm-color-primary-darkest: rgb(134, 136, 26);
|
|
--ifm-color-primary-light: rgb(201, 203, 70);
|
|
--ifm-color-primary-lighter: rgb(212, 210, 102);
|
|
--ifm-color-primary-lightest: rgb(223, 224, 146);
|
|
--ifm-code-font-size: 95%;
|
|
}
|
|
|
|
.docusaurus-highlight-code-line {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
display: block;
|
|
margin: 0 calc(-1 * var(--ifm-pre-padding));
|
|
padding: 0 var(--ifm-pre-padding);
|
|
}
|
|
|
|
html[data-theme='dark'] .docusaurus-highlight-code-line {
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
}
|