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
+30 -5
View File
@@ -4,40 +4,56 @@ body {
padding: 20px;
background-color: #f4f4f9;
}
h1, h2, h3 {
h1,
h2,
h3 {
color: #333;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.75em;
}
h3 {
font-size: 1.5em;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-left: 30px;
margin-bottom: 10px;
}
table {
width: 100%;
margin-top: 20px;
border-collapse: collapse;
}
table, th, td {
table,
th,
td {
border: 1px solid #ddd;
}
th, td {
th,
td {
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
pre {
background-color: #f4f4f4;
padding: 10px;
@@ -45,11 +61,20 @@ pre {
white-space: pre-wrap;
word-wrap: break-word;
}
.image-container {
text-align: center;
}
.image-container img {
width: 80%;
max-width: 600px;
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";
}
});
}