2022-09-01 09:26:04 +02:00
|
|
|
/**
|
|
|
|
* 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 {
|
2022-11-29 15:43:06 +01:00
|
|
|
--ifm-color-primary: #e6122e;
|
|
|
|
--ifm-color-primary-dark: #cf1029;
|
|
|
|
--ifm-color-primary-darker: #c30f27;
|
|
|
|
--ifm-color-primary-darkest: #a10d20;
|
|
|
|
--ifm-color-primary-light: #ee233e;
|
|
|
|
--ifm-color-primary-lighter: #ef2f48;
|
|
|
|
--ifm-color-primary-lightest: #f15166;
|
2022-11-29 17:16:52 +01:00
|
|
|
--ifm-background-color: #F5F5F5;
|
|
|
|
--ifm-navbar-background-color: #fff;
|
2022-09-01 09:26:04 +02:00
|
|
|
--ifm-code-font-size: 95%;
|
|
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-theme='dark'] {
|
2022-11-29 15:43:06 +01:00
|
|
|
--ifm-color-primary: #f15166;
|
|
|
|
--ifm-color-primary-dark: #ef334c;
|
|
|
|
--ifm-color-primary-darker: #ed243f;
|
|
|
|
--ifm-color-primary-darkest: #d1112a;
|
|
|
|
--ifm-color-primary-light: #f36f80;
|
|
|
|
--ifm-color-primary-lighter: #f57e8d;
|
|
|
|
--ifm-color-primary-lightest: #f8aab5;
|
|
|
|
--ifm-background-color: #2c2e3a;
|
2022-11-29 17:16:52 +01:00
|
|
|
--ifm-navbar-background-color: #2c2e3a;
|
2022-09-01 09:26:04 +02:00
|
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
2022-09-01 13:35:24 +02:00
|
|
|
|
2022-11-29 15:43:06 +01:00
|
|
|
.navbar__logo {
|
|
|
|
height: 2.5rem;
|
|
|
|
}
|
2022-09-01 13:35:24 +02:00
|
|
|
|
|
|
|
.todo {
|
|
|
|
background-color: yellow;
|
2022-12-15 16:01:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 996px) {
|
|
|
|
|
|
|
|
.left-badge {
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mid-badge {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-badge {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-badge {
|
|
|
|
background-color: #c6c6c6;
|
|
|
|
}
|
|
|
|
|
2022-12-20 14:20:50 +01:00
|
|
|
.footer {
|
|
|
|
background-color: var(--ifm-navbar-background-color);
|
|
|
|
padding-bottom: 2em;
|
|
|
|
padding-top: 1em;
|
|
|
|
height: var(--ifm-navbar-height);
|
|
|
|
}
|
|
|
|
|