This repository has been archived on 2023-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
automate/packages/docs/src/css/custom.css

29 lines
826 B
CSS

/**
* 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: #0059f7;
--ifm-color-primary-dark: #0050de;
--ifm-color-primary-darker: #004cd2;
--ifm-color-primary-darkest: #003ead;
--ifm-color-primary-light: #1167ff;
--ifm-color-primary-lighter: #1d6eff;
--ifm-color-primary-lightest: #4286ff;
--ifm-code-font-size: 85%;
}
.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);
}