Skip to content

Commit

Permalink
Deployed 7607d85 with MkDocs version: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed May 15, 2024
0 parents commit a03dd4c
Show file tree
Hide file tree
Showing 221 changed files with 13,744 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
21 changes: 21 additions & 0 deletions 404.html

Large diffs are not rendered by default.

594 changes: 594 additions & 0 deletions assets/external/fonts.googleapis.com/css.49ea35f2.css

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
23 changes: 23 additions & 0 deletions assets/external/gitpod.io/button/open-in-gitpod.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/external/plausible.io/js/script.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2,029 changes: 2,029 additions & 0 deletions assets/external/unpkg.com/mermaid@10/dist/mermaid.min.js

Large diffs are not rendered by default.

124 changes: 124 additions & 0 deletions assets/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
/* variables */
:root {
/* #4051b5 (indigo primary) in decimal RGB */
--custom-bg-color: rgba(64, 81, 181, .1);
--custom-header-color: var(--md-primary-fg-color);
}

/* dark color scheme overrides */
[data-md-color-scheme="slate"] {
--custom-header-color: var(--md-primary-fg-color--light);
}

/* table does not need a scrollbar, see https://github.com/ddev/ddev/pull/3290#issuecomment-942888867
*/
.md-typeset__table {
padding-right: 0;
}

dt {
font-weight: bold;
}

.md-typeset :is(.admonition,details) {
font-size: .70rem;
background-color: inherit;
}

.md-typeset .tabbed-content {
background-color: var(--custom-bg-color);
padding: 10px;
}

/* only required if we have our svg logo out there */
/*.md-logo {*/
/* filter:invert(40%)*/
/*}*/

/* typography */
.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6 {
font-weight: 700;
margin-bottom: .5em;
color: var(--custom-header-color);
}

.md-content {
max-width: 130ch;
}

/* main menu */
.md-container > nav .md-tabs__item {
position: relative !important;
height: 2rem;
display: inline-flex;
justify-content: center;
align-items: center;
}

.md-container > nav .md-tabs__link {
margin-top: 0;
}

.md-container > nav .md-tabs__link:after {
content: '';
background: #fff;
opacity: 0;
position: absolute;
right: 0;
bottom: 0;
left: 0;
top: 0;
}

.md-container > nav .md-tabs__link:hover:after,
.md-container > nav .md-tabs__link--active:after {
opacity: 0.1;
}

.md-tabs[hidden] .md-tabs__link,
.md-container > nav .md-tabs[hidden] .md-tabs__link {
transform: unset;
transition: opacity .3s ease;
}

/* blockquote */
[dir=ltr] .md-typeset blockquote {
border-left-color: var(--custom-header-color);
background: var(--custom-bg-color);
padding: .6rem 1rem;
}

[dir=ltr] .md-typeset blockquote strong {
color: var(--custom-header-color);
}

[dir=ltr] .md-typeset blockquote p:first-child {
margin-top: 0;
}

[dir=ltr] .md-typeset blockquote p:last-child {
margin-bottom: 0;
}

/* tabs */
.md-typeset .tabbed-labels label {
font-size: 0.75rem;
}

.md-typeset .tabbed-button {
width: 30px;
height: 100%;
border-radius: unset!important;
}

.md-typeset .tabbed-button:after {
-webkit-mask-size: cover;
mask-size: cover;
mask-position: center;
-webkit-mask-position: center;
}
27 changes: 27 additions & 0 deletions assets/extra.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
document.addEventListener("DOMContentLoaded", function() {
load_navpane();
});

function load_navpane() {
var width = window.innerWidth;
if (width <= 1200) {
return;
}

var nav = document.getElementsByClassName("md-nav");
for(var i = 0; i < nav.length; i++) {
if (typeof nav.item(i).style === "undefined") {
continue;
}

if (nav.item(i).getAttribute("data-md-level") && nav.item(i).getAttribute("data-md-component")) {
nav.item(i).style.display = 'block';
nav.item(i).style.overflow = 'visible';
}
}

var nav = document.getElementsByClassName("md-nav__toggle");
for(var i = 0; i < nav.length; i++) {
nav.item(i).checked = true;
}
}
Binary file added assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a03dd4c

Please sign in to comment.