Skip to content

Commit 504fd8c

Browse files
committed
Deployed 7771164 to 2.4.5 with MkDocs 1.5.3 and mike 2.0.0
1 parent a75c324 commit 504fd8c

File tree

102 files changed

+109684
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+109684
-0
lines changed

2.4.5/404.html

Lines changed: 1476 additions & 0 deletions
Large diffs are not rendered by default.

2.4.5/_assets/css/custom-graphium.css

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
:root {
2+
--graphium-primary: #548235;
3+
--graphium-secondary: #343a40;
4+
5+
/* Primary color shades */
6+
--md-primary-fg-color: var(--graphium-primary);
7+
--md-primary-fg-color--light: var(--graphium-primary);
8+
--md-primary-fg-color--dark: var(--graphium-primary);
9+
--md-primary-bg-color: var(--graphium-secondary);
10+
--md-primary-bg-color--light: var(--graphium-secondary);
11+
--md-text-link-color: var(--graphium-secondary);
12+
13+
/* Accent color shades */
14+
--md-accent-fg-color: var(--graphium-secondary);
15+
--md-accent-fg-color--transparent: var(--graphium-secondary);
16+
--md-accent-bg-color: var(--graphium-secondary);
17+
--md-accent-bg-color--light: var(--graphium-secondary);
18+
}
19+
20+
:root > * {
21+
/* Code block color shades */
22+
--md-code-bg-color: hsla(0, 0%, 96%, 1);
23+
--md-code-fg-color: hsla(200, 18%, 26%, 1);
24+
25+
/* Footer */
26+
--md-footer-bg-color: var(--graphium-primary);
27+
/* --md-footer-bg-color--dark: hsla(0, 0%, 0%, 0.32); */
28+
--md-footer-fg-color: var(--graphium-secondary);
29+
--md-footer-fg-color--light: var(--graphium-secondary);
30+
--md-footer-fg-color--lighter: var(--graphium-secondary);
31+
}
32+
33+
.md-header {
34+
background-image: linear-gradient(to right, #548235, #8DB771);
35+
}
36+
37+
.md-footer {
38+
background-image: linear-gradient(to right, #548235, #8DB771);
39+
}
40+
41+
.md-tabs {
42+
background-image: linear-gradient(to right, #f4f6f9, #e2cec3);
43+
}
44+
45+
.md-header__topic {
46+
color: #fff;
47+
}
48+
49+
.md-source__repository,
50+
.md-source__icon,
51+
.md-search__input,
52+
.md-search__input::placeholder,
53+
.md-search__input ~ .md-search__icon,
54+
.md-footer__inner.md-grid,
55+
.md-copyright__highlight,
56+
.md-copyright,
57+
.md-footer-meta.md-typeset a,
58+
.md-version {
59+
color: #fff !important;
60+
}
61+
62+
.md-search__form {
63+
background-color: rgba(255, 255, 255, 0.2);
64+
}
65+
66+
.md-search__input {
67+
color: #222 !important;
68+
}
69+
70+
.md-header__topic {
71+
color: #fff;
72+
font-size: 1.4em;
73+
}
74+
75+
/* Increase the size of the logo */
76+
.md-header__button.md-logo img,
77+
.md-header__button.md-logo svg {
78+
height: 2rem !important;
79+
}
80+
81+
/* Reduce the margin around the logo */
82+
.md-header__button.md-logo {
83+
margin: 0.4em;
84+
padding: 0.4em;
85+
}
86+
87+
/* Remove the `In` and `Out` block in rendered Jupyter notebooks */
88+
.md-container .jp-Cell-outputWrapper .jp-OutputPrompt.jp-OutputArea-prompt,
89+
.md-container .jp-Cell-inputWrapper .jp-InputPrompt.jp-InputArea-prompt {
90+
display: none !important;
91+
}

2.4.5/_assets/css/custom.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/* Indentation. */
2+
div.doc-contents:not(.first) {
3+
padding-left: 25px;
4+
border-left: 4px solid #e6e6e6;
5+
margin-bottom: 80px;
6+
}
7+
8+
/* Don't capitalize names. */
9+
h5.doc-heading {
10+
text-transform: none !important;
11+
}
12+
13+
/* Don't use vertical space on hidden ToC entries. */
14+
.hidden-toc::before {
15+
margin-top: 0 !important;
16+
padding-top: 0 !important;
17+
}
18+
19+
/* Don't show permalink of hidden ToC entries. */
20+
.hidden-toc a.headerlink {
21+
display: none;
22+
}
23+
24+
/* Avoid breaking parameters name, etc. in table cells. */
25+
td code {
26+
word-break: normal !important;
27+
}
28+
29+
/* For pieces of Markdown rendered in table cells. */
30+
td p {
31+
margin-top: 0 !important;
32+
margin-bottom: 0 !important;
33+
}

2.4.5/_assets/js/google-analytics.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
var gtag_id = "G-K76VNHBRM4";
2+
3+
var script = document.createElement("script");
4+
script.src = "https://www.googletagmanager.com/gtag/js?id=" + gtag_id;
5+
document.head.appendChild(script);
6+
7+
window.dataLayer = window.dataLayer || [];
8+
function gtag() {
9+
dataLayer.push(arguments);
10+
}
11+
gtag("js", new Date());
12+
gtag("config", gtag_id);

0 commit comments

Comments
 (0)