Skip to content

Commit f31abe2

Browse files
author
GitHub Action
committed
Deployed d92ecd9 to 8.0 with MkDocs 1.6.1 and mike 2.1.3
1 parent 2c8f7cf commit f31abe2

File tree

100 files changed

+39701
-4692
lines changed

Some content is hidden

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

100 files changed

+39701
-4692
lines changed

8.0/404.html

+316-50
Large diffs are not rendered by default.

8.0/assets/stylesheets/main.4af4bdda.min.css renamed to 8.0/assets/stylesheets/main.2afb09e1.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

8.0/assets/stylesheets/main.4af4bdda.min.css.map renamed to 8.0/assets/stylesheets/main.2afb09e1.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

8.0/components.html

+316-50
Large diffs are not rendered by default.

8.0/copyright.html

+316-50
Large diffs are not rendered by default.

8.0/css/print-site-material.css

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/* print styles for mkdocs material theme
2+
https://github.com/squidfunk/mkdocs-material */
3+
4+
5+
/* Table of Contents styling */
6+
#print-site-page ul.toc-section-line-border {
7+
border-left: 5px solid var(--md-default-fg-color--lightest);
8+
}
9+
10+
11+
/* Box shadows don't do well in PDFs */
12+
#print-site-page table {
13+
border: 1px solid hsla(200, 18%, 26%, 1); /* #EFEFEF */
14+
box-shadow: none !important;
15+
}
16+
17+
@media print {
18+
#print-site-page td {
19+
word-wrap: break-word;
20+
}
21+
22+
}
23+
24+
@page {
25+
26+
size: A4 portrait;
27+
margin: 4em 1.5em 4em 1.5em;
28+
padding: 0em 0em 0em 0em;
29+
counter-increment: page;
30+
31+
@bottom-center {
32+
content: string(chapter);
33+
}
34+
@bottom-right {
35+
content: 'Page ' counter(page);
36+
}
37+
38+
}

8.0/css/print-site.css

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
2+
/*
3+
The print-site banner
4+
*/
5+
#print-site-banner {
6+
border:2px;
7+
border-style:solid;
8+
border-color:#000000;
9+
padding: 0em 1em 0em 1em;
10+
margin-bottom: 2em;
11+
}
12+
#print-site-banner h3 {
13+
margin-top: 1rem;
14+
}
15+
16+
/* Enumerate figures */
17+
.print-site-enumerate-figures figcaption:before {
18+
counter-increment: figurecounter;
19+
content: "Figure " counter(figurecounter) ": ";
20+
}
21+
22+
23+
/* Print URLS:
24+
Change a 'link' to 'link (target)' */
25+
div.print-site-add-full-url section.print-page a[href^="http"]::after{
26+
content: " (" attr(href) ") ";
27+
}
28+
29+
30+
/* Do some nice animations when clicking on a ToC link */
31+
#print-site-page h1:target,
32+
#print-site-page h2:target,
33+
#print-site-page h3:target,
34+
#print-site-page h4:target,
35+
#print-site-page h5:target,
36+
#print-site-page h6:target {
37+
animation: highlight 1.5s ease;
38+
}
39+
#print-site-page .print-page:target h1 {
40+
animation: highlight 1.5s ease;
41+
}
42+
@keyframes highlight {
43+
from { color: orange; }
44+
to { color: none; }
45+
}
46+
47+
48+
/*
49+
Print site table of contents styling
50+
*/
51+
/* Don't display the table of contents in HTML version */
52+
#print-page-toc { display: none }
53+
54+
55+
.print-page-toc-nav {
56+
padding-bottom: 2em;
57+
}
58+
59+
#print-page-toc ul {
60+
list-style-position: inside;
61+
list-style-type: none;
62+
}
63+
64+
#print-site-page ul {
65+
margin-left: 0em;
66+
}
67+
68+
/* Be able to not print certain elements */
69+
#print-site-page .print-site-plugin-ignore { display: none;}
70+
71+
@media print {
72+
73+
/* included bookmarks on h1 and h2
74+
Doesn't work, but included In case Chrome gets support
75+
for these experimental CSS features that define PDF bookmarks */
76+
/* #print-site-page h1 {
77+
bookmark-level: 1;
78+
bookmark-label: content();
79+
-ah-bookmark-level: 1;
80+
-ro-pdf-bookmark-level: 1;
81+
}
82+
#print-site-page h2 {
83+
bookmark-level: 2;
84+
bookmark-label: content();
85+
-ah-bookmark-level: 2;
86+
-ro-pdf-bookmark-level: 2;
87+
} */
88+
89+
/* Be able to not print certain elements */
90+
.print-site-plugin-ignore { display: none; }
91+
92+
/* Remove print site banner */
93+
#print-site-banner { display: none; }
94+
95+
/* display the table of contents in print version */
96+
#print-page-toc { display: block }
97+
98+
/* PDF page breaks on each MkDocs page, except the first one */
99+
#print-site-page section.print-page {
100+
page-break-before: always;
101+
}
102+
#print-site-page > section.print-page:first-of-type {
103+
page-break-before: avoid;
104+
}
105+
106+
/* PDF page breaks - separate title page for each section */
107+
#print-site-page section.print-page.md-section > h1 {
108+
align-content: center;
109+
text-align: center;
110+
vertical-align: middle;
111+
padding: 5rem 0rem;
112+
font-size: 2.5em;
113+
}
114+
115+
#print-site-page p,
116+
#print-site-page pre,
117+
#print-site-page blockquote,
118+
#print-site-page .tabbed-set {
119+
page-break-inside: avoid;
120+
}
121+
122+
/* Avoid a page break immediately after a heading */
123+
/* Credits https://stackoverflow.com/a/9238898/5525118 */
124+
#print-site-page h1 {
125+
page-break-inside: avoid;
126+
}
127+
#print-site-page h1::after {
128+
content: "";
129+
/* display: block; */
130+
height: 100px;
131+
margin-bottom: -100px;
132+
}
133+
134+
#print-site-page footer { display : none; }
135+
136+
#print-site-cover-page {
137+
display: block;
138+
width:100%;
139+
text-align: center;
140+
}
141+
#print-site-cover-page h1 {
142+
font-size: 300%;
143+
}
144+
}

0 commit comments

Comments
 (0)