Add initial website

This commit is contained in:
yehor
2025-05-16 16:08:50 +03:00
parent 5770fdeaf9
commit d10a177923
46 changed files with 27704 additions and 1 deletions

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

@@ -0,0 +1,31 @@
/**
* 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: #541d54;
--ifm-color-primary-dark: #4c1a4c;
--ifm-color-primary-darker: #471947;
--ifm-color-primary-darkest: #3b143b;
--ifm-color-primary-light: #3b143b;
--ifm-color-primary-lighter: #612161;
--ifm-color-primary-lightest: #6d266d;
--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: #b07ab0;
--ifm-color-primary-dark: #a567a5;
--ifm-color-primary-darker: #9f5e9f;
--ifm-color-primary-darkest: #834e83;
--ifm-color-primary-light: #bb8dbb;
--ifm-color-primary-lighter: #c196c1;
--ifm-color-primary-lightest: #d1b2d1;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}