Landing page and navigation bar

This commit is contained in:
2024-07-02 01:26:51 +02:00
parent 6f8fed1a36
commit 1432c93d32
20 changed files with 16241 additions and 2 deletions

30
src/css/custom.css Normal file
View File

@@ -0,0 +1,30 @@
/**
* 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: #84262B;
--ifm-color-primary-dark: #6b1d21;
--ifm-color-primary-darker: #631a1e;
--ifm-color-primary-darkest: #421113;
--ifm-color-primary-light: #eba07f;
--ifm-color-primary-lighter: #e9b7a2;
--ifm-color-primary-lightest: #EDD1C5;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #ce3b42;
--ifm-color-primary-dark: #bb353b;
--ifm-color-primary-darker: #9b2a2f;
--ifm-color-primary-darkest: #742024;
--ifm-color-primary-light: #eba07f;
--ifm-color-primary-lighter: #e9b7a2;
--ifm-color-primary-lightest: #EDD1C5;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}