minor update

This commit is contained in:
Joshua Ashton
2025-03-13 14:06:54 -06:00
parent 2bd6b7f44e
commit 0d41bcf4d5
4 changed files with 954 additions and 629 deletions
+29 -4
View File
@@ -4,40 +4,56 @@ body {
padding: 20px; padding: 20px;
background-color: #f4f4f9; background-color: #f4f4f9;
} }
h1, h2, h3 {
h1,
h2,
h3 {
color: #333; color: #333;
} }
h1 { h1 {
font-size: 2em; font-size: 2em;
} }
h2 { h2 {
font-size: 1.75em; font-size: 1.75em;
} }
h3 { h3 {
font-size: 1.5em; font-size: 1.5em;
} }
ul { ul {
list-style-type: none;
padding: 0; padding: 0;
} }
ul li { ul li {
margin-left: 30px;
margin-bottom: 10px; margin-bottom: 10px;
} }
table { table {
width: 100%; width: 100%;
margin-top: 20px; margin-top: 20px;
border-collapse: collapse; border-collapse: collapse;
} }
table, th, td {
table,
th,
td {
border: 1px solid #ddd; border: 1px solid #ddd;
} }
th, td {
th,
td {
padding: 10px; padding: 10px;
text-align: left; text-align: left;
} }
th { th {
background-color: #f2f2f2; background-color: #f2f2f2;
} }
pre { pre {
background-color: #f4f4f4; background-color: #f4f4f4;
padding: 10px; padding: 10px;
@@ -45,11 +61,20 @@ pre {
white-space: pre-wrap; white-space: pre-wrap;
word-wrap: break-word; word-wrap: break-word;
} }
.image-container { .image-container {
text-align: center; text-align: center;
} }
.image-container img { .image-container img {
width: 80%; width: 80%;
max-width: 600px; max-width: 600px;
margin-top: 20px; margin-top: 20px;
} }
.code {
border: 2px solid #e0e0e0;
border-radius: 9px;
padding: 3px;
color: #091A19;
}
+905 -623
View File
File diff suppressed because it is too large Load Diff
+18
View File
@@ -0,0 +1,18 @@
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
/* Toggle between adding and removing the "active" class,
to highlight the button that controls the panel */
this.classList.toggle("active");
/* Toggle between hiding and showing the active panel */
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}
+1 -1
View File
@@ -107,7 +107,7 @@ init_jellyfin() {
--user $(id -u):$(id -g) \ --user $(id -u):$(id -g) \
--volume jellyfin-cache:/cache:Z \ --volume jellyfin-cache:/cache:Z \
--volume jellyfin-config:/config:Z \ --volume jellyfin-config:/config:Z \
--mount type=bind,source=/$(pwd)/media,destination=/media,ro=true,relabel=private \ --mount type=bind,source=/$HOME/media,destination=/media,ro=true,relabel=private \
--restart always \ --restart always \
ghcr.io/jellyfin/jellyfin; ghcr.io/jellyfin/jellyfin;