diff --git a/branding.html b/branding.html
index 655d21d..57a8f7d 100644
--- a/branding.html
+++ b/branding.html
@@ -17,12 +17,8 @@
-
-
-
-
BGM player
-
Play
-
Enable audio autoplay in your browser for it to continue playing throughout the website.
-
+
WiiMart
diff --git a/info-log.html b/info-log.html
index 404bbac..97333e7 100644
--- a/info-log.html
+++ b/info-log.html
@@ -16,12 +16,8 @@
-
-
-
BGM player
-
Play
-
Enable audio autoplay in your browser for it to continue playing throughout the website.
-
+
+
Back to WiiMart.org
diff --git a/media/martyna-looking-orange.png b/media/martyna-looking-orange.png
new file mode 100644
index 0000000..0743166
Binary files /dev/null and b/media/martyna-looking-orange.png differ
diff --git a/media/sound-fishie-scream1.wav b/media/sound-fishie-scream1.wav
new file mode 100644
index 0000000..b3ecd42
Binary files /dev/null and b/media/sound-fishie-scream1.wav differ
diff --git a/media/sound-fishie-scream2.wav b/media/sound-fishie-scream2.wav
new file mode 100644
index 0000000..ba46f9d
Binary files /dev/null and b/media/sound-fishie-scream2.wav differ
diff --git a/media/sound-fishie-scream3.wav b/media/sound-fishie-scream3.wav
new file mode 100644
index 0000000..4e4320f
Binary files /dev/null and b/media/sound-fishie-scream3.wav differ
diff --git a/meta/FishieDeath.ogg b/meta/FishieDeath.ogg
new file mode 100644
index 0000000..540c3aa
Binary files /dev/null and b/meta/FishieDeath.ogg differ
diff --git a/meta/FishieFishie.ogg b/meta/FishieFishie.ogg
new file mode 100644
index 0000000..d916a93
Binary files /dev/null and b/meta/FishieFishie.ogg differ
diff --git a/meta/main.css b/meta/main.css
index 89ede1c..3b4f3d4 100644
--- a/meta/main.css
+++ b/meta/main.css
@@ -57,14 +57,14 @@ img.right {right: 10px; animation: rightHoverAnimation 0.5s infinite alternate;}
@keyframes rightHoverAnimation {0% {transform: translateY(-50%) translateX(0);} 100% {transform: translateY(-50%) translateX(-5px);}}
/* Music */
-div#bgmplayer {z-index: 1000;transition:.3s ease-in-out; opacity:30%; position:fixed; bottom:3px; border:2px solid #34BEED; left:3px; float:left; width:160px; height:40px; overflow:hidden;}
-div#bgmplayer:hover {opacity: 50%; transition:.3s ease-in-out; height:100px; width:200px; overflow:auto;scrollbar-width: none;}
-div#bgmplayer h2 {height:20px; margin-top:-9px; line-height:40px}
-div#bgmplayer p {line-height:20px;color:#9A9A9A;margin-top:-10px;font-style:italic;font-size:10px;}
-
+div#bgmplayer { z-index: 1000;transition:.3s ease-in-out; opacity:25%; position:fixed; bottom:3px; border:2px solid #34BEED; width:60px; height:20px; overflow:hidden;}
+div#bgmplayer:hover {cursor:pointer; opacity: 70%; }
+.bgmplayerdisplayed{cursor:default !important; opacity: 70%; transition:.3s ease-in-out; height:65px !important; width:120px !important; overflow:auto;scrollbar-width: none;}
+.box#bgmplayer #bgmplrtitle{color:#34BEED; font-weight:bold; font-size:18px; font-style:normal; margin-top:-5px; margin-bottom:3px; line-height:18px; }
+div#bgmplayer p {line-height:20px;color:#9A9A9A;margin-top:-10px;font-style:italic;font-size:10px; user-select:none; pointer-events:none;}
/* Matt! Yea? update day! what?? New-New Wii Titles! What? im in the bathroom! Update day for WiiMart! */
-#wednesdaytitles {margin-top:13px; margin-bottom:13px; border:none;position:relative; float:center; background-color:#FFF; transition:.3s ease-in-out;}
+#wednesdaytitles {margin-top:13px; margin-bottom:13px; border:none;position:relative; background-color:#FFF; transition:.3s ease-in-out;}
#whatiswsw {animation:wswpop 0.5s forwards;opacity:0%;position: fixed;top: 50%;left: 50%;transform: translate(-50%, -50%);text-align:center;z-index:999;transition:.3s ease-in-out;}
@keyframes wswpop {
@@ -76,9 +76,9 @@ div#bgmplayer p {line-height:20px;color:#9A9A9A;margin-top:-10px;font-style:ital
}
}
-/* Auto-resizer, do not change pls*/
-@media (max-width: 768px) {div.row {width: 95%}}
-@media (min-width: 1500px) {div.row {width: 40%}}
+/* Auto-resizer, do not change pls*/ /* i added plrfix, i changed it, dont kill me gemdation pls (dont change what i added either plz plz) */
+@media (max-width: 768px) {div.row {width: 95%} div#bgmplayer{ top:0px; position:fixed; } }
+@media (min-width: 1500px) {div.row {width: 40%}; div#bgmplayer{ position:fixed; left:3px !important; float:left;}}
/* Dark theme via system preference */
@media (prefers-color-scheme: dark)
diff --git a/meta/music.js b/meta/music.js
index c6c32f0..0da4476 100644
--- a/meta/music.js
+++ b/meta/music.js
@@ -28,8 +28,10 @@ function loadafterwednesdaycheck() {
if (localStorage.getItem("shopmusic") === "playing") {
playBGMonload();
+ activatebgmplayer();
} else {
pauseBGM();
+ deactivatebgmplayer();
}
}
@@ -41,14 +43,14 @@ function playBGM() {
shoploop.volume = 0.8;
localStorage.setItem("shopmusic", "playing");
shoploop.play();
- document.getElementById("shopbgm").innerHTML = "Pause";
+ document.getElementById("shopbgm").innerText = "Pause";
document.getElementById("shopbgmselector").href = "javascript:pauseBGM();";
}
function pauseBGM() {
localStorage.setItem("shopmusic", "paused");
shoploop.pause();
- document.getElementById("shopbgm").innerHTML = "Play";
+ document.getElementById("shopbgm").innerText = "Play";
document.getElementById("shopbgmselector").href = "javascript:playBGM();";
}
@@ -57,7 +59,7 @@ function playBGMonload() {
fadeinbgm();
localStorage.setItem("shopmusic", "playing");
shoploop.play();
- document.getElementById("shopbgm").innerHTML = "Pause";
+ document.getElementById("shopbgm").innerText = "Pause";
document.getElementById("shopbgmselector").href = "javascript:pauseBGM();";
}
@@ -95,4 +97,12 @@ function fade8() {
}
function fade9() {
shoploop.volume="0.8";
+}
+function activatebgmplayer() {
+ document.getElementById('bgmplayer').classList.add('bgmplayerdisplayed');
+ document.getElementById("bgmplrtitle").innerText="BGM player"; document.getElementById("bgmplrtitle").style.marginTop="0px";
+}
+function deactivatebgmplayer() {
+ document.getElementById('bgmplayer').classList.remove('bgmplayerdisplayed');
+ document.getElementById("bgmplrtitle").innerText="bgm plr.."; document.getElementById("bgmplrtitle").style.marginTop="-5px";
}
\ No newline at end of file
diff --git a/specials.html b/specials.html
index f36edfa..91e4838 100644
--- a/specials.html
+++ b/specials.html
@@ -18,13 +18,8 @@
-
-
-
BGM player
-
Play
-
Enable audio autoplay in your browser for it to continue playing throughout the website.
-
-
+
+
diff --git a/support.html b/support.html
index 67d88fd..33738b0 100644
--- a/support.html
+++ b/support.html
@@ -24,13 +24,8 @@
button#scrollUp.show {display:block;opacity:1;transform: translateY(0);}
-
-
-
BGM player
-
Play
-
Enable audio autoplay in your browser for it to continue playing throughout the website.
-
-
+
+