Skip to content

Commit 2f12c2f

Browse files
author
committed
Deployed 164d6ac with MkDocs version: 1.6.1
0 parents  commit 2f12c2f

File tree

95 files changed

+9023
-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.

95 files changed

+9023
-0
lines changed

.nojekyll

Whitespace-only changes.

404.html

+1
Large diffs are not rendered by default.

advanced/multiple-instances/index.html

+1
Large diffs are not rendered by default.

advanced/outputs-alsa/index.html

+294
Large diffs are not rendered by default.

advanced/outputs-pulse/index.html

+31
Large diffs are not rendered by default.

advanced/radio-streams/index.html

+37
Large diffs are not rendered by default.

advanced/remote-access/index.html

+2
Large diffs are not rendered by default.

artwork/index.html

+1
Large diffs are not rendered by default.

assets/extra.css

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/*
2+
* MkDocs Material theme buttons have wrong colors for the theme
3+
* setting:
4+
*
5+
* palette:
6+
* scheme: default
7+
* primary: white
8+
*
9+
* Thus the following CSS overwrites the button background- and
10+
* text-colors.
11+
*/
12+
.md-button {
13+
color: var(--md-accent-fg-color) !important;
14+
border-color: currentColor !important;
15+
}
16+
.md-button:focus,
17+
.md-button:hover {
18+
color: var(--md-primary-fg-color) !important;
19+
background-color: var(--md-accent-fg-color) !important;
20+
border-color: var(--md-accent-fg-color) !important;
21+
}
22+
23+
/*
24+
* The nav title has a click handler to scroll to the top
25+
*/
26+
.md-header-nav__title {
27+
cursor: pointer;
28+
}
29+
30+
/*
31+
* Text alignment
32+
*/
33+
.text-center {
34+
text-align: center;
35+
}
36+
37+
/*
38+
* Custom CSS for images
39+
*/
40+
.hidden {
41+
visibility: hidden;
42+
opacity: 0;
43+
transition: visibility 0s linear 300ms, opacity 300ms;
44+
}
45+
.visible {
46+
visibility: visible;
47+
opacity: 1;
48+
transition: visibility 0s linear 0s, opacity 300ms;
49+
}
50+
.fullscreen-image-background {
51+
z-index: 25;
52+
background-color: rgba(10, 10, 10, 0.5);
53+
position: fixed;
54+
bottom: 0;
55+
left: 0;
56+
right: 0;
57+
top: 0;
58+
}
59+
.fullscreen-image-background img {
60+
transition: opacity 1s;
61+
cursor: zoom-out;
62+
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
63+
z-index: 100;
64+
position: fixed;
65+
left: 0;
66+
right: 0;
67+
top: 0;
68+
bottom: 0;
69+
margin: 1rem auto;
70+
max-height: calc(100vh - 2rem);
71+
width: auto;
72+
}
73+
.zoom {
74+
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
75+
border-radius: 0.2rem;
76+
margin: 0.5rem;
77+
width: 25%;
78+
cursor: zoom-in;
79+
}
80+
.zoom-wrapper {
81+
display: flex;
82+
flex-direction: row;
83+
align-items: center;
84+
justify-content: center;
85+
flex-wrap: wrap;
86+
}

assets/extra.js

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Add click event handler for images with class="zoom"
3+
*/
4+
document.querySelectorAll('img.zoom').forEach(item => {
5+
const p = item.parentElement;
6+
if (!p.classList.contains('processed')) {
7+
p.classList.add('processed');
8+
if (p.querySelectorAll('img.zoom').length === p.children.length) {
9+
p.classList.add('zoom-wrapper');
10+
}
11+
}
12+
item.addEventListener('click', function () {
13+
const img = document.getElementById('fullscreen-image-img');
14+
img.setAttribute('src', this.getAttribute('src'));
15+
img.setAttribute('alt', this.getAttribute('alt'));
16+
17+
const div = document.getElementById('fullscreen-image');
18+
div.classList.replace('hidden', 'visible');
19+
})
20+
});
21+
22+
var div = document.createElement('div');
23+
div.classList.add('fullscreen-image-background', 'hidden');
24+
div.id = 'fullscreen-image';
25+
var img = document.createElement('img');
26+
img.id = 'fullscreen-image-img';
27+
div.appendChild(img);
28+
29+
div.addEventListener('click', function () {
30+
this.classList.replace('visible', 'hidden');
31+
});
32+
document.body.appendChild(div);

assets/favicon.ico

14.7 KB
Binary file not shown.

assets/images/favicon.png

1.83 KB
Loading
89.3 KB
Loading
454 KB
Loading

assets/images/screenshot-files.png

130 KB
Loading

assets/images/screenshot-menu.png

61.1 KB
Loading
458 KB
Loading
Loading
492 KB
Loading
507 KB
Loading
79.5 KB
Loading
354 KB
Loading
406 KB
Loading
1 MB
Loading

assets/images/screenshot-outputs.png

64.9 KB
Loading

assets/images/screenshot-podcast.png

136 KB
Loading

assets/images/screenshot-podcasts.png

124 KB
Loading

assets/images/screenshot-queue.png

97.7 KB
Loading

assets/images/screenshot-search.png

104 KB
Loading

assets/javascripts/bundle.56dfad97.min.js

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

assets/javascripts/bundle.56dfad97.min.js.map

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

assets/javascripts/lunr/min/lunr.ar.min.js

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

assets/javascripts/lunr/min/lunr.da.min.js

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

assets/javascripts/lunr/min/lunr.de.min.js

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

assets/javascripts/lunr/min/lunr.du.min.js

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

0 commit comments

Comments
 (0)