stuff idk
This commit is contained in:
@ -36,3 +36,8 @@
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
@-moz-document url-prefix() {
|
||||
.bookmarkletdiv {
|
||||
backdrop-filter: blur(0);
|
||||
}
|
||||
}
|
||||
@ -73,3 +73,8 @@ game img {
|
||||
body {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
@-moz-document url-prefix() {
|
||||
game {
|
||||
backdrop-filter: blur(0);
|
||||
}
|
||||
}
|
||||
@ -49,3 +49,8 @@
|
||||
align-items: center;
|
||||
margin: 12px;
|
||||
}
|
||||
@-moz-document url-prefix() {
|
||||
#gamecontainer {
|
||||
backdrop-filter: blur(0);
|
||||
}
|
||||
}
|
||||
@ -169,3 +169,8 @@ input[type=text]::placeholder, input[type=password]::placeholder {
|
||||
input[type=checkbox] {
|
||||
margin: 4px;
|
||||
}
|
||||
@-moz-document url-prefix() {
|
||||
#popup {
|
||||
backdrop-filter: blur(0);
|
||||
}
|
||||
}
|
||||
@ -136,3 +136,8 @@ result p {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
@-moz-document url-prefix() {
|
||||
section {
|
||||
backdrop-filter: blur(0);
|
||||
}
|
||||
}
|
||||
@ -22,3 +22,8 @@ sections {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
@-moz-document url-prefix() {
|
||||
section {
|
||||
backdrop-filter: blur(0);
|
||||
}
|
||||
}
|
||||
@ -48,3 +48,8 @@
|
||||
.pages-btn {
|
||||
margin: 6px;
|
||||
}
|
||||
@-moz-document url-prefix() {
|
||||
.users {
|
||||
backdrop-filter: blur(0);
|
||||
}
|
||||
}
|
||||
@ -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>
|
||||
|
||||
@ -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";
|
||||
})
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user