Move the documentation repository to a public repo

Added a LICENSE and documentation on how to contribute

Updated CI/CD to use the root level code
This commit is contained in:
mlsmaycon
2022-06-20 19:05:25 +02:00
parent 219bc7b9f4
commit 98751bc1f4
64 changed files with 10203 additions and 1 deletions

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

@@ -0,0 +1,55 @@
/**
* 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.
*/
:root {
--site-primary-hue-saturation: 100%;
--ifm-color-primary: #2e2e2e;
--ifm-color-primary-dark: #585656;
--ifm-color-primary-darker: #535252;
--ifm-color-primary-darkest: #454343;
--ifm-color-primary-light: #6c6a6a;
--ifm-color-primary-lighter: #716e6e;
--ifm-color-primary-lightest: #7f7d7d;
}
.markdown {
--ifm-link-color: #0aa6c2;
}
.table-of-contents {
--ifm-color-primary: #0aa6c2;
}
.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);
}
[data-theme='dark'] {
--ifm-color-primary: hsl(var(--site-primary-hue-saturation) 90%);
}
.videowrapper {
float: none;
clear: both;
width: 100%;
position: relative;
padding-bottom: 56.25%;
padding-top: 25px;
height: 0;
}
.videowrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}