diff --git a/css/bookmarklets.css b/css/bookmarklets.css index ac4bbb1..07f2416 100644 --- a/css/bookmarklets.css +++ b/css/bookmarklets.css @@ -35,4 +35,9 @@ flex-direction: row; justify-content: center; flex-wrap: wrap; +} +@-moz-document url-prefix() { + .bookmarkletdiv { + backdrop-filter: blur(0); + } } \ No newline at end of file diff --git a/css/games.css b/css/games.css index cf8960e..98844e8 100755 --- a/css/games.css +++ b/css/games.css @@ -72,4 +72,9 @@ game img { } body { justify-content: flex-start; +} +@-moz-document url-prefix() { + game { + backdrop-filter: blur(0); + } } \ No newline at end of file diff --git a/css/loader.css b/css/loader.css index 660e4b4..3c62cba 100644 --- a/css/loader.css +++ b/css/loader.css @@ -48,4 +48,9 @@ justify-content: flex-end; align-items: center; margin: 12px; +} +@-moz-document url-prefix() { + #gamecontainer { + backdrop-filter: blur(0); + } } \ No newline at end of file diff --git a/css/pages.css b/css/pages.css index 383131b..a3284b9 100755 --- a/css/pages.css +++ b/css/pages.css @@ -168,4 +168,9 @@ input[type=text]::placeholder, input[type=password]::placeholder { } input[type=checkbox] { margin: 4px; +} +@-moz-document url-prefix() { + #popup { + backdrop-filter: blur(0); + } } \ No newline at end of file diff --git a/css/profile.css b/css/profile.css index 803f08a..67b5855 100644 --- a/css/profile.css +++ b/css/profile.css @@ -135,4 +135,9 @@ result p { max-width: 50%; width: 50%; } +} +@-moz-document url-prefix() { + section { + backdrop-filter: blur(0); + } } \ No newline at end of file diff --git a/css/settings.css b/css/settings.css index 88214b9..9fd09e6 100644 --- a/css/settings.css +++ b/css/settings.css @@ -21,4 +21,9 @@ sections { display: flex; justify-content: center; align-items: center; +} +@-moz-document url-prefix() { + section { + backdrop-filter: blur(0); + } } \ No newline at end of file diff --git a/css/users.css b/css/users.css index f42522b..e054d32 100644 --- a/css/users.css +++ b/css/users.css @@ -47,4 +47,9 @@ } .pages-btn { margin: 6px; +} +@-moz-document url-prefix() { + .users { + backdrop-filter: blur(0); + } } \ No newline at end of file diff --git a/info.html b/info.html index 17c537a..6760574 100644 --- a/info.html +++ b/info.html @@ -7,7 +7,7 @@ - + @@ -44,6 +44,11 @@
3kh0 assets by 3kh0 (games)
+more ports by bog (games)
cobalt by imputnet (music implementation)
you can either email us or join the discord to suggest a game/other improvements.
diff --git a/js/main.js b/js/main.js index 9a81808..73ebb79 100755 --- a/js/main.js +++ b/js/main.js @@ -6,13 +6,13 @@ function setBackground() { } function loadPJS() { let div = document.createElement("div"); - div.id = "particles-js"; + div.id = "pjs"; document.body.appendChild(div); let script = document.createElement("script"); script.src = "https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"; document.head.appendChild(script); script.addEventListener("load", ()=>{ - particlesJS.load('particles-js', "/js/particlesjs-config.json", ()=>{}); + particlesJS.load('pjs', "/js/particlesjs-config.json", ()=>{}); }); } @@ -47,7 +47,7 @@ document.addEventListener("DOMContentLoaded", ()=>{ }) document.addEventListener("scroll", ()=>{ - document.getElementById("particles-js").style.top = window.scrollY + "px"; + document.getElementById("pjs").style.top = window.scrollY + "px"; })