Add Loadout subsite

This commit is contained in:
lm
2022-12-16 18:09:58 +01:00
parent de6bdebd69
commit ce7bb2476d
8 changed files with 257 additions and 52 deletions
+12
View File
@@ -17,3 +17,15 @@ function checkTime(i) {
if (i < 10) {i = "0" + i}; // add zero in front of numbers < 10
return i;
}
/* Set the width of the sidebar to 250px and the left margin of the page content to 250px */
function openNav() {
document.getElementById("mySidebar").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
/* Set the width of the sidebar to 0 and the left margin of the page content to 0 */
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
document.getElementById("main").style.marginLeft = "0";
}