Improved backgrounds, builds, readability, roundings and Added lists properly

Update .gitignore, compile.cmd, and 20 more files...
This commit is contained in:
2024-11-20 22:53:18 +01:00
parent d7d4dfba15
commit cdd0aba327
22 changed files with 404 additions and 289 deletions

10
htdocs/js/anchor-fix.js Normal file
View File

@@ -0,0 +1,10 @@
// This script is required due to Chromium's dogshit and random ability to jump to anchors when reloading pages.
document.addEventListener("DOMContentLoaded", function () {
if (window.location.hash) {
const eAnchor = document.querySelector(window.location.hash);
if (eAnchor) {
eAnchor.scrollIntoView();
}
}
});