diff --git a/content/testing/index.html b/content/about-testing/index.html similarity index 100% rename from content/testing/index.html rename to content/about-testing/index.html diff --git a/content/about/index.html b/content/about/index.html index d4f4d9c..997625f 100644 --- a/content/about/index.html +++ b/content/about/index.html @@ -10,6 +10,23 @@ rel="stylesheet" /> + + + +
@@ -45,8 +82,6 @@ cursor: pointer; transition: background-color 0.3s; " - onmouseover="this.style.backgroundColor='#c4a1e1';" - onmouseout="this.style.backgroundColor='#cebaef';" > Click to Continue To About @@ -67,67 +102,9 @@

style="margin-left: 0px" > - +

- -
+ diff --git a/static/assets/js/backgroundvid.js b/static/assets/js/backgroundvid.js index e8eb079..81af6c0 100644 --- a/static/assets/js/backgroundvid.js +++ b/static/assets/js/backgroundvid.js @@ -1,15 +1,15 @@ const videos = [ - 'https://index.havenmc.org/website/assets/mp4/fightsong.mp4', - 'https://index.havenmc.org/website/assets/mp4/usurper.mp4', - 'https://index.havenmc.org/website/assets/mp4/lmwasabi.mp4' + "https://index.havenmc.org/website/assets/mp4/fightsong.mp4", + "https://index.havenmc.org/website/assets/mp4/usurper.mp4", + "https://index.havenmc.org/website/assets/mp4/lmwasabi.mp4", ]; function setRandomVideo() { - const randomVideo = videos[Math.floor(Math.random() * videos.length)]; - const videoSource = document.querySelector('#bgVideo source'); - videoSource.src = randomVideo; - const bgVideo = document.getElementById('bgVideo'); - bgVideo.load(); + const randomVideo = videos[Math.floor(Math.random() * videos.length)]; + const videoSource = document.querySelector("#bgVideo source"); + videoSource.src = randomVideo; + const bgVideo = document.getElementById("bgVideo"); + bgVideo.load(); } window.onload = setRandomVideo;