mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-21 15:27:31 +00:00
49 lines
1.2 KiB
CSS
49 lines
1.2 KiB
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. */
|
||
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat');
|
||
|
|
||
|
:root {
|
||
|
--ifm-color-primary: #556cd1;
|
||
|
--ifm-color-primary-dark: #3e58cb;
|
||
|
--ifm-color-primary-darker: #3550c5;
|
||
|
--ifm-color-primary-darkest: #2c42a2;
|
||
|
--ifm-color-primary-light: #6c80d7;
|
||
|
--ifm-color-primary-lighter: #788ada;
|
||
|
--ifm-color-primary-lightest: #9aa8e4;
|
||
|
--ifm-code-font-size: 95%;
|
||
|
--ifm-font-family-base: 'Montserrat', sans-serif;
|
||
|
}
|
||
|
|
||
|
|
||
|
.docusaurus-highlight-code-line {
|
||
|
background-color: rgb(72, 77, 91);
|
||
|
display: block;
|
||
|
margin: 0 calc(-1 * var(--ifm-pre-padding));
|
||
|
padding: 0 var(--ifm-pre-padding);
|
||
|
}
|
||
|
|
||
|
.get-started {
|
||
|
border: 1px solid;
|
||
|
background-color: var(--ifm-font-color-base-inverse);
|
||
|
color: var(--ifm-color-primary);
|
||
|
}
|
||
|
|
||
|
.get-started:hover {
|
||
|
background-color: var(--ifm-color-primary);
|
||
|
color: var(--ifm-font-color-base-inverse);
|
||
|
}
|
||
|
|
||
|
.docs-link a {
|
||
|
text-decoration: none;
|
||
|
color: inherit;
|
||
|
}
|
||
|
|
||
|
.docs-link a:hover {
|
||
|
color: var(--ifm-color-primary);
|
||
|
}
|