v2 #1

Merged
sky merged 21 commits from development into main 2025-10-26 12:55:13 -04:00
126 changed files with 1983 additions and 16739 deletions
Showing only changes of commit 9270c8183e - Show all commits

View File

@ -35,4 +35,9 @@
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
}
@-moz-document url-prefix() {
.bookmarkletdiv {
backdrop-filter: blur(0);
}
}

View File

@ -72,4 +72,9 @@ game img {
}
body {
justify-content: flex-start;
}
@-moz-document url-prefix() {
game {
backdrop-filter: blur(0);
}
}

View File

@ -48,4 +48,9 @@
justify-content: flex-end;
align-items: center;
margin: 12px;
}
@-moz-document url-prefix() {
#gamecontainer {
backdrop-filter: blur(0);
}
}

View File

@ -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);
}
}

View File

@ -135,4 +135,9 @@ result p {
max-width: 50%;
width: 50%;
}
}
@-moz-document url-prefix() {
section {
backdrop-filter: blur(0);
}
}

View File

@ -21,4 +21,9 @@ sections {
display: flex;
justify-content: center;
align-items: center;
}
@-moz-document url-prefix() {
section {
backdrop-filter: blur(0);
}
}

View File

@ -47,4 +47,9 @@
}
.pages-btn {
margin: 6px;
}
@-moz-document url-prefix() {
.users {
backdrop-filter: blur(0);
}
}

View File

@ -7,7 +7,7 @@
<!-- initialize externals -->
<meta property="og:title" content="Selenite" />
<meta property="description" content="Selenite is the best unblocked games site. With over 400 games and an account system, no other websites come close to Selenite." />
<meta name="keywords" content="proxy, web proxy, unblock websites, unblock chromebook, free web proxy, proxy list, proxy sites, un block chromebook, online proxy, proxy server, proxysite, proxy youtube, bypass securly, bypass iboss, bypass lightspeed filter, chromebooks, unblock youtube, youtube proxy, unblocked youtube, youtube unblocked, unblock games, selenite, unblocked games, free games">
<meta content="/favicon.png" property="og:image" />
<meta content="#c77dff" data-react-helmet="true" name="theme-color" />
<meta name="googlebot" content="index, follow, snippet" />
@ -44,6 +44,11 @@
<title>Selenite</title>
<link rel="icon" href="/favicon.ico" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3415518411898563" crossorigin="anonymous"></script>
<style>
p {
width: 60%;
}
</style>
</head>
<alerts> </alerts>
<body>
@ -53,6 +58,7 @@
<p><a href="https://github.com/a456pur/seraph">seraph</a> by <a href="https://a456pur.dev">a456pur</a> (games)</p>
<p><a href="https://gitlab.com/3kh0/3kh0-assets">3kh0 assets</a> by <a href="https://3kh0.com">3kh0</a> (games)</p>
<p><a href="https://github.com/genizy/web-port">web ports</a> by <a href="https://gn-math.github.io/">gn-math</a> (games)</p>
<p><a href="https://github.com/genizy/web-port">more ports</a> by <a href="https://truffled.lol/">bog</a> (games)</p>
<p><a href="https://cobalt.tools">cobalt</a> by <a href="https://github.com/imputnet">imputnet</a> (music implementation)</p>
<h2>suggest a game</h2>
<p>you can either <a href="support@selenite.cc">email us</a> or <a href="https://discord.gg/discord">join the discord</a> to suggest a game/other improvements.</p>

View File

@ -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";
})