Compare commits
No commits in common. "1.0" and "main" have entirely different histories.
2
.env.defaults
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
MASQR_ENABLED=false
|
||||||
|
PORT=3000
|
||||||
3
.eslintignore
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
|
public/
|
||||||
47
.eslintrc.cjs
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
module.exports = {
|
||||||
|
env: {
|
||||||
|
node: true,
|
||||||
|
es2022: true,
|
||||||
|
browser: true,
|
||||||
|
},
|
||||||
|
extends: ["eslint:recommended", "plugin:astro/recommended"],
|
||||||
|
parserOptions: {
|
||||||
|
ecmaVersion: "latest",
|
||||||
|
sourceType: "module",
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
"no-unused-vars": "error",
|
||||||
|
"no-undef": "off",
|
||||||
|
"prefer-const": "error",
|
||||||
|
"no-case-declarations": "off",
|
||||||
|
},
|
||||||
|
ignorePatterns: ["env.d.ts", "middleware/", "public/"],
|
||||||
|
overrides: [
|
||||||
|
{
|
||||||
|
files: ["*.astro"],
|
||||||
|
parser: "astro-eslint-parser",
|
||||||
|
parserOptions: {
|
||||||
|
parser: "@typescript-eslint/parser",
|
||||||
|
extraFileExtensions: [".astro"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
files: ["*.ts", "*.tsx"],
|
||||||
|
parser: "@typescript-eslint/parser",
|
||||||
|
parserOptions: {
|
||||||
|
project: "./tsconfig.json",
|
||||||
|
},
|
||||||
|
plugins: ["@typescript-eslint"],
|
||||||
|
extends: ["plugin:@typescript-eslint/recommended"],
|
||||||
|
rules: {
|
||||||
|
"@typescript-eslint/no-explicit-any": "off",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Define the configuration for `<script>` tag.
|
||||||
|
// Script in `<script>` is assigned a virtual file name with the `.js` extension.
|
||||||
|
files: ["**/*.astro/*.js", "*.astro/*.js"],
|
||||||
|
parser: "@typescript-eslint/parser",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
8
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
# build output
|
||||||
|
dist/
|
||||||
|
.astro/
|
||||||
|
node_modules/
|
||||||
|
npm-debug.log*
|
||||||
|
.env
|
||||||
|
public/games/**
|
||||||
|
exempt_masqr.txt
|
||||||
3
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "public/games"]
|
||||||
|
path = public/games
|
||||||
|
url = https://github.com/wearrrrr/alu-games
|
||||||
3
.prettierignore
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
dist
|
||||||
|
node_modules
|
||||||
|
public
|
||||||
11
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"search.exclude": {
|
||||||
|
"/public/games/**": true
|
||||||
|
},
|
||||||
|
"files.exclude": {
|
||||||
|
"**/*.rpyc": true,
|
||||||
|
"**/*.rpa": true,
|
||||||
|
"**/*.rpymc": true,
|
||||||
|
"**/cache/": true
|
||||||
|
}
|
||||||
|
}
|
||||||
421
404/404.css
|
|
@ -1,421 +0,0 @@
|
||||||
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
|
|
||||||
* {
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
background-color: #3B4252;
|
|
||||||
max-width: 100vw;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1269px) {
|
|
||||||
.header-item {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box !important;
|
|
||||||
display: -ms-flexbox !important;
|
|
||||||
display: flex !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1269px) {
|
|
||||||
.mobile-header {
|
|
||||||
height: 0%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-background {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
padding-top: 2%;
|
|
||||||
padding-bottom: 2%;
|
|
||||||
height: 90px;
|
|
||||||
width: 21%;
|
|
||||||
color: #D8DEE9;
|
|
||||||
background-color: #81A1C1;
|
|
||||||
font-size: 1.3rem;
|
|
||||||
list-style-type: none;
|
|
||||||
border: none !important;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
color: #D8DEE9;
|
|
||||||
margin-left: 3rem;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 500ms;
|
|
||||||
transition: 500ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title:hover {
|
|
||||||
font-size: 1.11em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
width: 80%;
|
|
||||||
margin: 0 auto;
|
|
||||||
-webkit-box-pack: right;
|
|
||||||
-ms-flex-pack: right;
|
|
||||||
justify-content: right;
|
|
||||||
list-style-type: none;
|
|
||||||
gap: 3rem;
|
|
||||||
-webkit-box-align: end;
|
|
||||||
-ms-flex-align: end;
|
|
||||||
align-items: flex-end;
|
|
||||||
background-color: #81A1C1;
|
|
||||||
padding: 2%;
|
|
||||||
height: 90px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 350ms ease-in-out;
|
|
||||||
transition: 350ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item:hover {
|
|
||||||
font-size: 1.07em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* mobile support moment*/
|
|
||||||
.mobile-toggle {
|
|
||||||
display: none;
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 750ms ease-in-out;
|
|
||||||
transition: 750ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile-toggle-disable {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
position: absolute;
|
|
||||||
top: -50%;
|
|
||||||
-webkit-transition: 750ms ease-in-out;
|
|
||||||
transition: 750ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile-header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-ms-flex-preferred-size: 1;
|
|
||||||
flex-basis: 1;
|
|
||||||
-webkit-transition: max-height 750ms ease-in-out;
|
|
||||||
transition: max-height 750ms ease-in-out;
|
|
||||||
width: 100%;
|
|
||||||
max-height: 0vh;
|
|
||||||
height: 50vh;
|
|
||||||
background-color: #81A1C1;
|
|
||||||
overflow: hidden;
|
|
||||||
overflow-y: scroll;
|
|
||||||
gap: 0.8rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile-header::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile-nav-header-item {
|
|
||||||
color: #D8DEE9;
|
|
||||||
font-size: 1.4em;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 750ms ease-in-out;
|
|
||||||
transition: 750ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-content {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
margin-top: 50px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fade-in {
|
|
||||||
animation: fadein 1s;
|
|
||||||
-webkit-animation: fadein 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-text {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subtitle-text {
|
|
||||||
text-align: center;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-container {
|
|
||||||
overflow: hidden;
|
|
||||||
background: #000;
|
|
||||||
color: #fff;
|
|
||||||
height: 0;
|
|
||||||
padding: 0 18px;
|
|
||||||
width: 100px;
|
|
||||||
-webkit-transition: all .5s ease;
|
|
||||||
transition: all .5s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxies-button {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
padding: 15px;
|
|
||||||
padding-left: 40px;
|
|
||||||
padding-right: 40px;
|
|
||||||
border: 5px solid white;
|
|
||||||
-webkit-transition: 400ms ease-out;
|
|
||||||
transition: 400ms ease-out;
|
|
||||||
border-radius: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxies-button:hover {
|
|
||||||
background-color: #D8DEE9;
|
|
||||||
color: #3B4252;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mid-content {
|
|
||||||
position: relative;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
position: relative;
|
|
||||||
background-color: #81A1C1;
|
|
||||||
width: 90%;
|
|
||||||
border-radius: 1.5rem;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
top: 4rem;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mid-content-title {
|
|
||||||
font-size: 1.5em;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.middle-content {
|
|
||||||
font-size: 1rem;
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
.options {
|
|
||||||
color: white;
|
|
||||||
list-style: none;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer {
|
|
||||||
-webkit-transform: translateY(140px);
|
|
||||||
transform: translateY(140px);
|
|
||||||
padding-top: 20vw;
|
|
||||||
background-image: url("/img/waves.svg");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 100vw auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 800px) {
|
|
||||||
#footer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 25px 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 15px 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 380px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 5px 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a:hover {
|
|
||||||
text-decoration: underline !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand p {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li {
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li > a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist > * {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials a {
|
|
||||||
display: inline-block;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
line-height: 20px;
|
|
||||||
padding: 6px;
|
|
||||||
margin: 0 5px;
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
.copyright {
|
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.tooltip {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext {
|
|
||||||
visibility: hidden;
|
|
||||||
width: 140px;
|
|
||||||
background-color: #D8DEE9;
|
|
||||||
color: #3B4252;
|
|
||||||
text-align: center;
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 5px;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
bottom: -200%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -75px;
|
|
||||||
opacity: 0;
|
|
||||||
-webkit-transition: opacity 0.3s;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
top: -30%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -5px;
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #D8DEE9 transparent transparent transparent;
|
|
||||||
-webkit-transform: rotate(180deg);
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip:hover .tooltiptext {
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
89
404/404.html
|
|
@ -1,89 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Alu's Unblocker</title>
|
|
||||||
<link rel="icon" href="../img/icon.svg">
|
|
||||||
<link rel="stylesheet" href="/404/404.css">
|
|
||||||
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css">
|
|
||||||
<link rel="stylesheet" href="/vendor/normalize.css/normalize.css">
|
|
||||||
<link rel="stylesheet" href="/vendor/aos/aos.css" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
|
|
||||||
<script src="/main.js"></script> <!--header moment-->
|
|
||||||
<div class="top-header" data-aos="fade-down" data-aos-duration="1000">
|
|
||||||
<div class="title-background"><a class="title" href="/">Alu's Unblocker</a></div>
|
|
||||||
<div class="header">
|
|
||||||
<a href="/proxies" class="header-item">Proxies</a>
|
|
||||||
<a href="/games" class="header-item">Games</a>
|
|
||||||
<a href="/youtube" class="header-item">Youtube</a>
|
|
||||||
<a href="/discord" class="header-item">Discord</a>
|
|
||||||
<a href="/reddit" class="header-item">Reddit</a>
|
|
||||||
<a href="/spotify" class="header-item">Spotify</a>
|
|
||||||
<a href="/nowgg" class="header-item">Now.gg</a>
|
|
||||||
<a href="/settings" class="header-item"><i class="fa-solid fa-gear"></i> Settings</a>
|
|
||||||
<a href="#" id="nav-toggle" class="mobile-toggle" onclick="showMobileNav()"><i id="nav-icon"class="fa-2x fa-solid fa-bars"></i></a>
|
|
||||||
<a href="#" id="nav-toggle-disable" class="mobile-toggle-disable" onclick="hideMobileNav()"><i class="fa-2x fa-solid fa-x"></i></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="mobile-nav-header">
|
|
||||||
<div id="mobile-header" class="mobile-header" data-aos="fade-down" data-aos-duration="1000">
|
|
||||||
<a href="#" class="mobile-nav-header-item">Proxies</a>
|
|
||||||
<a href="#" class="mobile-nav-header-item">Games</a>
|
|
||||||
<a href="#" class="mobile-nav-header-item">Youtube</a>
|
|
||||||
<a href="#" class="mobile-nav-header-item">Discord</a>
|
|
||||||
<a href="#" class="mobile-nav-header-item">Reddit</a>
|
|
||||||
<a href="#" class="mobile-nav-header-item">Spotify</a>
|
|
||||||
<a href="#" class="mobile-nav-header-item">Now.gg</a>
|
|
||||||
<a href="./settings.html" class="mobile-nav-header-item"><i class="fa-solid fa-gear"></i> Settings</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="main-content">
|
|
||||||
<h1 class="title-text fade-in">Error: 404!</h1>
|
|
||||||
<h4 class="subtitle-text fade-in">The page was not found on the server!</h4>
|
|
||||||
<a class="proxies-button" href="/">Return Home</a>
|
|
||||||
<div class="options-container">
|
|
||||||
<h1 class="title-text fade-in">Here are some options:</h1>
|
|
||||||
<ul>
|
|
||||||
<li class="options">Press the literally massive button right above this</li>
|
|
||||||
<li class="options">Join the Discord</li>
|
|
||||||
<li class="options">Cry</li>
|
|
||||||
<li class="options">Make a Ticket on our Discord (please don't unless this is an actual issue)</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer">
|
|
||||||
<div class="footerflex">
|
|
||||||
<div class="footerbrand">
|
|
||||||
<h3><a href="/">Alu's Unblocker</a></h3>
|
|
||||||
<p>Made with ❤️ by <a href="#">wearr</a></p>
|
|
||||||
</div>
|
|
||||||
<div class="footerlist">
|
|
||||||
<h3>Services</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Ultraviolet">Ultraviolet</a></li>
|
|
||||||
<li><a target="_blank" href="https://github.com/binary-person/rammerhead">Rammerhead</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="footerlist">
|
|
||||||
<h3>Socials</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Holy-Unblocker">GitHub</a></li>
|
|
||||||
<li><a href="/terms.html">Instagram</a></li>
|
|
||||||
<div class="tooltip">
|
|
||||||
<span class="tooltiptext" id="myTooltip">Copy</span>
|
|
||||||
<li><a onclick="copyDiscord();" onmouseout="outFunc();" class="discord-text">Discord</a></li>
|
|
||||||
</div>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="copyright">Alu's Unblocker © 2022</p>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
38
Checkfailed.html
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Welcome to nginx!</title>
|
||||||
|
<style>
|
||||||
|
html {
|
||||||
|
color-scheme: light dark;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
width: 35em;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Welcome to nginx!</h1>
|
||||||
|
<p>
|
||||||
|
If you see this page, the nginx web server is successfully installed and working. Further configuration is required. If you are expecting another page, please check your network or
|
||||||
|
<a href="/" id="rcheck"><b>Refresh this page</b></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
For online documentation and support please refer to
|
||||||
|
<a href="http://nginx.org/">nginx.org</a>.<br />
|
||||||
|
Commercial support is available at
|
||||||
|
<a href="http://nginx.com/">nginx.com</a>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p><em>Thank you for using nginx.</em></p>
|
||||||
|
<script>
|
||||||
|
if (!localStorage["auth"] && new URL(document.all.rcheck.href).password) {
|
||||||
|
window.location.reload();
|
||||||
|
localStorage["auth"] = 1;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
18
Dockerfile
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
FROM node:lts
|
||||||
|
|
||||||
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
|
# Copying package.json and pnpm-lock helps with caching
|
||||||
|
COPY package.json pnpm-lock.yaml ./
|
||||||
|
|
||||||
|
RUN npm i -g pnpm
|
||||||
|
|
||||||
|
RUN pnpm install
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN pnpm run build
|
||||||
|
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
CMD ["pnpm", "start"]
|
||||||
674
LICENSE
Normal file
|
|
@ -0,0 +1,674 @@
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||||
59
README.md
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
<p align="center">
|
||||||
|
<img src="https://github.com/titaniumnetwork-dev/Alu/assets/99224452/d740378b-3fba-4470-8f06-3eefdae8a313" alt="AluLogo" width="250"/>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
# Alu
|
||||||
|
|
||||||
|
Alu is a beautiful, functional, and sleek web proxy that prioritizes customization and ease of use.
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
# Features
|
||||||
|
|
||||||
|
- 🌐 UV and Rammerhead support
|
||||||
|
- 🎨 Multiple Themes to choose from
|
||||||
|
- 🏬 Marketplace for Themes and Extensions
|
||||||
|
- 🕶 Multiple site cloaking options
|
||||||
|
- 🎮 50+ Games to choose from
|
||||||
|
- 🌎 Support for **6** Languages
|
||||||
|
- 🚀 High performance
|
||||||
|
- 🔍 Multiple Search Engines to pick from
|
||||||
|
|
||||||
|
# Deploying Alu
|
||||||
|
|
||||||
|
Deploying Alu is about as simple as it gets.
|
||||||
|
|
||||||
|
1. Open your terminal and type `git clone https://github.com/titaniumnetwork-dev/Alu --recurse-submodules`
|
||||||
|
|
||||||
|
2. Install pnpm with `npm i -g pnpm`.
|
||||||
|
|
||||||
|
3. Then simply run `pnpm i` to install all node_modules, and build the frontend with `pnpm run build`; this shouldn't take more than a couple seconds.
|
||||||
|
|
||||||
|
4. Finally, run `pnpm start` to actually serve Alu! It defaults to port 3000 for everything, but this can be specified in an env file.
|
||||||
|
|
||||||
|
Congrats! You should now be running your very own instance of Alu! 🎉
|
||||||
|
|
||||||
|
> [!WARNING]
|
||||||
|
> Recursing all submodules will install [alu-games](https://github.com/wearrrrr/alu-games) as well. This repo contains _all_ games for Alu and is quite large! If you wish to skip it, simply remove `--recurse-submodules` from your clone command.
|
||||||
|
|
||||||
|
## What about Docker?
|
||||||
|
|
||||||
|
Alu can be easily dockerized with the `Dockerfile` provided in the repository. Simply run `docker build -t alu .` to build the image, and then `docker run -p 3000:3000 alu` to run the container, and you're good to go!
|
||||||
|
|
||||||
|
# Technologies
|
||||||
|
|
||||||
|
- Ultraviolet by Titanium Network
|
||||||
|
- Bare Server from TompHTTP
|
||||||
|
- Wisp Server Node by Mercury Workshop
|
||||||
|
- Rammerhead by binary-person
|
||||||
|
- Astro from astro.build
|
||||||
|
- Typescript
|
||||||
|
- ExpressJS
|
||||||
|
- Prettier
|
||||||
|
- ESLint
|
||||||
|
|
||||||
|
# License
|
||||||
|
|
||||||
|
Alu is licensed under the GNU GPL v3.0 License as of 2/9/2024.
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB |
31
astro.config.mjs
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
import { defineConfig } from "astro/config";
|
||||||
|
import node from "@astrojs/node";
|
||||||
|
import dotenv from "dotenv-flow";
|
||||||
|
import sitemap from '@astrojs/sitemap';
|
||||||
|
dotenv.config();
|
||||||
|
|
||||||
|
// Check if node is running in production mode
|
||||||
|
// const prodBuild = process.env.NODE_ENV === "production";
|
||||||
|
const prodBuild = process.env.IS_PROD === "true";
|
||||||
|
|
||||||
|
const site = prodBuild ? "https://aluu.xyz" : "http://localhost:3000";
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
site: site,
|
||||||
|
integrations: [
|
||||||
|
sitemap({
|
||||||
|
lastmod: new Date(),
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
output: "server",
|
||||||
|
adapter: node({
|
||||||
|
mode: "middleware",
|
||||||
|
}),
|
||||||
|
vite: {
|
||||||
|
server: {
|
||||||
|
watch: {
|
||||||
|
usePolling: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
@ -1,88 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Credits</title>
|
|
||||||
<script src="/js/themes/loadCredits.js"></script>
|
|
||||||
<link rel="stylesheet" href="/vendor/aos/aos.css" />
|
|
||||||
<link rel="icon" href="/img/icon.png">
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<script>
|
|
||||||
if ('serviceWorker' in navigator) {
|
|
||||||
window.addEventListener('load', () => {
|
|
||||||
navigator.serviceWorker.register('/pwabuilder-sw.js').then((reg) => {
|
|
||||||
console.log('Service worker registered.', reg);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script src="/vendor/aos/aos.js"></script>
|
|
||||||
<script src="/main.js"></script>
|
|
||||||
<script src="/toggles.js"></script>
|
|
||||||
<script src="/header.js"></script>
|
|
||||||
<div class="top-header" data-aos="fade-down" data-aos-duration="1000">
|
|
||||||
<div id="title-background" class="title-background"><a id="nav-toggle" class="mobile-toggle" onclick="openNav()"><svg class="menu-bar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM0 256C0 238.3 14.33 224 32 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H32C14.33 288 0 273.7 0 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z"/></svg></a></div>
|
|
||||||
</div>
|
|
||||||
<div id="sidenav" class="sidenav">
|
|
||||||
<a class="closebtn" onclick="closeNav()">×</a>
|
|
||||||
<br>
|
|
||||||
<a href="/" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 576 512"><path d="M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.5 450.5 512.3 453.1 512 455.8V472C512 494.1 494.1 512 472 512H456C454.9 512 453.8 511.1 452.7 511.9C451.3 511.1 449.9 512 448.5 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5z"/></svg> Home</a>
|
|
||||||
<a href="/proxies" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 512 512"><path d="M432 64H208C199.2 64 192 71.16 192 80V96H128V80C128 35.82 163.8 0 208 0H432C476.2 0 512 35.82 512 80V304C512 348.2 476.2 384 432 384H416V320H432C440.8 320 448 312.8 448 304V80C448 71.16 440.8 64 432 64zM0 192C0 156.7 28.65 128 64 128H320C355.3 128 384 156.7 384 192V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V192zM96 256H288C305.7 256 320 241.7 320 224C320 206.3 305.7 192 288 192H96C78.33 192 64 206.3 64 224C64 241.7 78.33 256 96 256z"/></svg> Proxies</a>
|
|
||||||
<a href="/games" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 640 512"><path d="M448 64H192C85.96 64 0 149.1 0 256s85.96 192 192 192h256c106 0 192-85.96 192-192S554 64 448 64zM247.1 280h-32v32c0 13.2-10.78 24-23.98 24c-13.2 0-24.02-10.8-24.02-24v-32L136 279.1C122.8 279.1 111.1 269.2 111.1 256c0-13.2 10.85-24.01 24.05-24.01L167.1 232v-32c0-13.2 10.82-24 24.02-24c13.2 0 23.98 10.8 23.98 24v32h32c13.2 0 24.02 10.8 24.02 24C271.1 269.2 261.2 280 247.1 280zM431.1 344c-22.12 0-39.1-17.87-39.1-39.1s17.87-40 39.1-40s39.1 17.88 39.1 40S454.1 344 431.1 344zM495.1 248c-22.12 0-39.1-17.87-39.1-39.1s17.87-40 39.1-40c22.12 0 39.1 17.88 39.1 40S518.1 248 495.1 248z"/></svg> Games</a>
|
|
||||||
<div class="divider"></div>
|
|
||||||
<a href="/bookmarklets" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 384 512"><path d="M384 48V512l-192-112L0 512V48C0 21.5 21.5 0 48 0h288C362.5 0 384 21.5 384 48z"/></svg> Bookmarklets</a>
|
|
||||||
<a href="/settings" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 512 512"><path d="M495.9 166.6C499.2 175.2 496.4 184.9 489.6 191.2L446.3 230.6C447.4 238.9 448 247.4 448 256C448 264.6 447.4 273.1 446.3 281.4L489.6 320.8C496.4 327.1 499.2 336.8 495.9 345.4C491.5 357.3 486.2 368.8 480.2 379.7L475.5 387.8C468.9 398.8 461.5 409.2 453.4 419.1C447.4 426.2 437.7 428.7 428.9 425.9L373.2 408.1C359.8 418.4 344.1 427 329.2 433.6L316.7 490.7C314.7 499.7 307.7 506.1 298.5 508.5C284.7 510.8 270.5 512 255.1 512C241.5 512 227.3 510.8 213.5 508.5C204.3 506.1 197.3 499.7 195.3 490.7L182.8 433.6C167 427 152.2 418.4 138.8 408.1L83.14 425.9C74.3 428.7 64.55 426.2 58.63 419.1C50.52 409.2 43.12 398.8 36.52 387.8L31.84 379.7C25.77 368.8 20.49 357.3 16.06 345.4C12.82 336.8 15.55 327.1 22.41 320.8L65.67 281.4C64.57 273.1 64 264.6 64 256C64 247.4 64.57 238.9 65.67 230.6L22.41 191.2C15.55 184.9 12.82 175.3 16.06 166.6C20.49 154.7 25.78 143.2 31.84 132.3L36.51 124.2C43.12 113.2 50.52 102.8 58.63 92.95C64.55 85.8 74.3 83.32 83.14 86.14L138.8 103.9C152.2 93.56 167 84.96 182.8 78.43L195.3 21.33C197.3 12.25 204.3 5.04 213.5 3.51C227.3 1.201 241.5 0 256 0C270.5 0 284.7 1.201 298.5 3.51C307.7 5.04 314.7 12.25 316.7 21.33L329.2 78.43C344.1 84.96 359.8 93.56 373.2 103.9L428.9 86.14C437.7 83.32 447.4 85.8 453.4 92.95C461.5 102.8 468.9 113.2 475.5 124.2L480.2 132.3C486.2 143.2 491.5 154.7 495.9 166.6V166.6zM256 336C300.2 336 336 300.2 336 255.1C336 211.8 300.2 175.1 256 175.1C211.8 175.1 176 211.8 176 255.1C176 300.2 211.8 336 256 336z"/></svg> Settings</a>
|
|
||||||
<div class="divider"></div>
|
|
||||||
<a href="./credits" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 448 512"><path d="M256 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H256C273.7 32 288 46.33 288 64C288 81.67 273.7 96 256 96zM256 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H256C273.7 288 288 302.3 288 320C288 337.7 273.7 352 256 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z"/></svg> Credits</a>
|
|
||||||
<a href="./docs.html" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 448 512"><path d="M448 336v-288C448 21.49 426.5 0 400 0H352v191.1c0 13.41-15.52 20.88-25.1 12.49L272 160L217.1 204.5C207.5 212.8 192 205.4 192 191.1V0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-32c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448z"/></svg> Docs</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="main-content">
|
|
||||||
<h1 class="title-text fade-in">Credits</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="credits">
|
|
||||||
<p class="credit-item">Ultraviolet - Created by Titanium Network</p>
|
|
||||||
<p class="credit-item">Rammerhead - Created by binary-person</p>
|
|
||||||
<p class="credit-item">Games provided by 3kh0</p>
|
|
||||||
<p class="credit-item">Website UI created by wearr</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<br><br>
|
|
||||||
<div id="footer">
|
|
||||||
<div class="footerflex">
|
|
||||||
<div class="footerbrand">
|
|
||||||
<h3><a href="/">Alu's Unblocker</a></h3>
|
|
||||||
<p>Made with ❤️ by <a href="#">wearr</a></p>
|
|
||||||
</div>
|
|
||||||
<div class="footerlist">
|
|
||||||
<h3>Services</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Ultraviolet">Ultraviolet</a></li>
|
|
||||||
<li><a target="_blank" href="https://github.com/binary-person/rammerhead">Rammerhead</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="footerlist">
|
|
||||||
<h3>Socials</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Holy-Unblocker">GitHub</a></li>
|
|
||||||
<li><a href="/terms.html">Instagram</a></li>
|
|
||||||
<div class="tooltip">
|
|
||||||
<span class="tooltiptext" id="myTooltip">Copy to clipboard</span>
|
|
||||||
<li><a onclick="copyDiscord();" onmouseout="outFunc();" class="discord-text">Discord</a></li>
|
|
||||||
</div>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="copyright">Alu's Unblocker © 2022</p>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,508 +0,0 @@
|
||||||
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
|
|
||||||
* {
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
background-color: #46494C;
|
|
||||||
max-width: 100vw;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.material-icons {
|
|
||||||
font-family: 'Material Icons';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-size: 24px;
|
|
||||||
display: inline-block;
|
|
||||||
line-height: 1;
|
|
||||||
text-transform: none;
|
|
||||||
letter-spacing: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
direction: ltr;
|
|
||||||
/* Support for all WebKit browsers. */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
/* Support for Safari and Chrome. */
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
/* Support for Firefox. */
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
/* Support for IE. */
|
|
||||||
-webkit-font-feature-settings: 'liga';
|
|
||||||
font-feature-settings: 'liga';
|
|
||||||
}
|
|
||||||
.card {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
position: relative;
|
|
||||||
background-color: #1985A1;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
margin-top: 3rem;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.mid-content-title {
|
|
||||||
font-size: 1.5em;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.middle-content {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
.main-content {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
margin-top: 50px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fade-in {
|
|
||||||
-webkit-animation: fadein 1s;
|
|
||||||
animation: fadein 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-text {
|
|
||||||
color: white;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subtitle-text {
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.material-icons {
|
|
||||||
font-family: 'Material Icons';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-size: 24px;
|
|
||||||
/* Preferred icon size */
|
|
||||||
display: inline-block;
|
|
||||||
line-height: 1;
|
|
||||||
text-transform: none;
|
|
||||||
letter-spacing: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
direction: ltr;
|
|
||||||
/* Support for all WebKit browsers. */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
/* Support for Safari and Chrome. */
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
/* Support for Firefox. */
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
/* Support for IE. */
|
|
||||||
-webkit-font-feature-settings: 'liga';
|
|
||||||
font-feature-settings: 'liga';
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1269px) {
|
|
||||||
.header-item {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box !important;
|
|
||||||
display: -ms-flexbox !important;
|
|
||||||
display: flex !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* mobile support moment*/
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 750ms ease-in-out;
|
|
||||||
transition: 750ms ease-in-out;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1269px) {
|
|
||||||
.mobile-header {
|
|
||||||
height: 0%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-transition: 250ms ease-in;
|
|
||||||
transition: 250ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-background {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
padding-top: 2%;
|
|
||||||
padding-bottom: 2%;
|
|
||||||
height: 90px;
|
|
||||||
width: 100%;
|
|
||||||
background-color: #1985A1;
|
|
||||||
font-size: 1.05rem;
|
|
||||||
list-style-type: none;
|
|
||||||
border: none !important;
|
|
||||||
z-index: 10;
|
|
||||||
-webkit-transition: 250ms ease-in;
|
|
||||||
transition: 250ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1003px) {
|
|
||||||
.title-background {
|
|
||||||
width: 500%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
color: #D8DEE9;
|
|
||||||
margin-left: 3rem;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 500ms;
|
|
||||||
transition: 500ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title:hover {
|
|
||||||
font-size: 1.11em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
font-size: 1.05rem;
|
|
||||||
width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
-webkit-box-pack: right;
|
|
||||||
-ms-flex-pack: right;
|
|
||||||
justify-content: right;
|
|
||||||
list-style-type: none;
|
|
||||||
gap: 3rem;
|
|
||||||
-webkit-box-align: end;
|
|
||||||
-ms-flex-align: end;
|
|
||||||
align-items: flex-end;
|
|
||||||
background-color: #81A1C1;
|
|
||||||
padding: 2%;
|
|
||||||
height: 90px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 350ms ease-in-out;
|
|
||||||
transition: 350ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item:hover {
|
|
||||||
font-size: 1.07em;
|
|
||||||
}
|
|
||||||
.menu-bar {
|
|
||||||
width: 2rem;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
.header-icon {
|
|
||||||
width: 20px;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
.header-icon-sm {
|
|
||||||
width: 15px;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
.sidenav {
|
|
||||||
overflow: hidden;
|
|
||||||
height: 100%;
|
|
||||||
/* 100% Full-height */
|
|
||||||
width: 0;
|
|
||||||
/* 0 width - change this with JavaScript */
|
|
||||||
position: fixed;
|
|
||||||
/* Stay in place */
|
|
||||||
z-index: 11;
|
|
||||||
/* Stay on top */
|
|
||||||
top: 0;
|
|
||||||
/* Stay at the top */
|
|
||||||
left: 0;
|
|
||||||
background-color: #3a3c3e;
|
|
||||||
padding-top: 60px;
|
|
||||||
/* Place content 60px from the top */
|
|
||||||
-webkit-transition: 0.5s;
|
|
||||||
transition: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The navigation menu links */
|
|
||||||
.sidenav a {
|
|
||||||
width: 100vw;
|
|
||||||
padding: 8px 8px 8px 32px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ffffff;
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* When you mouse over the navigation links, change their color */
|
|
||||||
.sidenav a:hover {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Position and style the close button (top right corner) */
|
|
||||||
.sidenav .closebtn {
|
|
||||||
position: absolute;
|
|
||||||
top: 12px;
|
|
||||||
left: 0;
|
|
||||||
font-size: 36px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
|
|
||||||
@media screen and (max-height: 450px) {
|
|
||||||
.sidenav {
|
|
||||||
padding-top: 15px;
|
|
||||||
}
|
|
||||||
.sidenav a {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.divider {
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
background-color: #DCDCDD;
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext {
|
|
||||||
visibility: hidden;
|
|
||||||
width: 140px;
|
|
||||||
background-color: #D8DEE9;
|
|
||||||
color: #3B4252;
|
|
||||||
text-align: center;
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 5px;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
bottom: -200%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -75px;
|
|
||||||
opacity: 0;
|
|
||||||
-webkit-transition: opacity 0.3s;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
top: -30%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -5px;
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #D8DEE9 transparent transparent transparent;
|
|
||||||
-webkit-transform: rotate(180deg);
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip:hover .tooltiptext {
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.discord-text {
|
|
||||||
position: relative;
|
|
||||||
left: 1.5px;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-icn {
|
|
||||||
width: 2rem;
|
|
||||||
fill: #D8DEE9;
|
|
||||||
}
|
|
||||||
.patreon {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.donate-button {
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
-ms-flex-negative: 1;
|
|
||||||
flex-shrink: 1;
|
|
||||||
position: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer {
|
|
||||||
-webkit-transform: translateY(140px);
|
|
||||||
transform: translateY(140px);
|
|
||||||
padding-top: 20vw;
|
|
||||||
background-image: url("/img/darkwaves.svg");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 100vw auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 800px) {
|
|
||||||
#footer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 25px 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 15px 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 380px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 5px 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a:hover {
|
|
||||||
text-decoration: underline !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand p {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li {
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li > a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist > * {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials a {
|
|
||||||
display: inline-block;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
line-height: 20px;
|
|
||||||
padding: 6px;
|
|
||||||
margin: 0 5px;
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.copyright {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.credits {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.credit-item {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
.bookmarklets {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 1rem;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklet-btn {
|
|
||||||
color: #D8DEE9;
|
|
||||||
padding: 4px;
|
|
||||||
cursor: pointer;
|
|
||||||
border: 2px solid white;
|
|
||||||
-webkit-transition: background-color 300ms ease-in-out;
|
|
||||||
transition: background-color 300ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklet-btn:hover {
|
|
||||||
background-color: #232831;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklets > a {
|
|
||||||
width: 15%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 629px) {
|
|
||||||
.bookmarklets > a {
|
|
||||||
width: -webkit-fit-content;
|
|
||||||
width: -moz-fit-content;
|
|
||||||
width: fit-content;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.note {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
@ -1,73 +0,0 @@
|
||||||
.options {
|
|
||||||
text-align: center;
|
|
||||||
padding: 5px;
|
|
||||||
color: #D8DEE9;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.games {
|
|
||||||
border: 2px solid #D8DEE9;
|
|
||||||
padding: 1rem;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid {
|
|
||||||
color: #fff;
|
|
||||||
margin-top: -10px;
|
|
||||||
height: -webkit-max-content;
|
|
||||||
height: -moz-max-content;
|
|
||||||
height: max-content;
|
|
||||||
width: calc(100% - 60px);
|
|
||||||
-webkit-columns: 3 auto;
|
|
||||||
columns: 3 auto;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: horizontal;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
text-align: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 1rem;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 973px) {
|
|
||||||
.grid {
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 467px) {
|
|
||||||
.grid {
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.game-img {
|
|
||||||
width: 128px;
|
|
||||||
height: 128px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.game-title {
|
|
||||||
color: white;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
@ -1,57 +0,0 @@
|
||||||
.proxies-button {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
padding: 15px;
|
|
||||||
padding-left: 40px;
|
|
||||||
padding-right: 40px;
|
|
||||||
border: 5px solid white;
|
|
||||||
-webkit-transition: 400ms ease-out;
|
|
||||||
transition: 400ms ease-out;
|
|
||||||
border-radius: 30px;
|
|
||||||
}
|
|
||||||
.proxies-button:hover {
|
|
||||||
background-color: #393b3e;
|
|
||||||
color: rgb(228, 228, 228);
|
|
||||||
}
|
|
||||||
|
|
||||||
.get-involved {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gi-title {
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gi-card {
|
|
||||||
width: 80%;
|
|
||||||
margin: auto;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
background-color: #576977;
|
|
||||||
border-radius: 1em;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.donate {
|
|
||||||
color: #D8DEE9;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
.buttons {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
.buttons > a {
|
|
||||||
padding-left: 50px;
|
|
||||||
padding-right: 50px;
|
|
||||||
}
|
|
||||||
|
|
@ -1,49 +0,0 @@
|
||||||
.proxy-container {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
width: 150px;
|
|
||||||
height: 100px;
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-ms-flex-pack: distribute;
|
|
||||||
justify-content: space-around;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list-item {
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: #4C566A;
|
|
||||||
padding: 20px;
|
|
||||||
font-size: 1.25rem;
|
|
||||||
border-radius: 35px;
|
|
||||||
-webkit-transition: 250ms ease-in-out;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list-item:hover {
|
|
||||||
color: #D8DEE9;
|
|
||||||
background-color: #464e61;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 680px) {
|
|
||||||
.proxy-list {
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,202 +0,0 @@
|
||||||
.toggle-setting {
|
|
||||||
display: -ms-grid;
|
|
||||||
display: grid;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toggle-text {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
.switch {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 auto;
|
|
||||||
width: 60px;
|
|
||||||
height: 34px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.switch input {
|
|
||||||
opacity: 0;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider {
|
|
||||||
position: absolute;
|
|
||||||
cursor: pointer;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: #ccc;
|
|
||||||
-webkit-transition: .4s;
|
|
||||||
transition: .4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider:before {
|
|
||||||
position: absolute;
|
|
||||||
content: "";
|
|
||||||
height: 26px;
|
|
||||||
width: 26px;
|
|
||||||
left: 4px;
|
|
||||||
bottom: 4px;
|
|
||||||
background-color: white;
|
|
||||||
-webkit-transition: .4s;
|
|
||||||
transition: .4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:checked + .slider {
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:focus + .slider {
|
|
||||||
-webkit-box-shadow: 0 0 1px #92aec9;
|
|
||||||
box-shadow: 0 0 1px #92aec9;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:checked + .slider:before {
|
|
||||||
-webkit-transform: translateX(26px);
|
|
||||||
transform: translateX(26px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider.round {
|
|
||||||
border-radius: 34px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider.round:before {
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-setting {
|
|
||||||
display: -ms-grid;
|
|
||||||
display: grid;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-text {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
input#tab-cloak {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#icn-change {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings-btn {
|
|
||||||
background-color: #303643;
|
|
||||||
color: #D8DEE9;
|
|
||||||
width: 200px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rounding {
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-bdr {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-break {
|
|
||||||
height: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-break-large {
|
|
||||||
height: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.additional-notes-text {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.reset-wrapper {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popular-cloaks {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popular-cloaks-header {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme-toggle-wrapper {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 0.5rem;
|
|
||||||
}
|
|
||||||
.theme-toggle-wrapper > label {
|
|
||||||
color: rgb(227, 227, 227);
|
|
||||||
}
|
|
||||||
#themes {
|
|
||||||
height: 20px;
|
|
||||||
}
|
|
||||||
.caret-icn {
|
|
||||||
z-index: 200;
|
|
||||||
margin-left: 60px;
|
|
||||||
}
|
|
||||||
.item-wrapper {
|
|
||||||
height: 0px;
|
|
||||||
background-color: #303643;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
display: none;
|
|
||||||
height: 40px;
|
|
||||||
opacity: 0;
|
|
||||||
text-align: center;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
.item:hover {
|
|
||||||
background-color: #2c3038;
|
|
||||||
}
|
|
||||||
|
|
@ -1,503 +0,0 @@
|
||||||
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
|
|
||||||
* {
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
background-color: #fafafa;
|
|
||||||
max-width: 100vw;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.header-icon {
|
|
||||||
width: 20px;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
.header-icon-sm {
|
|
||||||
width: 15px;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
.material-icons {
|
|
||||||
font-family: 'Material Icons';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-size: 24px;
|
|
||||||
/* Preferred icon size */
|
|
||||||
display: inline-block;
|
|
||||||
line-height: 1;
|
|
||||||
text-transform: none;
|
|
||||||
letter-spacing: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
direction: ltr;
|
|
||||||
/* Support for all WebKit browsers. */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
/* Support for Safari and Chrome. */
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
/* Support for Firefox. */
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
/* Support for IE. */
|
|
||||||
-webkit-font-feature-settings: 'liga';
|
|
||||||
font-feature-settings: 'liga';
|
|
||||||
}
|
|
||||||
.card {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
position: relative;
|
|
||||||
background-color: #641ddf;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
margin-top: 3rem;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.mid-content-title {
|
|
||||||
font-size: 1.5em;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.middle-content {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
.main-content {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
margin-top: 50px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fade-in {
|
|
||||||
-webkit-animation: fadein 1s;
|
|
||||||
animation: fadein 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-text {
|
|
||||||
color: rgb(27, 27, 27);
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subtitle-text {
|
|
||||||
text-align: center;
|
|
||||||
color: #3c3d3f;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.material-icons {
|
|
||||||
font-family: 'Material Icons';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-size: 24px;
|
|
||||||
/* Preferred icon size */
|
|
||||||
display: inline-block;
|
|
||||||
line-height: 1;
|
|
||||||
text-transform: none;
|
|
||||||
letter-spacing: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
direction: ltr;
|
|
||||||
/* Support for all WebKit browsers. */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
/* Support for Safari and Chrome. */
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
/* Support for Firefox. */
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
/* Support for IE. */
|
|
||||||
-webkit-font-feature-settings: 'liga';
|
|
||||||
font-feature-settings: 'liga';
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1269px) {
|
|
||||||
.header-item {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box !important;
|
|
||||||
display: -ms-flexbox !important;
|
|
||||||
display: flex !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* mobile support moment*/
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 750ms ease-in-out;
|
|
||||||
transition: 750ms ease-in-out;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1269px) {
|
|
||||||
.mobile-header {
|
|
||||||
height: 0%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-transition: 250ms ease-in;
|
|
||||||
transition: 250ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-background {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
padding-top: 2%;
|
|
||||||
padding-bottom: 2%;
|
|
||||||
height: 90px;
|
|
||||||
width: 100%;
|
|
||||||
background-color: #641ddf;
|
|
||||||
font-size: 1.05rem;
|
|
||||||
list-style-type: none;
|
|
||||||
border: none !important;
|
|
||||||
z-index: 10;
|
|
||||||
-webkit-transition: 250ms ease-in;
|
|
||||||
transition: 250ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1003px) {
|
|
||||||
.title-background {
|
|
||||||
width: 500%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
color: #D8DEE9;
|
|
||||||
margin-left: 3rem;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 500ms;
|
|
||||||
transition: 500ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title:hover {
|
|
||||||
font-size: 1.11em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
font-size: 1.05rem;
|
|
||||||
width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
-webkit-box-pack: right;
|
|
||||||
-ms-flex-pack: right;
|
|
||||||
justify-content: right;
|
|
||||||
list-style-type: none;
|
|
||||||
gap: 3rem;
|
|
||||||
-webkit-box-align: end;
|
|
||||||
-ms-flex-align: end;
|
|
||||||
align-items: flex-end;
|
|
||||||
background-color: #81A1C1;
|
|
||||||
padding: 2%;
|
|
||||||
height: 90px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 350ms ease-in-out;
|
|
||||||
transition: 350ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item:hover {
|
|
||||||
font-size: 1.07em;
|
|
||||||
}
|
|
||||||
.sidenav {
|
|
||||||
overflow: hidden;
|
|
||||||
height: 100%;
|
|
||||||
width: 0;
|
|
||||||
position: fixed;
|
|
||||||
z-index: 11;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
background-color: #481b97;
|
|
||||||
padding-top: 60px;
|
|
||||||
-webkit-transition: 0.5s;
|
|
||||||
transition: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The navigation menu links */
|
|
||||||
.sidenav a {
|
|
||||||
width: 100vw;
|
|
||||||
padding: 8px 8px 8px 32px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ffffff;
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* When you mouse over the navigation links, change their color */
|
|
||||||
.sidenav a:hover {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Position and style the close button (top right corner) */
|
|
||||||
.sidenav .closebtn {
|
|
||||||
position: absolute;
|
|
||||||
top: 12px;
|
|
||||||
left: 0;
|
|
||||||
font-size: 36px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
|
|
||||||
@media screen and (max-height: 450px) {
|
|
||||||
.sidenav {
|
|
||||||
padding-top: 15px;
|
|
||||||
}
|
|
||||||
.sidenav a {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.divider {
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
background-color: #DCDCDD;
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext {
|
|
||||||
visibility: hidden;
|
|
||||||
width: 140px;
|
|
||||||
background-color: #D8DEE9;
|
|
||||||
color: #3B4252;
|
|
||||||
text-align: center;
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 5px;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
bottom: -200%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -75px;
|
|
||||||
opacity: 0;
|
|
||||||
-webkit-transition: opacity 0.3s;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
top: -30%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -5px;
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #D8DEE9 transparent transparent transparent;
|
|
||||||
-webkit-transform: rotate(180deg);
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip:hover .tooltiptext {
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.discord-text {
|
|
||||||
position: relative;
|
|
||||||
left: 1.5px;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-icn {
|
|
||||||
width: 2rem;
|
|
||||||
fill: #D8DEE9;
|
|
||||||
}
|
|
||||||
.patreon {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.donate-button {
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
-ms-flex-negative: 1;
|
|
||||||
flex-shrink: 1;
|
|
||||||
position: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer {
|
|
||||||
-webkit-transform: translateY(140px);
|
|
||||||
transform: translateY(140px);
|
|
||||||
padding-top: 20vw;
|
|
||||||
background-image: url("/img/lightwaves.svg");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 100vw auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 800px) {
|
|
||||||
#footer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 25px 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 15px 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 380px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 5px 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a:hover {
|
|
||||||
text-decoration: underline !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand p {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li {
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li > a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist > * {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials a {
|
|
||||||
display: inline-block;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
line-height: 20px;
|
|
||||||
padding: 6px;
|
|
||||||
margin: 0 5px;
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.copyright {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.credits {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.credit-item {
|
|
||||||
color: #313131;
|
|
||||||
}
|
|
||||||
.menu-bar {
|
|
||||||
width: 2rem;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
.bookmarklets {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 1rem;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklet-btn {
|
|
||||||
color: #222325;
|
|
||||||
padding: 4px;
|
|
||||||
cursor: pointer;
|
|
||||||
border: 2px solid rgb(15, 15, 15);
|
|
||||||
-webkit-transition: background-color 300ms ease-in-out;
|
|
||||||
transition: 300ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklet-btn:hover {
|
|
||||||
background-color: #4d4f53;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklets > a {
|
|
||||||
width: 15%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 629px) {
|
|
||||||
.bookmarklets > a {
|
|
||||||
width: -webkit-fit-content;
|
|
||||||
width: -moz-fit-content;
|
|
||||||
width: fit-content;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.note {
|
|
||||||
color: #303234;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
.games {
|
|
||||||
border: 2px solid #2b2c2f;
|
|
||||||
padding: 1rem;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid {
|
|
||||||
margin-top: -10px;
|
|
||||||
height: -webkit-max-content;
|
|
||||||
height: -moz-max-content;
|
|
||||||
height: max-content;
|
|
||||||
width: calc(100% - 60px);
|
|
||||||
-webkit-columns: 3 auto;
|
|
||||||
columns: 3 auto;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: horizontal;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
text-align: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 1rem;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 973px) {
|
|
||||||
.grid {
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 467px) {
|
|
||||||
.grid {
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.game-img {
|
|
||||||
width: 128px;
|
|
||||||
height: 128px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.game-title {
|
|
||||||
color: rgb(25, 25, 25);
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
.proxies-button {
|
|
||||||
color: #393b3e;
|
|
||||||
text-decoration: none;
|
|
||||||
padding: 15px;
|
|
||||||
padding-left: 40px;
|
|
||||||
padding-right: 40px;
|
|
||||||
border: 5px solid rgb(35, 35, 35);
|
|
||||||
-webkit-transition: 400ms ease-out;
|
|
||||||
transition: 400ms ease-out;
|
|
||||||
border-radius: 30px;
|
|
||||||
}
|
|
||||||
.proxies-button:hover {
|
|
||||||
background-color: #393b3e;
|
|
||||||
color: rgb(228, 228, 228);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.get-involved {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gi-title {
|
|
||||||
text-align: center;
|
|
||||||
color: #2b2b2b;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gi-card {
|
|
||||||
width: 80%;
|
|
||||||
margin: auto;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
background-color: #641ddf;
|
|
||||||
border-radius: 1em;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.donate {
|
|
||||||
color: #D8DEE9;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
.buttons {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-ms-flex-pack: distribute;
|
|
||||||
justify-content: space-around;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
gap: 5em;
|
|
||||||
}
|
|
||||||
|
|
@ -1,49 +0,0 @@
|
||||||
.proxy-container {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
width: 150px;
|
|
||||||
height: 100px;
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-ms-flex-pack: distribute;
|
|
||||||
justify-content: space-around;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list-item {
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: #333334;
|
|
||||||
padding: 20px;
|
|
||||||
font-size: 1.25rem;
|
|
||||||
border-radius: 35px;
|
|
||||||
-webkit-transition: 250ms ease-in-out;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list-item:hover {
|
|
||||||
color: #D8DEE9;
|
|
||||||
background-color: #3a3a3a;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 680px) {
|
|
||||||
.proxy-list {
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,197 +0,0 @@
|
||||||
.toggle-setting {
|
|
||||||
display: -ms-grid;
|
|
||||||
display: grid;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toggle-text {
|
|
||||||
color: #272829;
|
|
||||||
}
|
|
||||||
.switch {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 auto;
|
|
||||||
width: 60px;
|
|
||||||
height: 34px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.switch input {
|
|
||||||
opacity: 0;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider {
|
|
||||||
position: absolute;
|
|
||||||
cursor: pointer;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: #ccc;
|
|
||||||
-webkit-transition: .4s;
|
|
||||||
transition: .4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider:before {
|
|
||||||
position: absolute;
|
|
||||||
content: "";
|
|
||||||
height: 26px;
|
|
||||||
width: 26px;
|
|
||||||
left: 4px;
|
|
||||||
bottom: 4px;
|
|
||||||
background-color: white;
|
|
||||||
-webkit-transition: .4s;
|
|
||||||
transition: .4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:checked + .slider {
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:focus + .slider {
|
|
||||||
box-shadow: 0 0 5px #313233;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:checked + .slider:before {
|
|
||||||
-webkit-transform: translateX(26px);
|
|
||||||
transform: translateX(26px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider.round {
|
|
||||||
border-radius: 34px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider.round:before {
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-setting {
|
|
||||||
display: -ms-grid;
|
|
||||||
display: grid;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-text {
|
|
||||||
color: #3c3c3c;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
input#tab-cloak {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#icn-change {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings-btn {
|
|
||||||
background-color: #303643;
|
|
||||||
color: #e2e2e2;
|
|
||||||
width: 200px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rounding {
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-bdr {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-break {
|
|
||||||
height: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-break-large {
|
|
||||||
height: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.additional-notes-text {
|
|
||||||
color: #252525;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.reset-wrapper {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popular-cloaks {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popular-cloaks-header {
|
|
||||||
color: #282828;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme-toggle-wrapper {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 0.5rem;
|
|
||||||
}
|
|
||||||
#themes {
|
|
||||||
height: 20px;
|
|
||||||
}
|
|
||||||
.caret-icn {
|
|
||||||
margin-left: 60px;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
.item-wrapper {
|
|
||||||
height: 0px;
|
|
||||||
background-color: #303643;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
display: none;
|
|
||||||
height: 40px;
|
|
||||||
opacity: 0;
|
|
||||||
text-align: center;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
.item:hover {
|
|
||||||
background-color: #2c3038;
|
|
||||||
}
|
|
||||||
|
|
@ -1,509 +0,0 @@
|
||||||
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
|
|
||||||
* {
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.menu-bar {
|
|
||||||
width: 2rem;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
.header-icon {
|
|
||||||
width: 20px;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
.header-icon-sm {
|
|
||||||
width: 15px;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
background-color: #46494C;
|
|
||||||
max-width: 100vw;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.material-icons {
|
|
||||||
font-family: 'Material Icons';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-size: 24px;
|
|
||||||
/* Preferred icon size */
|
|
||||||
display: inline-block;
|
|
||||||
line-height: 1;
|
|
||||||
text-transform: none;
|
|
||||||
letter-spacing: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
direction: ltr;
|
|
||||||
/* Support for all WebKit browsers. */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
/* Support for Safari and Chrome. */
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
/* Support for Firefox. */
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
/* Support for IE. */
|
|
||||||
-webkit-font-feature-settings: 'liga';
|
|
||||||
font-feature-settings: 'liga';
|
|
||||||
}
|
|
||||||
.card {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
position: relative;
|
|
||||||
background-color: #1985A1;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
margin-top: 3rem;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.mid-content-title {
|
|
||||||
font-size: 1.5em;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.middle-content {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
.main-content {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
margin-top: 50px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fade-in {
|
|
||||||
-webkit-animation: fadein 1s;
|
|
||||||
animation: fadein 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-text {
|
|
||||||
color: white;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subtitle-text {
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.material-icons {
|
|
||||||
font-family: 'Material Icons';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-size: 24px;
|
|
||||||
/* Preferred icon size */
|
|
||||||
display: inline-block;
|
|
||||||
line-height: 1;
|
|
||||||
text-transform: none;
|
|
||||||
letter-spacing: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
direction: ltr;
|
|
||||||
/* Support for all WebKit browsers. */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
/* Support for Safari and Chrome. */
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
/* Support for Firefox. */
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
/* Support for IE. */
|
|
||||||
-webkit-font-feature-settings: 'liga';
|
|
||||||
font-feature-settings: 'liga';
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1269px) {
|
|
||||||
.header-item {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box !important;
|
|
||||||
display: -ms-flexbox !important;
|
|
||||||
display: flex !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* mobile support moment*/
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 750ms ease-in-out;
|
|
||||||
transition: 750ms ease-in-out;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1269px) {
|
|
||||||
.mobile-header {
|
|
||||||
height: 0%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-transition: 250ms ease-in;
|
|
||||||
transition: 250ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-background {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
padding-top: 2%;
|
|
||||||
padding-bottom: 2%;
|
|
||||||
height: 90px;
|
|
||||||
width: 100%;
|
|
||||||
background-color: #1985A1;
|
|
||||||
font-size: 1.05rem;
|
|
||||||
list-style-type: none;
|
|
||||||
border: none !important;
|
|
||||||
z-index: 10;
|
|
||||||
-webkit-transition: 250ms ease-in;
|
|
||||||
transition: 250ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1003px) {
|
|
||||||
.title-background {
|
|
||||||
width: 500%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
color: #D8DEE9;
|
|
||||||
margin-left: 3rem;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 500ms;
|
|
||||||
transition: 500ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title:hover {
|
|
||||||
font-size: 1.11em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
font-size: 1.05rem;
|
|
||||||
width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
-webkit-box-pack: right;
|
|
||||||
-ms-flex-pack: right;
|
|
||||||
justify-content: right;
|
|
||||||
list-style-type: none;
|
|
||||||
gap: 3rem;
|
|
||||||
-webkit-box-align: end;
|
|
||||||
-ms-flex-align: end;
|
|
||||||
align-items: flex-end;
|
|
||||||
background-color: #81A1C1;
|
|
||||||
padding: 2%;
|
|
||||||
height: 90px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 350ms ease-in-out;
|
|
||||||
transition: 350ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item:hover {
|
|
||||||
font-size: 1.07em;
|
|
||||||
}
|
|
||||||
.sidenav {
|
|
||||||
overflow: hidden;
|
|
||||||
height: 100%;
|
|
||||||
/* 100% Full-height */
|
|
||||||
width: 0;
|
|
||||||
/* 0 width - change this with JavaScript */
|
|
||||||
position: fixed;
|
|
||||||
/* Stay in place */
|
|
||||||
z-index: 11;
|
|
||||||
/* Stay on top */
|
|
||||||
top: 0;
|
|
||||||
/* Stay at the top */
|
|
||||||
left: 0;
|
|
||||||
background-color: #3a3c3e;
|
|
||||||
padding-top: 60px;
|
|
||||||
/* Place content 60px from the top */
|
|
||||||
-webkit-transition: 0.5s;
|
|
||||||
transition: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The navigation menu links */
|
|
||||||
.sidenav a {
|
|
||||||
width: 100vw;
|
|
||||||
padding: 8px 8px 8px 32px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ffffff;
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* When you mouse over the navigation links, change their color */
|
|
||||||
.sidenav a:hover {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Position and style the close button (top right corner) */
|
|
||||||
.sidenav .closebtn {
|
|
||||||
position: absolute;
|
|
||||||
top: 12px;
|
|
||||||
left: 0;
|
|
||||||
font-size: 36px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
|
|
||||||
@media screen and (max-height: 450px) {
|
|
||||||
.sidenav {
|
|
||||||
padding-top: 15px;
|
|
||||||
}
|
|
||||||
.sidenav a {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.divider {
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
background-color: #DCDCDD;
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext {
|
|
||||||
visibility: hidden;
|
|
||||||
width: 140px;
|
|
||||||
background-color: #D8DEE9;
|
|
||||||
color: #3B4252;
|
|
||||||
text-align: center;
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 5px;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
bottom: -200%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -75px;
|
|
||||||
opacity: 0;
|
|
||||||
-webkit-transition: opacity 0.3s;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
top: -30%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -5px;
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #D8DEE9 transparent transparent transparent;
|
|
||||||
-webkit-transform: rotate(180deg);
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip:hover .tooltiptext {
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.discord-text {
|
|
||||||
position: relative;
|
|
||||||
left: 1.5px;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-icn {
|
|
||||||
width: 2rem;
|
|
||||||
fill: #D8DEE9;
|
|
||||||
}
|
|
||||||
.patreon {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.donate-button {
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
-ms-flex-negative: 1;
|
|
||||||
flex-shrink: 1;
|
|
||||||
position: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer {
|
|
||||||
-webkit-transform: translateY(140px);
|
|
||||||
transform: translateY(140px);
|
|
||||||
padding-top: 20vw;
|
|
||||||
background-image: url("/img/darkwaves.svg");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 100vw auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 800px) {
|
|
||||||
#footer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 25px 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 15px 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 380px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 5px 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a:hover {
|
|
||||||
text-decoration: underline !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand p {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li {
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li > a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist > * {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials a {
|
|
||||||
display: inline-block;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
line-height: 20px;
|
|
||||||
padding: 6px;
|
|
||||||
margin: 0 5px;
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.copyright {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.credits {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.credit-item {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
.bookmarklets {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 1rem;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklet-btn {
|
|
||||||
color: #D8DEE9;
|
|
||||||
padding: 4px;
|
|
||||||
cursor: pointer;
|
|
||||||
border: 2px solid white;
|
|
||||||
-webkit-transition: background-color 300ms ease-in-out;
|
|
||||||
transition: background-color 300ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklet-btn:hover {
|
|
||||||
background-color: #232831;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklets > a {
|
|
||||||
width: 15%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 629px) {
|
|
||||||
.bookmarklets > a {
|
|
||||||
width: -webkit-fit-content;
|
|
||||||
width: -moz-fit-content;
|
|
||||||
width: fit-content;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.note {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
@ -1,73 +0,0 @@
|
||||||
.options {
|
|
||||||
text-align: center;
|
|
||||||
padding: 5px;
|
|
||||||
color: #D8DEE9;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.games {
|
|
||||||
border: 2px solid #D8DEE9;
|
|
||||||
padding: 1rem;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid {
|
|
||||||
color: #fff;
|
|
||||||
margin-top: -10px;
|
|
||||||
height: -webkit-max-content;
|
|
||||||
height: -moz-max-content;
|
|
||||||
height: max-content;
|
|
||||||
width: calc(100% - 60px);
|
|
||||||
-webkit-columns: 3 auto;
|
|
||||||
columns: 3 auto;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: horizontal;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
text-align: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 1rem;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 973px) {
|
|
||||||
.grid {
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 467px) {
|
|
||||||
.grid {
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.game-img {
|
|
||||||
width: 128px;
|
|
||||||
height: 128px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.game-title {
|
|
||||||
color: white;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
@ -1,57 +0,0 @@
|
||||||
.proxies-button {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
padding: 15px;
|
|
||||||
padding-left: 40px;
|
|
||||||
padding-right: 40px;
|
|
||||||
border: 5px solid white;
|
|
||||||
-webkit-transition: 400ms ease-out;
|
|
||||||
transition: 400ms ease-out;
|
|
||||||
border-radius: 30px;
|
|
||||||
}
|
|
||||||
.proxies-button:hover {
|
|
||||||
background-color: #393b3e;
|
|
||||||
color: rgb(228, 228, 228);
|
|
||||||
}
|
|
||||||
|
|
||||||
.get-involved {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gi-title {
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gi-card {
|
|
||||||
width: 80%;
|
|
||||||
margin: auto;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
background-color: #576977;
|
|
||||||
border-radius: 1em;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.donate {
|
|
||||||
color: #D8DEE9;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
.buttons {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
.buttons > a {
|
|
||||||
padding-left: 50px;
|
|
||||||
padding-right: 50px;
|
|
||||||
}
|
|
||||||
|
|
@ -1,49 +0,0 @@
|
||||||
.proxy-container {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
width: 150px;
|
|
||||||
height: 100px;
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-ms-flex-pack: distribute;
|
|
||||||
justify-content: space-around;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list-item {
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: #4C566A;
|
|
||||||
padding: 20px;
|
|
||||||
font-size: 1.25rem;
|
|
||||||
border-radius: 35px;
|
|
||||||
-webkit-transition: 250ms ease-in-out;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list-item:hover {
|
|
||||||
color: #D8DEE9;
|
|
||||||
background-color: #464e61;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 680px) {
|
|
||||||
.proxy-list {
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,202 +0,0 @@
|
||||||
.toggle-setting {
|
|
||||||
display: -ms-grid;
|
|
||||||
display: grid;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toggle-text {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
.switch {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 auto;
|
|
||||||
width: 60px;
|
|
||||||
height: 34px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.switch input {
|
|
||||||
opacity: 0;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider {
|
|
||||||
position: absolute;
|
|
||||||
cursor: pointer;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: #ccc;
|
|
||||||
-webkit-transition: .4s;
|
|
||||||
transition: .4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider:before {
|
|
||||||
position: absolute;
|
|
||||||
content: "";
|
|
||||||
height: 26px;
|
|
||||||
width: 26px;
|
|
||||||
left: 4px;
|
|
||||||
bottom: 4px;
|
|
||||||
background-color: white;
|
|
||||||
-webkit-transition: .4s;
|
|
||||||
transition: .4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:checked + .slider {
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:focus + .slider {
|
|
||||||
-webkit-box-shadow: 0 0 1px #92aec9;
|
|
||||||
box-shadow: 0 0 1px #92aec9;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:checked + .slider:before {
|
|
||||||
-webkit-transform: translateX(26px);
|
|
||||||
transform: translateX(26px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider.round {
|
|
||||||
border-radius: 34px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider.round:before {
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-setting {
|
|
||||||
display: -ms-grid;
|
|
||||||
display: grid;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-text {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
input#tab-cloak {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#icn-change {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings-btn {
|
|
||||||
background-color: #303643;
|
|
||||||
color: #D8DEE9;
|
|
||||||
width: 200px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rounding {
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-bdr {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-break {
|
|
||||||
height: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-break-large {
|
|
||||||
height: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.additional-notes-text {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.reset-wrapper {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popular-cloaks {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popular-cloaks-header {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme-toggle-wrapper {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 0.5rem;
|
|
||||||
}
|
|
||||||
.theme-toggle-wrapper > label {
|
|
||||||
color: rgb(227, 227, 227);
|
|
||||||
}
|
|
||||||
#themes {
|
|
||||||
height: 20px;
|
|
||||||
}
|
|
||||||
.caret-icn {
|
|
||||||
z-index: 200;
|
|
||||||
margin-left: 60px;
|
|
||||||
}
|
|
||||||
.item-wrapper {
|
|
||||||
height: 0px;
|
|
||||||
background-color: #303643;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
display: none;
|
|
||||||
height: 40px;
|
|
||||||
opacity: 0;
|
|
||||||
text-align: center;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
.item:hover {
|
|
||||||
background-color: #2c3038;
|
|
||||||
}
|
|
||||||
|
|
@ -1,503 +0,0 @@
|
||||||
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
|
|
||||||
* {
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.menu-bar {
|
|
||||||
width: 2rem;
|
|
||||||
fill: #00ff51;
|
|
||||||
}
|
|
||||||
.header-icon {
|
|
||||||
width: 20px;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
.header-icon-sm {
|
|
||||||
width: 15px;
|
|
||||||
fill: #eaecef;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) ), url('https://thumbs.gfycat.com/CriminalSatisfiedArthropods-size_restricted.gif');
|
|
||||||
max-width: 100vw;
|
|
||||||
background-color: red;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.material-icons {
|
|
||||||
font-family: 'Material Icons';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-size: 24px;
|
|
||||||
display: inline-block;
|
|
||||||
line-height: 1;
|
|
||||||
text-transform: none;
|
|
||||||
letter-spacing: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
direction: ltr;
|
|
||||||
/* Support for all WebKit browsers. */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
/* Support for Safari and Chrome. */
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
/* Support for Firefox. */
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
/* Support for IE. */
|
|
||||||
-webkit-font-feature-settings: 'liga';
|
|
||||||
font-feature-settings: 'liga';
|
|
||||||
}
|
|
||||||
.card {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
position: relative;
|
|
||||||
background-color: #641ddf;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
margin-top: 3rem;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.mid-content-title {
|
|
||||||
font-size: 1.5em;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.middle-content {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-align: center;
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
.main-content {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
margin-top: 50px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fade-in {
|
|
||||||
-webkit-animation: fadein 1s;
|
|
||||||
animation: fadein 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fadein {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-text {
|
|
||||||
color: rgb(27, 27, 27);
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subtitle-text {
|
|
||||||
text-align: center;
|
|
||||||
color: #3c3d3f;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.material-icons {
|
|
||||||
font-family: 'Material Icons';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-size: 24px;
|
|
||||||
/* Preferred icon size */
|
|
||||||
display: inline-block;
|
|
||||||
line-height: 1;
|
|
||||||
text-transform: none;
|
|
||||||
letter-spacing: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
direction: ltr;
|
|
||||||
/* Support for all WebKit browsers. */
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
/* Support for Safari and Chrome. */
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
/* Support for Firefox. */
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
/* Support for IE. */
|
|
||||||
-webkit-font-feature-settings: 'liga';
|
|
||||||
font-feature-settings: 'liga';
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1269px) {
|
|
||||||
.header-item {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box !important;
|
|
||||||
display: -ms-flexbox !important;
|
|
||||||
display: flex !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* mobile support moment*/
|
|
||||||
.mobile-toggle {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 750ms ease-in-out;
|
|
||||||
transition: 750ms ease-in-out;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1269px) {
|
|
||||||
.mobile-header {
|
|
||||||
height: 0%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-transition: 250ms ease-in;
|
|
||||||
transition: 250ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-background {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
padding-top: 2%;
|
|
||||||
padding-bottom: 2%;
|
|
||||||
height: 90px;
|
|
||||||
width: 100%;
|
|
||||||
background-image: url("https://thumbs.gfycat.com/CriminalSatisfiedArthropods-size_restricted.gif");
|
|
||||||
font-size: 1.05rem;
|
|
||||||
list-style-type: none;
|
|
||||||
border: none !important;
|
|
||||||
z-index: 10;
|
|
||||||
-webkit-transition: 250ms ease-in;
|
|
||||||
transition: 250ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1003px) {
|
|
||||||
.title-background {
|
|
||||||
width: 500%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
color: #D8DEE9;
|
|
||||||
margin-left: 3rem;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 500ms;
|
|
||||||
transition: 500ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title:hover {
|
|
||||||
font-size: 1.11em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
font-size: 1.05rem;
|
|
||||||
width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
-webkit-box-pack: right;
|
|
||||||
-ms-flex-pack: right;
|
|
||||||
justify-content: right;
|
|
||||||
list-style-type: none;
|
|
||||||
gap: 3rem;
|
|
||||||
-webkit-box-align: end;
|
|
||||||
-ms-flex-align: end;
|
|
||||||
align-items: flex-end;
|
|
||||||
background-color: #81A1C1;
|
|
||||||
padding: 2%;
|
|
||||||
height: 90px;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-decoration: none;
|
|
||||||
-webkit-transition: 350ms ease-in-out;
|
|
||||||
transition: 350ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-item:hover {
|
|
||||||
font-size: 1.07em;
|
|
||||||
}
|
|
||||||
.sidenav {
|
|
||||||
overflow: hidden;
|
|
||||||
height: 100%;
|
|
||||||
width: 0;
|
|
||||||
position: fixed;
|
|
||||||
z-index: 11;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
background-image: url("https://thumbs.gfycat.com/CriminalSatisfiedArthropods-size_restricted.gif");
|
|
||||||
padding-top: 60px;
|
|
||||||
-webkit-transition: 0.5s;
|
|
||||||
transition: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The navigation menu links */
|
|
||||||
.sidenav a {
|
|
||||||
width: 100vw;
|
|
||||||
padding: 8px 8px 8px 32px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ffffff;
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* When you mouse over the navigation links, change their color */
|
|
||||||
.sidenav a:hover {
|
|
||||||
color: #D8DEE9;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Position and style the close button (top right corner) */
|
|
||||||
.sidenav .closebtn {
|
|
||||||
position: absolute;
|
|
||||||
top: 12px;
|
|
||||||
left: 0;
|
|
||||||
font-size: 36px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
|
|
||||||
@media screen and (max-height: 450px) {
|
|
||||||
.sidenav {
|
|
||||||
padding-top: 15px;
|
|
||||||
}
|
|
||||||
.sidenav a {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.divider {
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
background-color: #DCDCDD;
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext {
|
|
||||||
visibility: hidden;
|
|
||||||
width: 140px;
|
|
||||||
background-color: #D8DEE9;
|
|
||||||
color: #3B4252;
|
|
||||||
text-align: center;
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 5px;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
bottom: -200%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -75px;
|
|
||||||
opacity: 0;
|
|
||||||
-webkit-transition: opacity 0.3s;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip .tooltiptext::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
top: -30%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -5px;
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #D8DEE9 transparent transparent transparent;
|
|
||||||
-webkit-transform: rotate(180deg);
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip:hover .tooltiptext {
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.discord-text {
|
|
||||||
position: relative;
|
|
||||||
left: 1.5px;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-icn {
|
|
||||||
width: 2rem;
|
|
||||||
fill: #D8DEE9;
|
|
||||||
}
|
|
||||||
.patreon {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.donate-button {
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
-ms-flex-negative: 1;
|
|
||||||
flex-shrink: 1;
|
|
||||||
position: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer {
|
|
||||||
-webkit-transform: translateY(140px);
|
|
||||||
transform: translateY(140px);
|
|
||||||
padding-top: 20vw;
|
|
||||||
background-image: url("/img/lightwaves.svg");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 100vw auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 800px) {
|
|
||||||
#footer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 25px 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 15px 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 380px) {
|
|
||||||
.footerflex > div {
|
|
||||||
margin: 5px 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand h3 a:hover {
|
|
||||||
text-decoration: underline !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand p {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerbrand a {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li {
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist ul > li > a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footerlist > * {
|
|
||||||
font-family: 'Varela Round', sans-serif;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footersocials a {
|
|
||||||
display: inline-block;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
line-height: 20px;
|
|
||||||
padding: 6px;
|
|
||||||
margin: 0 5px;
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.copyright {
|
|
||||||
color: #D8DEE9;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.credits {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.credit-item {
|
|
||||||
color: #313131;
|
|
||||||
}
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
.bookmarklets {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 1rem;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklet-btn {
|
|
||||||
color: #222325;
|
|
||||||
padding: 4px;
|
|
||||||
cursor: pointer;
|
|
||||||
border: 2px solid rgb(15, 15, 15);
|
|
||||||
-webkit-transition: background-color 300ms ease-in-out;
|
|
||||||
transition: 300ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklet-btn:hover {
|
|
||||||
background-color: #4d4f53;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bookmarklets > a {
|
|
||||||
width: 15%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 629px) {
|
|
||||||
.bookmarklets > a {
|
|
||||||
width: -webkit-fit-content;
|
|
||||||
width: -moz-fit-content;
|
|
||||||
width: fit-content;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.note {
|
|
||||||
color: #303234;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
.games {
|
|
||||||
border: 2px solid #2b2c2f;
|
|
||||||
padding: 1rem;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid {
|
|
||||||
margin-top: -10px;
|
|
||||||
height: -webkit-max-content;
|
|
||||||
height: -moz-max-content;
|
|
||||||
height: max-content;
|
|
||||||
width: calc(100% - 60px);
|
|
||||||
-webkit-columns: 3 auto;
|
|
||||||
columns: 3 auto;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: horizontal;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
text-align: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 1rem;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 973px) {
|
|
||||||
.grid {
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 467px) {
|
|
||||||
.grid {
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.game-img {
|
|
||||||
width: 128px;
|
|
||||||
height: 128px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.game-title {
|
|
||||||
color: rgb(25, 25, 25);
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
.proxies-button {
|
|
||||||
color: #393b3e;
|
|
||||||
text-decoration: none;
|
|
||||||
padding: 15px;
|
|
||||||
padding-left: 40px;
|
|
||||||
padding-right: 40px;
|
|
||||||
border: 5px solid rgb(35, 35, 35);
|
|
||||||
-webkit-transition: 400ms ease-out;
|
|
||||||
transition: 400ms ease-out;
|
|
||||||
border-radius: 30px;
|
|
||||||
}
|
|
||||||
.proxies-button:hover {
|
|
||||||
background-color: #393b3e;
|
|
||||||
color: rgb(228, 228, 228);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.get-involved {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gi-title {
|
|
||||||
text-align: center;
|
|
||||||
color: #2b2b2b;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gi-card {
|
|
||||||
width: 80%;
|
|
||||||
margin: auto;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
background-color: #641ddf;
|
|
||||||
border-radius: 1em;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.donate {
|
|
||||||
color: #D8DEE9;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
.buttons {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-ms-flex-pack: distribute;
|
|
||||||
justify-content: space-around;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
gap: 5em;
|
|
||||||
}
|
|
||||||
|
|
@ -1,49 +0,0 @@
|
||||||
.proxy-container {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
width: 150px;
|
|
||||||
height: 100px;
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-ms-flex-pack: distribute;
|
|
||||||
justify-content: space-around;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list-item {
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: #333334;
|
|
||||||
padding: 20px;
|
|
||||||
font-size: 1.25rem;
|
|
||||||
border-radius: 35px;
|
|
||||||
-webkit-transition: 250ms ease-in-out;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proxy-list-item:hover {
|
|
||||||
color: #D8DEE9;
|
|
||||||
background-color: #3a3a3a;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 680px) {
|
|
||||||
.proxy-list {
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,199 +0,0 @@
|
||||||
.toggle-setting {
|
|
||||||
display: -ms-grid;
|
|
||||||
display: grid;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toggle-text {
|
|
||||||
color: #272829;
|
|
||||||
}
|
|
||||||
.switch {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 auto;
|
|
||||||
width: 60px;
|
|
||||||
height: 34px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.switch input {
|
|
||||||
opacity: 0;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider {
|
|
||||||
position: absolute;
|
|
||||||
cursor: pointer;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: #ccc;
|
|
||||||
-webkit-transition: .4s;
|
|
||||||
transition: .4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider:before {
|
|
||||||
position: absolute;
|
|
||||||
content: "";
|
|
||||||
height: 26px;
|
|
||||||
width: 26px;
|
|
||||||
left: 4px;
|
|
||||||
bottom: 4px;
|
|
||||||
background-color: white;
|
|
||||||
-webkit-transition: .4s;
|
|
||||||
transition: .4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:checked + .slider {
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:focus + .slider {
|
|
||||||
box-shadow: 0 0 5px #313233;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:checked + .slider:before {
|
|
||||||
-webkit-transform: translateX(26px);
|
|
||||||
transform: translateX(26px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider.round {
|
|
||||||
border-radius: 34px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider.round:before {
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-setting {
|
|
||||||
display: -ms-grid;
|
|
||||||
display: grid;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-text {
|
|
||||||
color: #3c3c3c;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
input#tab-cloak {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#icn-change {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings-btn {
|
|
||||||
background-color: #303643;
|
|
||||||
color: #e2e2e2;
|
|
||||||
width: 200px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rounding {
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-bdr {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-break {
|
|
||||||
height: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-break-large {
|
|
||||||
height: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.additional-notes-text {
|
|
||||||
color: #252525;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.reset-wrapper {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popular-cloaks {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popular-cloaks-header {
|
|
||||||
color: #282828;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme-toggle-wrapper {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 0.5rem;
|
|
||||||
}
|
|
||||||
#themes {
|
|
||||||
height: 20px;
|
|
||||||
}
|
|
||||||
.caret-icn {
|
|
||||||
position: absolute;
|
|
||||||
bottom: -43vh;
|
|
||||||
left: 56vw;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
.item-wrapper {
|
|
||||||
height: 0px;
|
|
||||||
background-color: #303643;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
display: none;
|
|
||||||
height: 40px;
|
|
||||||
opacity: 0;
|
|
||||||
text-align: center;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
transition: 250ms ease-in-out;
|
|
||||||
}
|
|
||||||
.item:hover {
|
|
||||||
background-color: #2c3038;
|
|
||||||
}
|
|
||||||
BIN
favicon.png
|
Before Width: | Height: | Size: 7.3 KiB |
|
|
@ -1 +0,0 @@
|
||||||
// MAYBE COMING SOON IF I ACTUALLY LEARN STATE MANAGEMENT D:
|
|
||||||
294
games/index.html
|
|
@ -1,8 +0,0 @@
|
||||||
function openNav() {
|
|
||||||
document.getElementById("sidenav").style.width = "300px";
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Set the width of the side navigation to 0 */
|
|
||||||
function closeNav() {
|
|
||||||
document.getElementById("sidenav").style.width = "0%";
|
|
||||||
}
|
|
||||||
|
|
@ -1,67 +0,0 @@
|
||||||
<svg width="100%" height="100%" id="svg" viewBox="0 0 1440 700" xmlns="http://www.w3.org/2000/svg" class="transition duration-300 ease-in-out delay-150"><style>
|
|
||||||
.path-0{
|
|
||||||
animation:pathAnim-0 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-0{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 98.76666666666668,201.13846153846154 197.53333333333336,227.27692307692308 279,216 C 360.46666666666664,204.72307692307692 424.6333333333333,156.0307692307692 488,154 C 551.3666666666667,151.9692307692308 613.9333333333334,196.6 695,208 C 776.0666666666666,219.4 875.6333333333332,197.56923076923076 954,192 C 1032.3666666666668,186.43076923076924 1089.5333333333333,197.12307692307692 1167,197 C 1244.4666666666667,196.87692307692308 1342.2333333333333,185.93846153846152 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 71.32051282051285,180.2 142.6410256410257,185.4 224,167 C 305.3589743589743,148.6 396.7564102564103,106.60000000000001 493,110 C 589.2435897435897,113.39999999999999 690.3333333333333,162.2 764,171 C 837.6666666666667,179.8 883.9102564102564,148.60000000000002 962,129 C 1040.0897435897436,109.39999999999998 1150.0256410256409,101.39999999999999 1235,111 C 1319.9743589743591,120.60000000000001 1379.9871794871797,147.8 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 67.12051282051283,184.24615384615385 134.24102564102566,193.49230769230766 207,195 C 279.75897435897434,196.50769230769234 358.15641025641025,190.27692307692308 452,171 C 545.8435897435897,151.72307692307692 655.1333333333334,119.39999999999999 727,113 C 798.8666666666666,106.60000000000001 833.3102564102564,126.12307692307695 916,145 C 998.6897435897436,163.87692307692305 1129.625641025641,182.1076923076923 1225,187 C 1320.374358974359,191.8923076923077 1380.1871794871795,183.44615384615383 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 76.09999999999997,135.03076923076924 152.19999999999993,95.06153846153846 224,110 C 295.80000000000007,124.93846153846154 363.30000000000007,194.7846153846154 441,231 C 518.6999999999999,267.2153846153846 606.5999999999999,269.8 693,234 C 779.4000000000001,198.2 864.3000000000002,124.0153846153846 941,118 C 1017.6999999999998,111.9846153846154 1086.2,174.13846153846154 1168,195 C 1249.8,215.86153846153846 1344.9,195.43076923076922 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 98.76666666666668,201.13846153846154 197.53333333333336,227.27692307692308 279,216 C 360.46666666666664,204.72307692307692 424.6333333333333,156.0307692307692 488,154 C 551.3666666666667,151.9692307692308 613.9333333333334,196.6 695,208 C 776.0666666666666,219.4 875.6333333333332,197.56923076923076 954,192 C 1032.3666666666668,186.43076923076924 1089.5333333333333,197.12307692307692 1167,197 C 1244.4666666666667,196.87692307692308 1342.2333333333333,185.93846153846152 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,175 0,175 C 98.76666666666668,201.13846153846154 197.53333333333336,227.27692307692308 279,216 C 360.46666666666664,204.72307692307692 424.6333333333333,156.0307692307692 488,154 C 551.3666666666667,151.9692307692308 613.9333333333334,196.6 695,208 C 776.0666666666666,219.4 875.6333333333332,197.56923076923076 954,192 C 1032.3666666666668,186.43076923076924 1089.5333333333333,197.12307692307692 1167,197 C 1244.4666666666667,196.87692307692308 1342.2333333333333,185.93846153846152 1440,175 C 1440,175 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#5b667e66" class="transition-all duration-300 ease-in-out delay-150 path-0"></path><style>
|
|
||||||
.path-1{
|
|
||||||
animation:pathAnim-1 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-1{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 61.27692307692308,353.24871794871797 122.55384615384617,356.49743589743593 195,348 C 267.44615384615383,339.50256410256407 351.0615384615385,319.25897435897434 455,336 C 558.9384615384615,352.74102564102566 683.1999999999999,406.46666666666664 757,409 C 830.8000000000001,411.53333333333336 854.1384615384617,362.87435897435904 929,352 C 1003.8615384615383,341.12564102564096 1130.2461538461537,368.0358974358974 1224,374 C 1317.7538461538463,379.9641025641026 1378.876923076923,364.9820512820513 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 82.77179487179487,328.6871794871795 165.54358974358973,307.374358974359 250,311 C 334.45641025641027,314.625641025641 420.59743589743596,343.18974358974356 503,357 C 585.402564102564,370.81025641025644 664.0666666666667,369.8666666666667 738,350 C 811.9333333333333,330.1333333333333 881.1358974358975,291.3435897435897 955,292 C 1028.8641025641025,292.6564102564103 1107.3897435897436,332.7589743589744 1189,349 C 1270.6102564102564,365.2410256410256 1355.3051282051283,357.6205128205128 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 65.52820512820512,346.8307692307692 131.05641025641023,343.66153846153844 217,344 C 302.94358974358977,344.33846153846156 409.30256410256413,348.18461538461537 490,343 C 570.6974358974359,337.81538461538463 625.7333333333332,323.6 702,326 C 778.2666666666668,328.4 875.7641025641026,347.41538461538465 952,366 C 1028.2358974358974,384.58461538461535 1083.2102564102565,402.73846153846154 1161,400 C 1238.7897435897435,397.26153846153846 1339.3948717948717,373.63076923076926 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 68.02820512820512,330.8897435897436 136.05641025641023,311.77948717948715 221,324 C 305.94358974358977,336.22051282051285 407.80256410256425,379.7717948717949 483,404 C 558.1974358974358,428.2282051282051 606.7333333333332,433.1333333333333 686,414 C 765.2666666666668,394.8666666666667 875.2641025641026,351.6948717948718 960,327 C 1044.7358974358974,302.3051282051282 1104.2102564102565,296.08717948717947 1180,303 C 1255.7897435897435,309.91282051282053 1347.8948717948717,329.95641025641027 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 61.27692307692308,353.24871794871797 122.55384615384617,356.49743589743593 195,348 C 267.44615384615383,339.50256410256407 351.0615384615385,319.25897435897434 455,336 C 558.9384615384615,352.74102564102566 683.1999999999999,406.46666666666664 757,409 C 830.8000000000001,411.53333333333336 854.1384615384617,362.87435897435904 929,352 C 1003.8615384615383,341.12564102564096 1130.2461538461537,368.0358974358974 1224,374 C 1317.7538461538463,379.9641025641026 1378.876923076923,364.9820512820513 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,350 0,350 C 61.27692307692308,353.24871794871797 122.55384615384617,356.49743589743593 195,348 C 267.44615384615383,339.50256410256407 351.0615384615385,319.25897435897434 455,336 C 558.9384615384615,352.74102564102566 683.1999999999999,406.46666666666664 757,409 C 830.8000000000001,411.53333333333336 854.1384615384617,362.87435897435904 929,352 C 1003.8615384615383,341.12564102564096 1130.2461538461537,368.0358974358974 1224,374 C 1317.7538461538463,379.9641025641026 1378.876923076923,364.9820512820513 1440,350 C 1440,350 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#5b667e88" class="transition-all duration-300 ease-in-out delay-150 path-1"></path><style>
|
|
||||||
.path-2{
|
|
||||||
animation:pathAnim-2 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-2{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 75,542.6179487179487 150,560.2358974358974 236,544 C 322,527.7641025641026 419,477.674358974359 501,483 C 583,488.325641025641 650,549.0666666666667 716,576 C 782,602.9333333333333 847.0000000000001,596.0589743589743 935,580 C 1022.9999999999999,563.9410256410257 1133.9999999999998,538.697435897436 1222,528 C 1310.0000000000002,517.302564102564 1375,521.151282051282 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 55.110256410256426,538.3461538461538 110.22051282051285,551.6923076923077 204,557 C 297.77948717948715,562.3076923076923 430.2282051282051,559.5769230769231 507,558 C 583.7717948717949,556.4230769230769 604.8666666666667,556 687,537 C 769.1333333333333,518 912.3051282051283,480.42307692307696 994,467 C 1075.6948717948717,453.57692307692304 1095.9128205128204,464.3076923076923 1160,478 C 1224.0871794871796,491.6923076923077 1332.0435897435898,508.3461538461538 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 98.69487179487183,536.551282051282 197.38974358974366,548.1025641025641 278,541 C 358.61025641025634,533.8974358974359 421.1358974358974,508.1410256410257 495,497 C 568.8641025641026,485.8589743589743 654.0666666666667,489.3333333333333 736,491 C 817.9333333333333,492.6666666666667 896.5974358974356,492.52564102564105 969,499 C 1041.4025641025644,505.47435897435895 1107.5435897435898,518.5641025641025 1185,524 C 1262.4564102564102,529.4358974358975 1351.228205128205,527.2179487179487 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 66.24871794871794,489.1051282051282 132.49743589743588,453.2102564102564 212,463 C 291.5025641025641,472.7897435897436 384.25897435897434,528.2641025641026 481,535 C 577.7410256410257,541.7358974358974 678.4666666666667,499.7333333333333 747,481 C 815.5333333333333,462.2666666666667 851.874358974359,466.80256410256413 926,491 C 1000.125641025641,515.1974358974359 1112.0358974358974,559.0564102564103 1204,568 C 1295.9641025641026,576.9435897435897 1367.9820512820513,550.9717948717948 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 75,542.6179487179487 150,560.2358974358974 236,544 C 322,527.7641025641026 419,477.674358974359 501,483 C 583,488.325641025641 650,549.0666666666667 716,576 C 782,602.9333333333333 847.0000000000001,596.0589743589743 935,580 C 1022.9999999999999,563.9410256410257 1133.9999999999998,538.697435897436 1222,528 C 1310.0000000000002,517.302564102564 1375,521.151282051282 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,525 0,525 C 75,542.6179487179487 150,560.2358974358974 236,544 C 322,527.7641025641026 419,477.674358974359 501,483 C 583,488.325641025641 650,549.0666666666667 716,576 C 782,602.9333333333333 847.0000000000001,596.0589743589743 935,580 C 1022.9999999999999,563.9410256410257 1133.9999999999998,538.697435897436 1222,528 C 1310.0000000000002,517.302564102564 1375,521.151282051282 1440,525 C 1440,525 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#5b667eff" class="transition-all duration-300 ease-in-out delay-150 path-2"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 11 KiB |
BIN
img/icon.png
|
Before Width: | Height: | Size: 364 B |
|
|
@ -1,5 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<svg viewBox="0 0 384 512" width="384" height="512" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM154.1 353.8c7.812 7.812 7.812 20.5 0 28.31C150.2 386.1 145.1 388 140 388s-10.23-1.938-14.14-5.844l-48-48c-7.812-7.812-7.812-20.5 0-28.31l48-48c7.812-7.812 20.47-7.812 28.28 0s7.812 20.5 0 28.31L120.3 320L154.1 353.8zM306.1 305.8c7.812 7.812 7.812 20.5 0 28.31l-48 48C254.2 386.1 249.1 388 244 388s-10.23-1.938-14.14-5.844c-7.812-7.812-7.812-20.5 0-28.31L263.7 320l-33.86-33.84c-7.812-7.812-7.812-20.5 0-28.31s20.47-7.812 28.28 0L306.1 305.8zM256 0v128h128L256 0z" style="fill: rgb(129, 161, 193);"/>
|
|
||||||
<path d="M 256.9 159.5 L 384.5 159.5 L 384.5 464 C 384.478 477.357 379.044 489.546 370.295 498.295 C 361.546 507.044 349.357 512.478 336 512.5 L 48 512.5 C 34.643 512.478 22.454 507.042 13.705 498.291 C 4.956 489.541 -0.478 477.352 -0.5 464 L -0.5 48 C -0.478 34.643 4.956 22.454 13.705 13.705 C 22.454 4.956 34.643 -0.478 48 -0.5 L 224.5 -0.5 L 224.5 128 C 224.478 136.748 227.99 144.557 233.825 150.281 C 239.661 156.005 247.7 159.521 256.9 159.5 Z M 233.125 150.994 C 227.16 145.143 223.522 136.952 223.5 128 L 223.5 0.5 L 48 0.5 C 34.847 0.478 23.036 5.789 14.412 14.412 C 5.789 23.036 0.478 34.847 0.5 48 L 0.5 464 C 0.478 477.148 5.789 488.959 14.412 497.584 C 23.036 506.208 34.847 511.522 48 511.5 L 336 511.5 C 349.153 511.522 360.964 506.211 369.588 497.588 C 378.211 488.964 383.522 477.153 383.5 464 L 383.5 160.5 L 256.9 160.5 C 247.5 160.479 239.089 156.845 233.125 150.994 Z M 154.454 353.446 C 158.416 357.44 160.459 362.742 160.459 367.956 C 160.459 373.17 158.417 378.469 154.455 382.462 C 150.464 386.511 145.187 388.5 140 388.5 C 134.812 388.5 129.505 386.473 125.506 382.51 L 77.506 334.51 C 73.544 330.516 71.501 325.214 71.501 320 C 71.501 314.786 73.544 309.485 77.506 305.492 L 125.506 257.492 C 129.5 253.53 134.794 251.487 140.001 251.487 C 145.207 251.487 150.516 253.514 154.494 257.492 C 158.471 261.471 160.498 266.788 160.498 272.002 C 160.499 277.215 158.456 282.517 154.494 286.51 L 121.007 320 Z M 119.593 320 L 153.786 285.802 C 157.636 281.985 159.498 277.038 159.498 272.002 C 159.498 266.966 157.619 262.033 153.786 258.2 C 149.954 254.366 145.029 252.487 140.001 252.487 C 134.973 252.487 130.032 254.35 126.214 258.2 L 78.214 306.2 C 74.364 310.017 72.501 314.965 72.501 320 C 72.501 325.036 74.364 329.984 78.214 333.802 L 126.214 381.802 C 130.035 385.651 134.988 387.5 140 387.5 C 145.013 387.5 149.934 385.691 153.742 381.761 C 157.592 377.943 159.459 372.991 159.459 367.956 C 159.459 362.92 157.596 357.972 153.746 354.154 Z M 306.454 305.446 C 310.416 309.44 312.459 314.742 312.459 319.956 C 312.459 325.17 310.416 330.471 306.454 334.464 L 258.454 382.463 C 254.463 386.51 249.187 388.5 244 388.5 C 238.812 388.5 233.505 386.473 229.506 382.51 C 225.544 378.516 223.501 373.214 223.501 368 C 223.501 362.786 225.544 357.485 229.506 353.492 L 262.993 320 L 229.486 286.514 C 225.524 282.52 223.481 277.218 223.481 272.004 C 223.481 266.79 225.508 261.474 229.486 257.496 C 233.465 253.519 238.774 251.492 243.981 251.492 C 249.187 251.492 254.481 253.534 258.473 257.496 Z M 257.767 258.204 C 253.949 254.354 249.009 252.492 243.981 252.492 C 238.953 252.492 234.027 254.371 230.194 258.204 C 226.36 262.036 224.481 266.969 224.481 272.004 C 224.481 277.04 226.344 281.988 230.194 285.806 L 264.407 320 L 230.214 354.2 C 226.364 358.017 224.501 362.965 224.501 368 C 224.501 373.036 226.364 377.984 230.213 381.802 C 234.035 385.651 238.988 387.5 244 387.5 C 249.013 387.5 253.934 385.691 257.742 381.761 L 305.746 333.756 C 309.596 329.939 311.459 324.991 311.459 319.956 C 311.459 314.92 309.596 309.972 305.746 306.154 Z M 255.5 128.5 L 255.5 -1.207 L 385.207 128.5 Z M 256.5 1.207 L 256.5 127.5 L 382.793 127.5 Z" style="fill: none;"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.9 KiB |
|
|
@ -1,67 +0,0 @@
|
||||||
<svg width="100%" height="100%" id="svg" viewBox="0 0 1440 700" xmlns="http://www.w3.org/2000/svg" class="transition duration-300 ease-in-out delay-150"><style>
|
|
||||||
.path-0{
|
|
||||||
animation:pathAnim-0 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-0{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 77.99725180350396,171.0109927859842 155.9945036070079,167.0219855719684 221,162 C 286.0054963929921,156.9780144280316 338.0192373754723,150.9230504981106 408,144 C 477.9807626245277,137.0769495018894 565.9285468911028,129.28581243558915 633,138 C 700.0714531088972,146.71418756441085 746.266575060117,171.9336997595328 800,188 C 853.733424939883,204.0663002404672 915.0051528684301,210.9793885262796 999,198 C 1082.99484713157,185.0206114737204 1189.7128134661627,152.1487461353487 1267,145 C 1344.2871865338373,137.8512538646513 1392.1435932669187,156.42562693232566 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 73.73617313637925,201.48574373067675 147.4723462727585,227.9714874613535 217,211 C 286.5276537272415,194.0285125386465 351.8467880453453,133.59979388526278 417,127 C 482.1532119546547,120.4002061147372 547.1405015458605,167.62933699759537 609,194 C 670.8594984541395,220.37066300240463 729.5912057712125,225.8828581243559 804,198 C 878.4087942287875,170.1171418756441 968.4946753692891,108.83923050498109 1045,109 C 1121.505324630711,109.16076949501891 1184.4300927516317,170.7602198557197 1248,192 C 1311.5699072483683,213.2397801442803 1375.7849536241843,194.11989007214015 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 44.98797664032978,160.4764685675026 89.97595328065955,145.95293713500516 171,169 C 252.02404671934045,192.04706286499484 369.08416351769154,252.66472002748196 440,239 C 510.91583648230846,225.33527997251804 535.6873926485744,137.388182755067 598,135 C 660.3126073514256,132.611817244933 760.1662658880109,215.78254895225007 827,235 C 893.8337341119891,254.21745104774993 927.6475437993818,209.48162143593268 991,192 C 1054.3524562006182,174.51837856406732 1147.2435589144623,184.29096530401924 1227,186 C 1306.7564410855377,187.70903469598076 1373.3782205427688,181.3545173479904 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 73.70663002404672,175.32016489178977 147.41326004809343,175.64032978357955 208,175 C 268.58673995190657,174.35967021642045 316.053589831673,172.75884575747165 389,179 C 461.946410168327,185.24115424252835 560.3723806252146,199.32428718653384 627,192 C 693.6276193747854,184.67571281346616 728.4568876674682,155.94400549639298 798,164 C 867.5431123325318,172.05599450360702 971.8000687049123,216.8996908278942 1055,222 C 1138.1999312950877,227.1003091721058 1200.3428375128824,192.4572311920302 1261,178 C 1321.6571624871176,163.5427688079698 1380.8285812435588,169.27138440398488 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 77.99725180350396,171.0109927859842 155.9945036070079,167.0219855719684 221,162 C 286.0054963929921,156.9780144280316 338.0192373754723,150.9230504981106 408,144 C 477.9807626245277,137.0769495018894 565.9285468911028,129.28581243558915 633,138 C 700.0714531088972,146.71418756441085 746.266575060117,171.9336997595328 800,188 C 853.733424939883,204.0663002404672 915.0051528684301,210.9793885262796 999,198 C 1082.99484713157,185.0206114737204 1189.7128134661627,152.1487461353487 1267,145 C 1344.2871865338373,137.8512538646513 1392.1435932669187,156.42562693232566 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,175 0,175 C 77.99725180350396,171.0109927859842 155.9945036070079,167.0219855719684 221,162 C 286.0054963929921,156.9780144280316 338.0192373754723,150.9230504981106 408,144 C 477.9807626245277,137.0769495018894 565.9285468911028,129.28581243558915 633,138 C 700.0714531088972,146.71418756441085 746.266575060117,171.9336997595328 800,188 C 853.733424939883,204.0663002404672 915.0051528684301,210.9793885262796 999,198 C 1082.99484713157,185.0206114737204 1189.7128134661627,152.1487461353487 1267,145 C 1344.2871865338373,137.8512538646513 1392.1435932669187,156.42562693232566 1440,175 C 1440,175 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#641ddf66" class="transition-all duration-300 ease-in-out delay-150 path-0"></path><style>
|
|
||||||
.path-1{
|
|
||||||
animation:pathAnim-1 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-1{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 50.53589831672964,337.59670216420477 101.07179663345929,325.1934043284095 177,343 C 252.9282033665407,360.8065956715905 354.2487117828925,408.8230848505669 427,409 C 499.7512882171075,409.1769151494331 543.9333562349709,361.51425626932325 595,346 C 646.0666437650291,330.48574373067675 704.0178632772243,347.11989007214015 791,363 C 877.9821367227757,378.88010992785985 993.9951906561319,394.00618344211614 1064,392 C 1134.0048093438681,389.99381655788386 1158.001374098248,370.85537615939535 1213,361 C 1267.998625901752,351.14462384060465 1353.999312950876,350.57231192030235 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 70.21435932669186,330.3847475094469 140.42871865338373,310.76949501889385 208,304 C 275.5712813466163,297.23050498110615 340.499484713157,303.3067674338715 402,307 C 463.500515286843,310.6932325661285 521.5733424939883,312.00343524562004 588,310 C 654.4266575060117,307.99656475437996 729.2071453108896,302.67949158364826 804,322 C 878.7928546891104,341.32050841635174 953.5980762624529,385.278598419787 1022,384 C 1090.4019237375471,382.721401580213 1152.4005496392992,336.2061147372037 1221,323 C 1289.5994503607008,309.7938852627963 1364.7997251803504,329.89694263139813 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 64.26313981449674,369.10133974579185 128.52627962899348,388.20267949158364 189,374 C 249.47372037100652,359.79732050841636 306.15802129852284,312.2906217794573 386,296 C 465.84197870147716,279.7093782205427 568.8416351769151,294.6348333905874 641,325 C 713.1583648230849,355.3651666094126 754.4754379938166,401.1700446581931 821,385 C 887.5245620061834,368.8299553418069 979.2566128478186,290.6849879766403 1053,286 C 1126.7433871521814,281.3150120233597 1182.4981106149091,350.0900034352456 1244,373 C 1305.5018893850909,395.9099965647544 1372.7509446925455,372.95499828237723 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 75.92579869460664,363.22500858811406 151.85159738921328,376.4500171762281 224,361 C 296.1484026107867,345.5499828237719 364.51940913775337,301.42493988320166 438,289 C 511.48059086224663,276.57506011679834 590.0707660597733,295.8502232909653 647,294 C 703.9292339402267,292.1497767090347 739.1975266231535,269.17416695293707 797,293 C 854.8024733768465,316.82583304706293 935.1391274476125,387.45310889728614 1011,401 C 1086.8608725523875,414.54689110271386 1158.2459635863966,371.0133974579182 1229,353 C 1299.7540364136034,334.9866025420818 1369.8770182068017,342.4933012710409 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 50.53589831672964,337.59670216420477 101.07179663345929,325.1934043284095 177,343 C 252.9282033665407,360.8065956715905 354.2487117828925,408.8230848505669 427,409 C 499.7512882171075,409.1769151494331 543.9333562349709,361.51425626932325 595,346 C 646.0666437650291,330.48574373067675 704.0178632772243,347.11989007214015 791,363 C 877.9821367227757,378.88010992785985 993.9951906561319,394.00618344211614 1064,392 C 1134.0048093438681,389.99381655788386 1158.001374098248,370.85537615939535 1213,361 C 1267.998625901752,351.14462384060465 1353.999312950876,350.57231192030235 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,350 0,350 C 50.53589831672964,337.59670216420477 101.07179663345929,325.1934043284095 177,343 C 252.9282033665407,360.8065956715905 354.2487117828925,408.8230848505669 427,409 C 499.7512882171075,409.1769151494331 543.9333562349709,361.51425626932325 595,346 C 646.0666437650291,330.48574373067675 704.0178632772243,347.11989007214015 791,363 C 877.9821367227757,378.88010992785985 993.9951906561319,394.00618344211614 1064,392 C 1134.0048093438681,389.99381655788386 1158.001374098248,370.85537615939535 1213,361 C 1267.998625901752,351.14462384060465 1353.999312950876,350.57231192030235 1440,350 C 1440,350 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#641ddf88" class="transition-all duration-300 ease-in-out delay-150 path-1"></path><style>
|
|
||||||
.path-2{
|
|
||||||
animation:pathAnim-2 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-2{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 64.83957402954312,548.3521126760563 129.67914805908623,571.7042253521128 197,584 C 264.32085194091377,596.2957746478872 334.1229817931983,597.5352112676056 407,588 C 479.8770182068017,578.4647887323944 555.8289247681208,558.1549295774648 620,544 C 684.1710752318792,529.8450704225352 736.5613191343181,521.8450704225352 810,539 C 883.4386808656819,556.1549295774648 977.9257986946066,598.4647887323943 1052,584 C 1126.0742013053934,569.5352112676057 1179.7354860872554,498.2957746478874 1241,479 C 1302.2645139127446,459.7042253521126 1371.1322569563722,492.3521126760563 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 61.967708691171396,520.8577808313294 123.93541738234279,516.7155616626588 190,526 C 256.0645826176572,535.2844383373412 326.2260391618001,557.995534180694 401,549 C 475.7739608381999,540.004465819306 555.1604259704569,499.30230161456535 617,494 C 678.8395740295431,488.69769838543465 723.1322569563722,518.7952593610444 790,514 C 856.8677430436278,509.20474063895557 946.3105462040537,469.51666094125727 1024,464 C 1101.6894537959463,458.48333905874273 1167.6255582274132,487.13809687392643 1235,503 C 1302.3744417725868,518.8619031260736 1371.1872208862933,521.9309515630368 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 78.54689110271383,556.4386808656818 157.09378220542766,587.8773617313637 225,585 C 292.90621779457234,582.1226382686363 350.17176228100317,544.9292339402267 421,544 C 491.82823771899683,543.0707660597733 576.2191686705598,578.4057025077293 652,586 C 727.7808313294402,593.5942974922707 794.9515630367572,573.4479560288561 854,550 C 913.0484369632428,526.5520439711439 963.9745791824114,499.8024733768465 1023,504 C 1082.0254208175886,508.1975266231535 1149.1501202335967,543.3421504637581 1220,552 C 1290.8498797664033,560.6578495362419 1365.4249398832017,542.8289247681209 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 61.19615252490553,548.1803503950532 122.39230504981106,571.3607007901065 185,556 C 247.60769495018894,540.6392992098935 311.6269323256613,486.73754723462724 381,466 C 450.3730676743387,445.26245276537276 525.0999656475439,457.68911027138444 593,459 C 660.9000343524561,460.31088972861556 721.9732050841635,450.506011679835 784,472 C 846.0267949158365,493.493988320165 909.0072140158022,546.2868430092752 995,566 C 1080.9927859841978,585.7131569907248 1189.997938852628,572.3466162830642 1268,560 C 1346.002061147372,547.6533837169358 1393.001030573686,536.3266918584679 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 64.83957402954312,548.3521126760563 129.67914805908623,571.7042253521128 197,584 C 264.32085194091377,596.2957746478872 334.1229817931983,597.5352112676056 407,588 C 479.8770182068017,578.4647887323944 555.8289247681208,558.1549295774648 620,544 C 684.1710752318792,529.8450704225352 736.5613191343181,521.8450704225352 810,539 C 883.4386808656819,556.1549295774648 977.9257986946066,598.4647887323943 1052,584 C 1126.0742013053934,569.5352112676057 1179.7354860872554,498.2957746478874 1241,479 C 1302.2645139127446,459.7042253521126 1371.1322569563722,492.3521126760563 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,525 0,525 C 64.83957402954312,548.3521126760563 129.67914805908623,571.7042253521128 197,584 C 264.32085194091377,596.2957746478872 334.1229817931983,597.5352112676056 407,588 C 479.8770182068017,578.4647887323944 555.8289247681208,558.1549295774648 620,544 C 684.1710752318792,529.8450704225352 736.5613191343181,521.8450704225352 810,539 C 883.4386808656819,556.1549295774648 977.9257986946066,598.4647887323943 1052,584 C 1126.0742013053934,569.5352112676057 1179.7354860872554,498.2957746478874 1241,479 C 1302.2645139127446,459.7042253521126 1371.1322569563722,492.3521126760563 1440,525 C 1440,525 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#641ddfff" class="transition-all duration-300 ease-in-out delay-150 path-2"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 13 KiB |
|
|
@ -1 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 801 B |
|
|
@ -1,8 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg width="1000" height="500" version="1.1" viewBox="0 0 264.58 132.29" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -241.94)">
|
|
||||||
<path d="m-9.4453 245.91s22.705 5.9315 37.566 6.44 26.125-9.6968 39.811-9.6795c13.686 0.0173 23.262 11.3 38.327 12.255 15.065 0.95511 32.874-11.91 52.554-12.919s43.927 9.9824 61.433 10.129 32.716-7.0375 41.216-7.728 9.2306 0.21466 9.2306 0.21466l-0.21468 59.892-276.7-0.644z" fill="#323946"/>
|
|
||||||
<path d="m-9.4453 245.91s12.72-2.6968 19.105-2.1467c14.258 1.2285 26.958 10.791 41.216 12.021 24.319 2.0986 48.409-9.6638 72.771-8.1573 21.151 1.308 40.643 14.153 61.824 14.812 19.53 0.60736 38.213-10.632 57.745-10.089 9.4733 0.26305 27.692 6.44 27.692 6.44l-0.42934 45.724-276.7-0.644z" fill="#373d4c"/>
|
|
||||||
<path d="m-9.4453 259.43s17.104 5.7004 25.974 5.796c22.915 0.24676 44.491-13.207 67.405-13.524 20.255-0.27987 39.636 10.021 59.892 10.304 18.142 0.25329 35.737-7.6134 53.881-7.728 24.318-0.15352 72.342 9.4453 72.342 9.4453l-3.002 112.88-270 0.0557z" fill="#3b4252"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.1 KiB |
|
|
@ -1,67 +0,0 @@
|
||||||
<svg width="100%" height="100%" id="svg" viewBox="0 0 1440 700" xmlns="http://www.w3.org/2000/svg" class="transition duration-300 ease-in-out delay-150"><style>
|
|
||||||
.path-0{
|
|
||||||
animation:pathAnim-0 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-0{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 98.76666666666668,201.13846153846154 197.53333333333336,227.27692307692308 279,216 C 360.46666666666664,204.72307692307692 424.6333333333333,156.0307692307692 488,154 C 551.3666666666667,151.9692307692308 613.9333333333334,196.6 695,208 C 776.0666666666666,219.4 875.6333333333332,197.56923076923076 954,192 C 1032.3666666666668,186.43076923076924 1089.5333333333333,197.12307692307692 1167,197 C 1244.4666666666667,196.87692307692308 1342.2333333333333,185.93846153846152 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 71.32051282051285,180.2 142.6410256410257,185.4 224,167 C 305.3589743589743,148.6 396.7564102564103,106.60000000000001 493,110 C 589.2435897435897,113.39999999999999 690.3333333333333,162.2 764,171 C 837.6666666666667,179.8 883.9102564102564,148.60000000000002 962,129 C 1040.0897435897436,109.39999999999998 1150.0256410256409,101.39999999999999 1235,111 C 1319.9743589743591,120.60000000000001 1379.9871794871797,147.8 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 67.12051282051283,184.24615384615385 134.24102564102566,193.49230769230766 207,195 C 279.75897435897434,196.50769230769234 358.15641025641025,190.27692307692308 452,171 C 545.8435897435897,151.72307692307692 655.1333333333334,119.39999999999999 727,113 C 798.8666666666666,106.60000000000001 833.3102564102564,126.12307692307695 916,145 C 998.6897435897436,163.87692307692305 1129.625641025641,182.1076923076923 1225,187 C 1320.374358974359,191.8923076923077 1380.1871794871795,183.44615384615383 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 76.09999999999997,135.03076923076924 152.19999999999993,95.06153846153846 224,110 C 295.80000000000007,124.93846153846154 363.30000000000007,194.7846153846154 441,231 C 518.6999999999999,267.2153846153846 606.5999999999999,269.8 693,234 C 779.4000000000001,198.2 864.3000000000002,124.0153846153846 941,118 C 1017.6999999999998,111.9846153846154 1086.2,174.13846153846154 1168,195 C 1249.8,215.86153846153846 1344.9,195.43076923076922 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,175 0,175 C 98.76666666666668,201.13846153846154 197.53333333333336,227.27692307692308 279,216 C 360.46666666666664,204.72307692307692 424.6333333333333,156.0307692307692 488,154 C 551.3666666666667,151.9692307692308 613.9333333333334,196.6 695,208 C 776.0666666666666,219.4 875.6333333333332,197.56923076923076 954,192 C 1032.3666666666668,186.43076923076924 1089.5333333333333,197.12307692307692 1167,197 C 1244.4666666666667,196.87692307692308 1342.2333333333333,185.93846153846152 1440,175 C 1440,175 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,175 0,175 C 98.76666666666668,201.13846153846154 197.53333333333336,227.27692307692308 279,216 C 360.46666666666664,204.72307692307692 424.6333333333333,156.0307692307692 488,154 C 551.3666666666667,151.9692307692308 613.9333333333334,196.6 695,208 C 776.0666666666666,219.4 875.6333333333332,197.56923076923076 954,192 C 1032.3666666666668,186.43076923076924 1089.5333333333333,197.12307692307692 1167,197 C 1244.4666666666667,196.87692307692308 1342.2333333333333,185.93846153846152 1440,175 C 1440,175 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#5b667e66" class="transition-all duration-300 ease-in-out delay-150 path-0"></path><style>
|
|
||||||
.path-1{
|
|
||||||
animation:pathAnim-1 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-1{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 61.27692307692308,353.24871794871797 122.55384615384617,356.49743589743593 195,348 C 267.44615384615383,339.50256410256407 351.0615384615385,319.25897435897434 455,336 C 558.9384615384615,352.74102564102566 683.1999999999999,406.46666666666664 757,409 C 830.8000000000001,411.53333333333336 854.1384615384617,362.87435897435904 929,352 C 1003.8615384615383,341.12564102564096 1130.2461538461537,368.0358974358974 1224,374 C 1317.7538461538463,379.9641025641026 1378.876923076923,364.9820512820513 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 82.77179487179487,328.6871794871795 165.54358974358973,307.374358974359 250,311 C 334.45641025641027,314.625641025641 420.59743589743596,343.18974358974356 503,357 C 585.402564102564,370.81025641025644 664.0666666666667,369.8666666666667 738,350 C 811.9333333333333,330.1333333333333 881.1358974358975,291.3435897435897 955,292 C 1028.8641025641025,292.6564102564103 1107.3897435897436,332.7589743589744 1189,349 C 1270.6102564102564,365.2410256410256 1355.3051282051283,357.6205128205128 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 65.52820512820512,346.8307692307692 131.05641025641023,343.66153846153844 217,344 C 302.94358974358977,344.33846153846156 409.30256410256413,348.18461538461537 490,343 C 570.6974358974359,337.81538461538463 625.7333333333332,323.6 702,326 C 778.2666666666668,328.4 875.7641025641026,347.41538461538465 952,366 C 1028.2358974358974,384.58461538461535 1083.2102564102565,402.73846153846154 1161,400 C 1238.7897435897435,397.26153846153846 1339.3948717948717,373.63076923076926 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 68.02820512820512,330.8897435897436 136.05641025641023,311.77948717948715 221,324 C 305.94358974358977,336.22051282051285 407.80256410256425,379.7717948717949 483,404 C 558.1974358974358,428.2282051282051 606.7333333333332,433.1333333333333 686,414 C 765.2666666666668,394.8666666666667 875.2641025641026,351.6948717948718 960,327 C 1044.7358974358974,302.3051282051282 1104.2102564102565,296.08717948717947 1180,303 C 1255.7897435897435,309.91282051282053 1347.8948717948717,329.95641025641027 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,350 0,350 C 61.27692307692308,353.24871794871797 122.55384615384617,356.49743589743593 195,348 C 267.44615384615383,339.50256410256407 351.0615384615385,319.25897435897434 455,336 C 558.9384615384615,352.74102564102566 683.1999999999999,406.46666666666664 757,409 C 830.8000000000001,411.53333333333336 854.1384615384617,362.87435897435904 929,352 C 1003.8615384615383,341.12564102564096 1130.2461538461537,368.0358974358974 1224,374 C 1317.7538461538463,379.9641025641026 1378.876923076923,364.9820512820513 1440,350 C 1440,350 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,350 0,350 C 61.27692307692308,353.24871794871797 122.55384615384617,356.49743589743593 195,348 C 267.44615384615383,339.50256410256407 351.0615384615385,319.25897435897434 455,336 C 558.9384615384615,352.74102564102566 683.1999999999999,406.46666666666664 757,409 C 830.8000000000001,411.53333333333336 854.1384615384617,362.87435897435904 929,352 C 1003.8615384615383,341.12564102564096 1130.2461538461537,368.0358974358974 1224,374 C 1317.7538461538463,379.9641025641026 1378.876923076923,364.9820512820513 1440,350 C 1440,350 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#5b667e88" class="transition-all duration-300 ease-in-out delay-150 path-1"></path><style>
|
|
||||||
.path-2{
|
|
||||||
animation:pathAnim-2 4s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
@keyframes pathAnim-2{
|
|
||||||
0%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 75,542.6179487179487 150,560.2358974358974 236,544 C 322,527.7641025641026 419,477.674358974359 501,483 C 583,488.325641025641 650,549.0666666666667 716,576 C 782,602.9333333333333 847.0000000000001,596.0589743589743 935,580 C 1022.9999999999999,563.9410256410257 1133.9999999999998,538.697435897436 1222,528 C 1310.0000000000002,517.302564102564 1375,521.151282051282 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
25%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 55.110256410256426,538.3461538461538 110.22051282051285,551.6923076923077 204,557 C 297.77948717948715,562.3076923076923 430.2282051282051,559.5769230769231 507,558 C 583.7717948717949,556.4230769230769 604.8666666666667,556 687,537 C 769.1333333333333,518 912.3051282051283,480.42307692307696 994,467 C 1075.6948717948717,453.57692307692304 1095.9128205128204,464.3076923076923 1160,478 C 1224.0871794871796,491.6923076923077 1332.0435897435898,508.3461538461538 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 98.69487179487183,536.551282051282 197.38974358974366,548.1025641025641 278,541 C 358.61025641025634,533.8974358974359 421.1358974358974,508.1410256410257 495,497 C 568.8641025641026,485.8589743589743 654.0666666666667,489.3333333333333 736,491 C 817.9333333333333,492.6666666666667 896.5974358974356,492.52564102564105 969,499 C 1041.4025641025644,505.47435897435895 1107.5435897435898,518.5641025641025 1185,524 C 1262.4564102564102,529.4358974358975 1351.228205128205,527.2179487179487 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
75%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 66.24871794871794,489.1051282051282 132.49743589743588,453.2102564102564 212,463 C 291.5025641025641,472.7897435897436 384.25897435897434,528.2641025641026 481,535 C 577.7410256410257,541.7358974358974 678.4666666666667,499.7333333333333 747,481 C 815.5333333333333,462.2666666666667 851.874358974359,466.80256410256413 926,491 C 1000.125641025641,515.1974358974359 1112.0358974358974,559.0564102564103 1204,568 C 1295.9641025641026,576.9435897435897 1367.9820512820513,550.9717948717948 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
d: path("M 0,700 C 0,700 0,525 0,525 C 75,542.6179487179487 150,560.2358974358974 236,544 C 322,527.7641025641026 419,477.674358974359 501,483 C 583,488.325641025641 650,549.0666666666667 716,576 C 782,602.9333333333333 847.0000000000001,596.0589743589743 935,580 C 1022.9999999999999,563.9410256410257 1133.9999999999998,538.697435897436 1222,528 C 1310.0000000000002,517.302564102564 1375,521.151282051282 1440,525 C 1440,525 1440,700 1440,700 Z");
|
|
||||||
}
|
|
||||||
}</style><path d="M 0,700 C 0,700 0,525 0,525 C 75,542.6179487179487 150,560.2358974358974 236,544 C 322,527.7641025641026 419,477.674358974359 501,483 C 583,488.325641025641 650,549.0666666666667 716,576 C 782,602.9333333333333 847.0000000000001,596.0589743589743 935,580 C 1022.9999999999999,563.9410256410257 1133.9999999999998,538.697435897436 1222,528 C 1310.0000000000002,517.302564102564 1375,521.151282051282 1440,525 C 1440,525 1440,700 1440,700 Z" stroke="none" stroke-width="0" fill="#5b667eff" class="transition-all duration-300 ease-in-out delay-150 path-2"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 11 KiB |
117
index.html
|
|
@ -1,117 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<script src="./js/themes/loadIndex.js"></script>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="theme-color" content="#81A1C1">
|
|
||||||
<title>Alu's Unblocker</title>
|
|
||||||
<link rel="stylesheet" href="./vendor/aos/aos.css" />
|
|
||||||
<link rel="icon" href="./img/icon.svg">
|
|
||||||
<link rel="apple-touch-icon" href="./apple-touch-icon.png"/>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<script>
|
|
||||||
if ('serviceWorker' in navigator) {
|
|
||||||
window.addEventListener('load', () => {
|
|
||||||
navigator.serviceWorker.register('/pwabuilder-sw.js').then((reg) => {
|
|
||||||
console.log('Service worker registered.', reg);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<script src="./loadScript.js"></script>
|
|
||||||
<script>
|
|
||||||
if ( window.location !== window.parent.location ) { // In a frame
|
|
||||||
loadJS("./settings_frame.js", false)
|
|
||||||
} else { // Not in a frame
|
|
||||||
if (localStorage.getItem('windowCloak') == "1") { // Setting "windowCloak" is enabled
|
|
||||||
var x = window.open('')
|
|
||||||
x.document.write('<iframe src="https://alusunblocker.gq" style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%;"></iframe>');
|
|
||||||
x.document.write('<script src="./settings_frame.js">')
|
|
||||||
window.location.href = "https://google.com"
|
|
||||||
} else { // Setting "windowCloak" is not enabled
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body id="body">
|
|
||||||
<script src="./vendor/aos/aos.js"></script>
|
|
||||||
<script src="./toggles.js"></script>
|
|
||||||
<script src="./main.js"></script> <!--header moment-->
|
|
||||||
<script src="./header.js"></script>
|
|
||||||
<script src="./themes.js"></script>
|
|
||||||
<div id="main">
|
|
||||||
<div class="top-header" data-aos="fade-down" data-aos-duration="1000">
|
|
||||||
<div id="title-background" class="title-background"><a id="nav-toggle" class="mobile-toggle" onclick="openNav()"><svg class="menu-bar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM0 256C0 238.3 14.33 224 32 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H32C14.33 288 0 273.7 0 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z"/></svg></a></div>
|
|
||||||
</div>
|
|
||||||
<div id="sidenav" class="sidenav">
|
|
||||||
<a class="closebtn" onclick="closeNav()">×</a>
|
|
||||||
<br>
|
|
||||||
<a href="/" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 576 512"><path d="M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.5 450.5 512.3 453.1 512 455.8V472C512 494.1 494.1 512 472 512H456C454.9 512 453.8 511.1 452.7 511.9C451.3 511.1 449.9 512 448.5 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5z"/></svg> Home</a>
|
|
||||||
<a href="/proxies" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 512 512"><path d="M432 64H208C199.2 64 192 71.16 192 80V96H128V80C128 35.82 163.8 0 208 0H432C476.2 0 512 35.82 512 80V304C512 348.2 476.2 384 432 384H416V320H432C440.8 320 448 312.8 448 304V80C448 71.16 440.8 64 432 64zM0 192C0 156.7 28.65 128 64 128H320C355.3 128 384 156.7 384 192V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V192zM96 256H288C305.7 256 320 241.7 320 224C320 206.3 305.7 192 288 192H96C78.33 192 64 206.3 64 224C64 241.7 78.33 256 96 256z"/></svg> Proxies</a>
|
|
||||||
<a href="/games" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 640 512"><path d="M448 64H192C85.96 64 0 149.1 0 256s85.96 192 192 192h256c106 0 192-85.96 192-192S554 64 448 64zM247.1 280h-32v32c0 13.2-10.78 24-23.98 24c-13.2 0-24.02-10.8-24.02-24v-32L136 279.1C122.8 279.1 111.1 269.2 111.1 256c0-13.2 10.85-24.01 24.05-24.01L167.1 232v-32c0-13.2 10.82-24 24.02-24c13.2 0 23.98 10.8 23.98 24v32h32c13.2 0 24.02 10.8 24.02 24C271.1 269.2 261.2 280 247.1 280zM431.1 344c-22.12 0-39.1-17.87-39.1-39.1s17.87-40 39.1-40s39.1 17.88 39.1 40S454.1 344 431.1 344zM495.1 248c-22.12 0-39.1-17.87-39.1-39.1s17.87-40 39.1-40c22.12 0 39.1 17.88 39.1 40S518.1 248 495.1 248z"/></svg> Games</a>
|
|
||||||
<div class="divider"></div>
|
|
||||||
<a href="/bookmarklets" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 384 512"><path d="M384 48V512l-192-112L0 512V48C0 21.5 21.5 0 48 0h288C362.5 0 384 21.5 384 48z"/></svg> Bookmarklets</a>
|
|
||||||
<a href="/settings" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 512 512"><path d="M495.9 166.6C499.2 175.2 496.4 184.9 489.6 191.2L446.3 230.6C447.4 238.9 448 247.4 448 256C448 264.6 447.4 273.1 446.3 281.4L489.6 320.8C496.4 327.1 499.2 336.8 495.9 345.4C491.5 357.3 486.2 368.8 480.2 379.7L475.5 387.8C468.9 398.8 461.5 409.2 453.4 419.1C447.4 426.2 437.7 428.7 428.9 425.9L373.2 408.1C359.8 418.4 344.1 427 329.2 433.6L316.7 490.7C314.7 499.7 307.7 506.1 298.5 508.5C284.7 510.8 270.5 512 255.1 512C241.5 512 227.3 510.8 213.5 508.5C204.3 506.1 197.3 499.7 195.3 490.7L182.8 433.6C167 427 152.2 418.4 138.8 408.1L83.14 425.9C74.3 428.7 64.55 426.2 58.63 419.1C50.52 409.2 43.12 398.8 36.52 387.8L31.84 379.7C25.77 368.8 20.49 357.3 16.06 345.4C12.82 336.8 15.55 327.1 22.41 320.8L65.67 281.4C64.57 273.1 64 264.6 64 256C64 247.4 64.57 238.9 65.67 230.6L22.41 191.2C15.55 184.9 12.82 175.3 16.06 166.6C20.49 154.7 25.78 143.2 31.84 132.3L36.51 124.2C43.12 113.2 50.52 102.8 58.63 92.95C64.55 85.8 74.3 83.32 83.14 86.14L138.8 103.9C152.2 93.56 167 84.96 182.8 78.43L195.3 21.33C197.3 12.25 204.3 5.04 213.5 3.51C227.3 1.201 241.5 0 256 0C270.5 0 284.7 1.201 298.5 3.51C307.7 5.04 314.7 12.25 316.7 21.33L329.2 78.43C344.1 84.96 359.8 93.56 373.2 103.9L428.9 86.14C437.7 83.32 447.4 85.8 453.4 92.95C461.5 102.8 468.9 113.2 475.5 124.2L480.2 132.3C486.2 143.2 491.5 154.7 495.9 166.6V166.6zM256 336C300.2 336 336 300.2 336 255.1C336 211.8 300.2 175.1 256 175.1C211.8 175.1 176 211.8 176 255.1C176 300.2 211.8 336 256 336z"/></svg> Settings</a>
|
|
||||||
<div class="divider"></div>
|
|
||||||
<a href="./credits" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 448 512"><path d="M256 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H256C273.7 32 288 46.33 288 64C288 81.67 273.7 96 256 96zM256 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H256C273.7 288 288 302.3 288 320C288 337.7 273.7 352 256 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z"/></svg> Credits</a>
|
|
||||||
<a href="./docs.html" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 448 512"><path d="M448 336v-288C448 21.49 426.5 0 400 0H352v191.1c0 13.41-15.52 20.88-25.1 12.49L272 160L217.1 204.5C207.5 212.8 192 205.4 192 191.1V0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-32c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448z"/></svg> Docs</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="main-content">
|
|
||||||
<h1 id="title-text" class="title-text fade-in">Alu's<br>Unblocker</h1>
|
|
||||||
<h4 id="subtitle-text" class="subtitle-text fade-in">Alu's Unblocker is an advanced proxy service that features many different forms of exploits and services for use in the classroom.</h4>
|
|
||||||
<a id="proxies-button" class="proxies-button" href="./proxies">Proxies</a>
|
|
||||||
</div>
|
|
||||||
<div class="mid-content">
|
|
||||||
<div id="card" class="card">
|
|
||||||
<h1 class="mid-content-title">Alu's Unblocker is an advanced proxy service that offers high reliability and low block rates</h1>
|
|
||||||
<div class="gap"></div>
|
|
||||||
<p class="middle-content">Alu's Unblocker has a wide variety of blockers and other services that are used to make school devices more versatile and overall more useful.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="get-involved">
|
|
||||||
<h1 id="gi-title" class="gi-title">How you can contribute to Alu.</h1>
|
|
||||||
</div>
|
|
||||||
<div id="gi-card" class="gi-card">
|
|
||||||
<div class="donate">
|
|
||||||
<h3>You can support development of Alu by subscribing to my patreon or by donating money to my paypal!</h3>
|
|
||||||
</div>
|
|
||||||
<div class="buttons">
|
|
||||||
<a href="#" class="donate-button"><svg class="btn-icn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"/></svg></a>
|
|
||||||
<a href="#" class="donate-button"><svg class="btn-icn patreon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"/></svg></a>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
</div>
|
|
||||||
<div id="footer">
|
|
||||||
<div class="footerflex">
|
|
||||||
<div class="footerbrand">
|
|
||||||
<h3><a href="/">Alu's Unblocker</a></h3>
|
|
||||||
<p>Made with ❤️ by <a href="#">wearr</a></p>
|
|
||||||
</div>
|
|
||||||
<div class="footerlist">
|
|
||||||
<h3>Services</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Ultraviolet">Ultraviolet</a></li>
|
|
||||||
<li><a target="_blank" href="https://github.com/binary-person/rammerhead">Rammerhead</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="footerlist">
|
|
||||||
<h3>Socials</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Holy-Unblocker">GitHub</a></li>
|
|
||||||
<li><a href="/terms.html">Instagram</a></li>
|
|
||||||
<div class="tooltip">
|
|
||||||
<span class="tooltiptext" id="myTooltip">Copy</span>
|
|
||||||
<li><a onclick="copyDiscord();" onmouseout="outFunc();" class="discord-text">Discord</a></li>
|
|
||||||
</div>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="copyright">Alu's Unblocker © 2022</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
141
index.js
Normal file
|
|
@ -0,0 +1,141 @@
|
||||||
|
import "./middleware/catchErrors.js";
|
||||||
|
import dotenv from "dotenv-flow";
|
||||||
|
import { uvPath } from "@titaniumnetwork-dev/ultraviolet";
|
||||||
|
import { epoxyPath } from "@mercuryworkshop/epoxy-transport";
|
||||||
|
import { libcurlPath } from "@mercuryworkshop/libcurl-transport";
|
||||||
|
import { bareModulePath } from "@mercuryworkshop/bare-as-module3";
|
||||||
|
import { baremuxPath } from "@mercuryworkshop/bare-mux/node";
|
||||||
|
import express from "express";
|
||||||
|
import { createServer } from "http";
|
||||||
|
import path from "node:path";
|
||||||
|
import chalk from "chalk";
|
||||||
|
import { server as wisp, logging as wispLogging } from "@mercuryworkshop/wisp-js/server";
|
||||||
|
import { handler as astroSSR } from "./dist/server/entry.mjs";
|
||||||
|
import cookies from "cookie-parser";
|
||||||
|
import { existsSync, readFileSync } from "fs";
|
||||||
|
|
||||||
|
dotenv.config();
|
||||||
|
|
||||||
|
const whiteListedDomains = ["aluu.xyz", "localhost"];
|
||||||
|
|
||||||
|
if (existsSync("exempt_masqr.txt")) {
|
||||||
|
const file = readFileSync("exempt_masqr.txt", "utf-8");
|
||||||
|
const exemptDomains = file.split("\n");
|
||||||
|
exemptDomains.forEach((domain) => {
|
||||||
|
whiteListedDomains.push(domain.trim());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const LICENSE_SERVER_URL = "https://license.mercurywork.shop/validate?license=";
|
||||||
|
const MASQR_ENABLED = process.env.MASQR_ENABLED;
|
||||||
|
wispLogging.set_level(wispLogging.WARN);
|
||||||
|
|
||||||
|
const log = (message) => console.log(chalk.gray.bold("[Alu] " + message));
|
||||||
|
const success = (message) => console.log(chalk.green.bold("[Alu] " + message));
|
||||||
|
|
||||||
|
const PORT = process.env.PORT;
|
||||||
|
const app = express();
|
||||||
|
|
||||||
|
app.use(cookies());
|
||||||
|
|
||||||
|
// Set process.env.MASQR_ENABLED to "true" to enable masqr protection.
|
||||||
|
if (MASQR_ENABLED == "true") {
|
||||||
|
log("Starting Masqr...");
|
||||||
|
const masqrCheck = (await import("./middleware/Masqr/index.js")).masqrCheck;
|
||||||
|
app.use(await masqrCheck({ whitelist: whiteListedDomains, licenseServer: LICENSE_SERVER_URL, htmlFile: "Checkfailed.html" }));
|
||||||
|
}
|
||||||
|
|
||||||
|
app.use(astroSSR);
|
||||||
|
|
||||||
|
app.use(express.static(path.join(process.cwd(), "static")));
|
||||||
|
app.use(express.static(path.join(process.cwd(), "build")));
|
||||||
|
app.use("/uv/", express.static(uvPath));
|
||||||
|
app.use("/epoxy/", express.static(epoxyPath));
|
||||||
|
app.use("/libcurl/", express.static(libcurlPath));
|
||||||
|
app.use("/baremux/", express.static(baremuxPath));
|
||||||
|
app.use("/baremod/", express.static(bareModulePath));
|
||||||
|
|
||||||
|
app.use(express.json());
|
||||||
|
app.use(
|
||||||
|
express.urlencoded({
|
||||||
|
extended: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
app.use((req, res, next) => {
|
||||||
|
if (req.url.includes("/games/")) {
|
||||||
|
res.header("Cross-Origin-Opener-Policy", "same-origin");
|
||||||
|
res.header("Cross-Origin-Embedder-Policy", "require-corp");
|
||||||
|
}
|
||||||
|
next();
|
||||||
|
});
|
||||||
|
app.use("/custom-favicon", async (req, res) => {
|
||||||
|
try {
|
||||||
|
const { url } = req.query;
|
||||||
|
const response = await fetch(`https://www.google.com/s2/favicons?domain=${url}&sz=128`);
|
||||||
|
const buffer = new Buffer.from(await response.arrayBuffer());
|
||||||
|
res.set("Content-Type", "image/png");
|
||||||
|
res.send(buffer);
|
||||||
|
} catch {
|
||||||
|
res.sendStatus(500);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.use("/blocklist", async (req, res) => {
|
||||||
|
try {
|
||||||
|
const { url } = req.query;
|
||||||
|
const response = await fetch(url).then((r) => r.text());
|
||||||
|
res.set("Content-Type", "text/plain");
|
||||||
|
res.send(response);
|
||||||
|
} catch {
|
||||||
|
res.sendStatus(500);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.use("/", express.static("dist/client/"));
|
||||||
|
app.get("/favicon.ico", (req, res) => {
|
||||||
|
res.sendFile(path.join(process.cwd(), "dist/client/favicon.svg"));
|
||||||
|
});
|
||||||
|
app.get("/robots.txt", (req, res) => {
|
||||||
|
if (req.headers.host && whiteListedDomains.includes(req.headers.host)) {
|
||||||
|
res.sendFile(path.join(process.cwd(), "dist/client/robots-allow.txt"));
|
||||||
|
} else {
|
||||||
|
res.sendFile(path.join(process.cwd(), "dist/client/robots-deny.txt"));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
app.get("/search", async (req, res) => {
|
||||||
|
try {
|
||||||
|
const { query } = req.query;
|
||||||
|
|
||||||
|
const response = await fetch(`http://api.duckduckgo.com/ac?q=${query}&format=json`).then((apiRes) => apiRes.json());
|
||||||
|
|
||||||
|
res.send(response);
|
||||||
|
} catch (err) {
|
||||||
|
res.redirect(302, "/404.html");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
app.get("*", (req, res) => {
|
||||||
|
res.redirect(302, "/404");
|
||||||
|
});
|
||||||
|
|
||||||
|
const server = createServer();
|
||||||
|
server.on("request", (req, res) => {
|
||||||
|
app(req, res);
|
||||||
|
});
|
||||||
|
|
||||||
|
server.on("upgrade", (req, socket, head) => {
|
||||||
|
if (req.url.endsWith("/wisp/")) {
|
||||||
|
wisp.routeRequest(req, socket, head);
|
||||||
|
} else {
|
||||||
|
socket.end();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
log("Starting Alu...");
|
||||||
|
success("Alu started successfully!");
|
||||||
|
server.on("listening", () => {
|
||||||
|
success(`Server running at http://localhost:${PORT}/.`);
|
||||||
|
});
|
||||||
|
|
||||||
|
server.listen({
|
||||||
|
port: PORT,
|
||||||
|
});
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
// RAINBOW VOMIT by wearr
|
|
||||||
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
var cssId = 'main'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/bookmarklets.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
var cssId = 'boilerplate'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/boilerplate.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
var cssId = 'main'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/credits.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
var cssId = 'boilerplate'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/boilerplate.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
var cssId = 'main'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/games.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
var cssId = 'boilerplate'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/boilerplate.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
var cssId = 'main'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/index.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
var cssId = 'boilerplate'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/boilerplate.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
var cssId = 'main'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/index.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
var cssId = 'boilerplate'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/boilerplate.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
var cssId = 'main'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/proxies.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
var cssId = 'boilerplate'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/boilerplate.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
var cssId = 'main'; // you could encode the css path itself to generate id..
|
|
||||||
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link');
|
|
||||||
{
|
|
||||||
if (localStorage.getItem('siteTheme') == "Light") {
|
|
||||||
link.href = "https://alusunlocker.gq/css/light/proxies.css"
|
|
||||||
} else {
|
|
||||||
link.href = 'https://alusunblocker.gq/css/dark/proxies.css';
|
|
||||||
}
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
var cssId = 'boilerplate'; // you could encode the css path itself to generate id..
|
|
||||||
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link');
|
|
||||||
{
|
|
||||||
if (localStorage.getItem('siteTheme') == "Light") {
|
|
||||||
link.href = "https://alusunblocker.gq/css/light/boilerplate.css"
|
|
||||||
} else {
|
|
||||||
link.href = 'http://alusunblocker.gq/css/dark/boilerplate.css';
|
|
||||||
}
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
var cssId = 'main'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/settings.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
var cssId = 'boilerplate'; // you could encode the css path itself to generate id..
|
|
||||||
if (!document.getElementById(cssId))
|
|
||||||
var head = document.getElementsByTagName('head')[0];
|
|
||||||
var link = document.createElement('link')
|
|
||||||
{
|
|
||||||
let linkref = localStorage.getItem('siteTheme')
|
|
||||||
let head = document.getElementsByTagName('head')[0];
|
|
||||||
let link = document.createElement('link');
|
|
||||||
link.href = "/css/" + linkref + "/boilerplate.css"
|
|
||||||
link.type = 'text/css';
|
|
||||||
link.id = cssId;
|
|
||||||
link.rel = 'stylesheet';
|
|
||||||
head.appendChild(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (localStorage.getItem('siteTheme') == "rainbow") {
|
|
||||||
var script = document.createElement('script');
|
|
||||||
script.onload = function () {
|
|
||||||
//do stuff with the script
|
|
||||||
};
|
|
||||||
script.src = "/js/site/rainbow.js";
|
|
||||||
|
|
||||||
document.head.appendChild(script); //or something of the likes
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
// loadJS("FILE_PATH_HERE", true/false for async)
|
|
||||||
// EX. loadJS("./main.js", true) loads main.js as async!
|
|
||||||
function loadJS(FILE_URL, async = true) {
|
|
||||||
let scriptEle = document.createElement("script");
|
|
||||||
|
|
||||||
scriptEle.setAttribute("src", FILE_URL);
|
|
||||||
scriptEle.setAttribute("type", "text/javascript");
|
|
||||||
scriptEle.setAttribute("async", async);
|
|
||||||
|
|
||||||
document.body.appendChild(scriptEle);
|
|
||||||
|
|
||||||
// success event
|
|
||||||
scriptEle.addEventListener("load", () => {
|
|
||||||
console.log("File Load Success!")
|
|
||||||
});
|
|
||||||
// error event
|
|
||||||
scriptEle.addEventListener("error", (ev) => {
|
|
||||||
console.log("File Load Fail. Error:", ev);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
59
main.js
|
|
@ -1,59 +0,0 @@
|
||||||
AOS.init();
|
|
||||||
window.onload = (event) => {
|
|
||||||
if (typeof localStorage !== 'undefined') {
|
|
||||||
var firstTime = localStorage.getItem("first_time");
|
|
||||||
if(!firstTime) {
|
|
||||||
// first time loaded!
|
|
||||||
resetCloaks();
|
|
||||||
localStorage.setItem("first_time","1");
|
|
||||||
console.log("first time loaded!")
|
|
||||||
localStorage.setItem("cloakActive", 0)
|
|
||||||
}
|
|
||||||
if (localStorage.getItem("cloakActive") == 0) {
|
|
||||||
if (localStorage.getItem("tabName") != null) {
|
|
||||||
localStorage.setItem("tabName", document.getElementsByTagName("title")[0].text)
|
|
||||||
localStorage.setItem("tabIcon", "./img/icon.svg")
|
|
||||||
} else {
|
|
||||||
document.title = "Alu's Unblocker"
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.log("cloaking is enabled!")
|
|
||||||
document.querySelector("link[rel*='icon']").href = localStorage.getItem('tabIcon');
|
|
||||||
document.title = localStorage.getItem('tabName')
|
|
||||||
}
|
|
||||||
|
|
||||||
if (localStorage.getItem("footerHidden") == 'true') {
|
|
||||||
hideFooter();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.log('no localstorage API exists!')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Smaller Screen Navigation ( Less than 1080p :D )
|
|
||||||
function showMobileNav() {
|
|
||||||
setTimeout(() => {
|
|
||||||
document.getElementById('mobile-header').style.maxHeight = "40vh";
|
|
||||||
document.getElementById('nav-icon').style.display = "none"
|
|
||||||
document.getElementById('mobile-header').style.transition = "max-height 350ms ease-in"
|
|
||||||
}, 400);
|
|
||||||
document.getElementById('nav-toggle').style.marginRight = "-50%"
|
|
||||||
document.getElementById('nav-toggle-disable').style.display = "flex"
|
|
||||||
document.getElementById('nav-toggle-disable').style.top = "3%"
|
|
||||||
}
|
|
||||||
function hideMobileNav() {
|
|
||||||
document.getElementById('mobile-header').style.maxHeight = "0vh";
|
|
||||||
document.getElementById('nav-toggle-disable').style.top = "-10%"
|
|
||||||
document.getElementById('nav-toggle').style.marginRight = "0.1%"
|
|
||||||
setTimeout(() => {
|
|
||||||
document.getElementById('nav-icon').style.display = "flex"
|
|
||||||
}, 400);
|
|
||||||
}
|
|
||||||
function copyDiscord() {
|
|
||||||
var tooltip = document.getElementById("myTooltip")
|
|
||||||
navigator.clipboard.writeText("wearr#4222");
|
|
||||||
tooltip.innerHTML = "Copied!"
|
|
||||||
}
|
|
||||||
function outFunc() {
|
|
||||||
var tooltip = document.getElementById("myTooltip");
|
|
||||||
tooltip.innerHTML = "Copy";
|
|
||||||
}
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"lang": "en",
|
|
||||||
"dir": "ltr",
|
|
||||||
"name": "Alu's Unblocker",
|
|
||||||
"short_name": "Alu's UB",
|
|
||||||
"description": "Access your favorite websites from anywhere",
|
|
||||||
"icons": [{
|
|
||||||
"src": "/favicon.png",
|
|
||||||
"sizes": "512x512",
|
|
||||||
"type": "image/png",
|
|
||||||
"purpose": "any maskable"
|
|
||||||
}],
|
|
||||||
"start_url": "/",
|
|
||||||
"display": "standalone",
|
|
||||||
"theme_color": "#81A1C1",
|
|
||||||
"background_color": "#ffffff"
|
|
||||||
}
|
|
||||||
73
middleware/Masqr/index.js
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
import path from "path";
|
||||||
|
import fs from "fs";
|
||||||
|
|
||||||
|
export async function masqrCheck(config) {
|
||||||
|
return async (req, res, next) => {
|
||||||
|
try {
|
||||||
|
const loadedHtmlFile = fs.readFileSync(process.cwd() + "/" + config.htmlFile, "utf8");
|
||||||
|
if (config.whitelist.includes(req.hostname)) {
|
||||||
|
next();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const authheader = req.headers.authorization;
|
||||||
|
|
||||||
|
if (!req.cookies) {
|
||||||
|
// Send an error
|
||||||
|
return res.send("Request failed!");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (req.cookies.authcheck) {
|
||||||
|
next();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!authheader) {
|
||||||
|
res.setHeader("WWW-Authenticate", "Basic");
|
||||||
|
res.status(401);
|
||||||
|
MasqrFail(req, res, loadedHtmlFile);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// If we are at this point, then the request should be a valid masqr request, and we are going to check the license server
|
||||||
|
const auth = Buffer.from(authheader.split(" ")[1], "base64").toString().split(":");
|
||||||
|
const pass = auth[1];
|
||||||
|
const licenseCheck = (await (await fetch(config.licenseServer + pass + "&host=" + req.headers.host)).json())["status"];
|
||||||
|
if (licenseCheck === "License valid") {
|
||||||
|
// Authenticated, set cookie for a year
|
||||||
|
res.cookie("authcheck", "true", {
|
||||||
|
expires: new Date(Date.now() + 365 * 24 * 60 * 60 * 1000),
|
||||||
|
});
|
||||||
|
res.send(`<script>window.location.href = window.location.href</script>`); // fun hack to make the browser refresh and remove the auth params from the URL
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
res.setHeader("WWW-Authenticate", "Basic");
|
||||||
|
res.status(401);
|
||||||
|
MasqrFail(req, res, loadedHtmlFile);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
res.status(500);
|
||||||
|
res.send("Internal server error");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
async function MasqrFail(req, res, failureFile) {
|
||||||
|
if (!req.headers.host) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const unsafeSuffix = req.headers.host + ".html";
|
||||||
|
const safeSuffix = path.normalize(unsafeSuffix).replace(/^(\.\.(\/|\\|$))+/, "");
|
||||||
|
const safeJoin = path.join(process.cwd() + "/Masqrd", safeSuffix);
|
||||||
|
try {
|
||||||
|
await fs.promises.access(safeJoin); // man do I wish this was an if-then instead of a "exception on fail"
|
||||||
|
const failureFileLocal = await fs.promises.readFile(safeJoin, "utf8");
|
||||||
|
res.setHeader("Content-Type", "text/html");
|
||||||
|
res.send(failureFileLocal);
|
||||||
|
return;
|
||||||
|
} catch (e) {
|
||||||
|
res.setHeader("Content-Type", "text/html");
|
||||||
|
res.status(401);
|
||||||
|
res.send(failureFile);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
11
middleware/catchErrors.js
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
import chalk from "chalk";
|
||||||
|
|
||||||
|
process.on("uncaughtException", (err) => {
|
||||||
|
console.log(chalk.bold.red(`[Alu] Caught error!\n${err.stack}`));
|
||||||
|
process.exit(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
process.on("uncaughtExceptionMonitor", (err) => {
|
||||||
|
console.log(chalk.bold.red(`[Alu] Caught error!\n${err.stack}`));
|
||||||
|
process.exit(1);
|
||||||
|
});
|
||||||
10637
package-lock.json
generated
Normal file
47
package.json
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"name": "alu",
|
||||||
|
"type": "module",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"scripts": {
|
||||||
|
"build:all": "npm run format && npm run lint && npm run build",
|
||||||
|
"start": "node .",
|
||||||
|
"build": "astro build",
|
||||||
|
"dev": "npm run build && npm run start",
|
||||||
|
"format": "prettier --write .",
|
||||||
|
"format:check": "prettier --check .",
|
||||||
|
"lint": "eslint .",
|
||||||
|
"lint:fix": "eslint --fix ."
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@astrojs/node": "^9.0.0",
|
||||||
|
"@astrojs/sitemap": "^3.2.1",
|
||||||
|
"@mercuryworkshop/bare-as-module3": "^2.2.5",
|
||||||
|
"@mercuryworkshop/bare-mux": "^2.1.5",
|
||||||
|
"@mercuryworkshop/epoxy-transport": "^2.1.26",
|
||||||
|
"@mercuryworkshop/libcurl-transport": "^1.3.14",
|
||||||
|
"@mercuryworkshop/wisp-js": "^0.3.3",
|
||||||
|
"@rubynetwork/rammerhead": "^1.3.5",
|
||||||
|
"@titaniumnetwork-dev/ultraviolet": "^3.2.10",
|
||||||
|
"@tomphttp/bare-server-node": "^2.0.5",
|
||||||
|
"@types/node": "^22.10.1",
|
||||||
|
"astro": "^5.0.1",
|
||||||
|
"chalk": "^5.3.0",
|
||||||
|
"cookie-parser": "^1.4.7",
|
||||||
|
"dotenv-flow": "^4.1.0",
|
||||||
|
"express": "^4.21.1",
|
||||||
|
"notyf": "^3.10.0",
|
||||||
|
"sequelize": "^6.37.5",
|
||||||
|
"sqlite3": "^5.1.7"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@typescript-eslint/eslint-plugin": "^8.17.0",
|
||||||
|
"@typescript-eslint/parser": "^8.17.0",
|
||||||
|
"eslint": "^9.16.0",
|
||||||
|
"eslint-plugin-astro": "^1.3.1",
|
||||||
|
"prettier": "3.4.1",
|
||||||
|
"prettier-plugin-astro": "^0.14.1"
|
||||||
|
},
|
||||||
|
"optionalDependencies": {
|
||||||
|
"bufferutil": "^4.0.8"
|
||||||
|
}
|
||||||
|
}
|
||||||
6360
pnpm-lock.yaml
generated
Normal file
12
prettier.config.js
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
const config = {
|
||||||
|
tabWidth: 2,
|
||||||
|
semi: true,
|
||||||
|
trailingComma: "es5",
|
||||||
|
bracketSpacing: true,
|
||||||
|
bracketSameLine: true,
|
||||||
|
arrowParens: "always",
|
||||||
|
plugins: ["prettier-plugin-astro"],
|
||||||
|
printWidth: 200,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default config;
|
||||||
|
|
@ -1,114 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Proxies</title>
|
|
||||||
<link id="favicon" rel="icon" type="image/png" href="/img/icon.png" />
|
|
||||||
<script src="/js/themes/loadProxies.js"></script>
|
|
||||||
<link rel="stylesheet" href="/vendor/aos/aos.css"/>
|
|
||||||
<script src="/toggles.js"></script>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<script>
|
|
||||||
if ('serviceWorker' in navigator) {
|
|
||||||
window.addEventListener('load', () => {
|
|
||||||
navigator.serviceWorker.register('/pwabuilder-sw.js').then((reg) => {
|
|
||||||
console.log('Service worker registered.', reg);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
function uv() {
|
|
||||||
function removeHttp(url) {
|
|
||||||
return url.replace(/example.com\/|http:\/\/|https:\/\/|www./gi, ""); // regex oof ouch my bones
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(removeHttp(document.domain));
|
|
||||||
window.location.href = "https://" + "uv." + removeHttp(document.domain)
|
|
||||||
}
|
|
||||||
function rh() {
|
|
||||||
function removeHttp(url) {
|
|
||||||
return url.replace(/example.com\/|http:\/\/|https:\/\/|www./gi, "");
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(removeHttp(document.domain));
|
|
||||||
window.location.href = "https://" + "r." + removeHttp(document.domain)
|
|
||||||
}
|
|
||||||
// thx stack overflow <3
|
|
||||||
</script>
|
|
||||||
<style>
|
|
||||||
.proxy-list-item {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body id="body">
|
|
||||||
<script src="/vendor/aos/aos.js"></script>
|
|
||||||
<script src="/main.js"></script> <!--so much pain. just. so. much. pain.-->
|
|
||||||
<script src="/header.js"></script>
|
|
||||||
<div class="top-header" data-aos="fade-down" data-aos-duration="1000">
|
|
||||||
<div id="title-background" class="title-background"><a id="nav-toggle" class="mobile-toggle" onclick="openNav()"><svg class="menu-bar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM0 256C0 238.3 14.33 224 32 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H32C14.33 288 0 273.7 0 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z"/></svg></a></div>
|
|
||||||
</div>
|
|
||||||
<div id="sidenav" class="sidenav">
|
|
||||||
<a class="closebtn" onclick="closeNav()">×</a>
|
|
||||||
<br>
|
|
||||||
<a href="/" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 576 512"><path d="M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.5 450.5 512.3 453.1 512 455.8V472C512 494.1 494.1 512 472 512H456C454.9 512 453.8 511.1 452.7 511.9C451.3 511.1 449.9 512 448.5 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5z"/></svg> Home</a>
|
|
||||||
<a href="/proxies" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 512 512"><path d="M432 64H208C199.2 64 192 71.16 192 80V96H128V80C128 35.82 163.8 0 208 0H432C476.2 0 512 35.82 512 80V304C512 348.2 476.2 384 432 384H416V320H432C440.8 320 448 312.8 448 304V80C448 71.16 440.8 64 432 64zM0 192C0 156.7 28.65 128 64 128H320C355.3 128 384 156.7 384 192V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V192zM96 256H288C305.7 256 320 241.7 320 224C320 206.3 305.7 192 288 192H96C78.33 192 64 206.3 64 224C64 241.7 78.33 256 96 256z"/></svg> Proxies</a>
|
|
||||||
<a href="/games" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 640 512"><path d="M448 64H192C85.96 64 0 149.1 0 256s85.96 192 192 192h256c106 0 192-85.96 192-192S554 64 448 64zM247.1 280h-32v32c0 13.2-10.78 24-23.98 24c-13.2 0-24.02-10.8-24.02-24v-32L136 279.1C122.8 279.1 111.1 269.2 111.1 256c0-13.2 10.85-24.01 24.05-24.01L167.1 232v-32c0-13.2 10.82-24 24.02-24c13.2 0 23.98 10.8 23.98 24v32h32c13.2 0 24.02 10.8 24.02 24C271.1 269.2 261.2 280 247.1 280zM431.1 344c-22.12 0-39.1-17.87-39.1-39.1s17.87-40 39.1-40s39.1 17.88 39.1 40S454.1 344 431.1 344zM495.1 248c-22.12 0-39.1-17.87-39.1-39.1s17.87-40 39.1-40c22.12 0 39.1 17.88 39.1 40S518.1 248 495.1 248z"/></svg> Games</a>
|
|
||||||
<div class="divider"></div>
|
|
||||||
<a href="/bookmarklets" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 384 512"><path d="M384 48V512l-192-112L0 512V48C0 21.5 21.5 0 48 0h288C362.5 0 384 21.5 384 48z"/></svg> Bookmarklets</a>
|
|
||||||
<a href="/settings" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon" viewBox="0 0 512 512"><path d="M495.9 166.6C499.2 175.2 496.4 184.9 489.6 191.2L446.3 230.6C447.4 238.9 448 247.4 448 256C448 264.6 447.4 273.1 446.3 281.4L489.6 320.8C496.4 327.1 499.2 336.8 495.9 345.4C491.5 357.3 486.2 368.8 480.2 379.7L475.5 387.8C468.9 398.8 461.5 409.2 453.4 419.1C447.4 426.2 437.7 428.7 428.9 425.9L373.2 408.1C359.8 418.4 344.1 427 329.2 433.6L316.7 490.7C314.7 499.7 307.7 506.1 298.5 508.5C284.7 510.8 270.5 512 255.1 512C241.5 512 227.3 510.8 213.5 508.5C204.3 506.1 197.3 499.7 195.3 490.7L182.8 433.6C167 427 152.2 418.4 138.8 408.1L83.14 425.9C74.3 428.7 64.55 426.2 58.63 419.1C50.52 409.2 43.12 398.8 36.52 387.8L31.84 379.7C25.77 368.8 20.49 357.3 16.06 345.4C12.82 336.8 15.55 327.1 22.41 320.8L65.67 281.4C64.57 273.1 64 264.6 64 256C64 247.4 64.57 238.9 65.67 230.6L22.41 191.2C15.55 184.9 12.82 175.3 16.06 166.6C20.49 154.7 25.78 143.2 31.84 132.3L36.51 124.2C43.12 113.2 50.52 102.8 58.63 92.95C64.55 85.8 74.3 83.32 83.14 86.14L138.8 103.9C152.2 93.56 167 84.96 182.8 78.43L195.3 21.33C197.3 12.25 204.3 5.04 213.5 3.51C227.3 1.201 241.5 0 256 0C270.5 0 284.7 1.201 298.5 3.51C307.7 5.04 314.7 12.25 316.7 21.33L329.2 78.43C344.1 84.96 359.8 93.56 373.2 103.9L428.9 86.14C437.7 83.32 447.4 85.8 453.4 92.95C461.5 102.8 468.9 113.2 475.5 124.2L480.2 132.3C486.2 143.2 491.5 154.7 495.9 166.6V166.6zM256 336C300.2 336 336 300.2 336 255.1C336 211.8 300.2 175.1 256 175.1C211.8 175.1 176 211.8 176 255.1C176 300.2 211.8 336 256 336z"/></svg> Settings</a>
|
|
||||||
<div class="divider"></div>
|
|
||||||
<a href="./credits" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 448 512"><path d="M256 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H256C273.7 32 288 46.33 288 64C288 81.67 273.7 96 256 96zM256 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H256C273.7 288 288 302.3 288 320C288 337.7 273.7 352 256 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z"/></svg> Credits</a>
|
|
||||||
<a href="./docs.html" class="mobile-nav-header-item"><svg xmlns="http://www.w3.org/2000/svg" class="header-icon-sm" viewBox="0 0 448 512"><path d="M448 336v-288C448 21.49 426.5 0 400 0H352v191.1c0 13.41-15.52 20.88-25.1 12.49L272 160L217.1 204.5C207.5 212.8 192 205.4 192 191.1V0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-32c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448z"/></svg> Docs</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="main-content">
|
|
||||||
<h1 id="title-text" class="title-text fade-in">Web Proxies</h1>
|
|
||||||
<div class="proxy-list">
|
|
||||||
|
|
||||||
<div class="proxy-container">
|
|
||||||
<a onclick="uv()" class="proxy-list-item">Ultraviolet</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="proxy-container">
|
|
||||||
<a onclick="rh()" class="proxy-list-item">Rammerhead</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="mid-content">
|
|
||||||
<div id="card" class="card">
|
|
||||||
<p class="middle-content">Each Proxy has pros and cons, but overall Rammerhead is more powerful, but Ultraviolet is a great fallback that does not make use of session IDs.</p>
|
|
||||||
</div>
|
|
||||||
<div class="footer" id="footer">
|
|
||||||
<div class="footerflex">
|
|
||||||
<div class="footerbrand">
|
|
||||||
<h3><a href="/">Alu's Unblocker</a></h3>
|
|
||||||
<p>Made with ❤️ by <a href="#">wearr</a></p>
|
|
||||||
</div>
|
|
||||||
<div class="footerlist">
|
|
||||||
<h3>Services</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Ultraviolet">Ultraviolet</a></li>
|
|
||||||
<li><a target="_blank" href="https://github.com/binary-person/rammerhead">Rammerhead</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="footerlist">
|
|
||||||
<h3>Socials</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Holy-Unblocker">GitHub</a></li>
|
|
||||||
<li><a href="/terms.html">Instagram</a></li>
|
|
||||||
<div class="tooltip">
|
|
||||||
<span class="tooltiptext" id="myTooltip">Copy to clipboard</span>
|
|
||||||
<li><a onclick="copyDiscord();" onmouseout="outFunc();" class="discord-text">Discord</a></li>
|
|
||||||
</div>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="copyright">Alu's Unblocker © 2022</p>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,55 +0,0 @@
|
||||||
// AlusUB Themes by wearr
|
|
||||||
// pls don't copy my work ❤️
|
|
||||||
|
|
||||||
//Init
|
|
||||||
window.onload = (event) => {
|
|
||||||
let themeInit = localStorage.getItem("themeInit");
|
|
||||||
if (!themeInit) {
|
|
||||||
// Theme Not Init!
|
|
||||||
// Initializing Now!
|
|
||||||
localStorage.setItem('themeInit', "1") // Theme Init Success!
|
|
||||||
localStorage.setItem("siteTheme", "Dark")
|
|
||||||
} else {
|
|
||||||
console.log('ThemeInit Already Initialized!')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//Theme Selector
|
|
||||||
|
|
||||||
function changeTheme() {
|
|
||||||
let theme = document.getElementById('themes').value
|
|
||||||
localStorage.setItem('siteTheme', document.getElementById('themes').value)
|
|
||||||
if (localStorage.getItem('siteTheme') == "Dark") {
|
|
||||||
console.log('Dark theme selected!')
|
|
||||||
}
|
|
||||||
if (localStorage.getItem('siteTheme') == "Light") {
|
|
||||||
console.log('Light!')
|
|
||||||
}
|
|
||||||
document.getElementById('themes').value = ""
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// AAAAAAAAAAAAAAAAAAAAAAAAa
|
|
||||||
function lightTheme() {
|
|
||||||
document.getElementById('body').style.backgroundColor = "#FFFFFF"
|
|
||||||
document.getElementById('body').style.transition = "350ms ease-in-out"
|
|
||||||
// index theme
|
|
||||||
document.getElementById('title-background').style.backgroundColor = "#FF0266"
|
|
||||||
document.getElementById('sidenav').style.backgroundColor = "#000000"
|
|
||||||
document.getElementById('card').style.backgroundColor = "#FF0266"
|
|
||||||
document.getElementById('gi-title').style.color = "rgb(51, 51, 51)"
|
|
||||||
document.getElementById('gi-card').style.backgroundColor = "#FF0266"
|
|
||||||
document.getElementById('title-text').style.color = "rgb(51, 51, 51)"
|
|
||||||
document.getElementById('subtitle-text').style.color = "rgb(71 71 71)"
|
|
||||||
document.getElementById('proxies-button').style.color = "rgb(71 71 71)"
|
|
||||||
document.getElementById('proxies-button').style.borderColor = "#FF0266"
|
|
||||||
|
|
||||||
document.getElementById('footer').style.backgroundImage = "url(/img/lightwaves.svg)"
|
|
||||||
setTimeout(() => {
|
|
||||||
document.getElementById('body').style.transition = ""
|
|
||||||
}, 400);
|
|
||||||
}
|
|
||||||
37
public/favicon.svg
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<svg height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
viewBox="0 0 512 512" xml:space="preserve">
|
||||||
|
<path style="fill:#7067a1;" d="M494.176,64.787c15.4,22.42,20.974,52.758,16.123,88.421c-4.751,34.914-19.365,74.181-42.346,113.946
|
||||||
|
c52.234,90.354,58.519,172.178,16.073,214.624c-18.729,18.729-45.127,27.981-76.537,27.981c-39.777,0-87.598-14.839-138.087-44.017
|
||||||
|
c-50.489,29.178-98.309,44.017-138.087,44.017c-31.411,0-57.796-9.252-76.525-27.981c-42.458-42.434-36.186-124.245,16.036-214.611
|
||||||
|
c-10.287-17.806-18.904-35.525-25.724-52.858c-0.262,0-0.511,0.012-0.773,0.012C19.889,214.321,0,194.444,0,169.992
|
||||||
|
c0-18.23,11.073-33.917,26.834-40.713c-0.037-31.884,9.514-58.282,27.956-76.724C97.224,10.096,179.036,16.368,269.402,68.59
|
||||||
|
c52.92-30.575,104.057-45.912,145.818-43.83c7.619-13.43,22.046-22.52,38.568-22.52c24.44,0,44.329,19.889,44.329,44.329
|
||||||
|
C498.116,53.066,496.695,59.226,494.176,64.787z M485.585,149.854c3.591-26.41,0.611-48.755-8.616-65.514
|
||||||
|
c-6.758,4.152-14.689,6.559-23.181,6.559c-23.455,0-42.695-18.318-44.217-41.386c-33.119-0.561-73.32,11.272-115.891,34.104
|
||||||
|
c30.4,20.051,59.741,44.142,87.436,71.836c27.695,27.695,51.773,57.035,71.811,87.423
|
||||||
|
C470.509,210.044,481.732,178.197,485.585,149.854z M473.178,46.569c0-10.686-8.704-19.39-19.39-19.39
|
||||||
|
c-10.686,0-19.39,8.704-19.39,19.39s8.704,19.39,19.39,19.39S473.178,57.256,473.178,46.569z M466.394,464.146
|
||||||
|
c31.884-31.897,26.273-98.421-13.467-172.689c-20.038,30.388-44.117,59.729-71.811,87.423
|
||||||
|
c-27.695,27.695-57.023,51.773-87.423,71.824C367.961,490.431,434.497,496.043,466.394,464.146z M438.887,267.166
|
||||||
|
c-20.35-32.745-45.688-64.367-75.403-94.082c-29.715-29.702-61.325-55.053-94.082-75.415
|
||||||
|
c-32.757,20.363-64.367,45.713-94.082,75.415c-29.702,29.715-55.053,61.325-75.415,94.082
|
||||||
|
c20.363,32.757,45.713,64.367,75.415,94.082c29.715,29.702,61.325,55.053,94.082,75.415c32.757-20.363,64.367-45.713,94.082-75.415
|
||||||
|
C393.199,331.533,418.537,299.911,438.887,267.166z M157.688,155.452c27.682-27.695,57.023-51.773,87.423-71.824
|
||||||
|
C170.831,43.901,104.307,38.29,72.422,70.186c-13.093,13.105-20.138,32.358-20.637,56.125c20.899,3.554,36.872,21.784,36.872,43.68
|
||||||
|
c0,15.337-7.818,28.867-19.677,36.835c4.738,11.834,10.375,23.891,16.884,36.062C105.915,212.488,129.994,183.147,157.688,155.452z
|
||||||
|
M245.112,450.704c-30.4-20.051-59.729-44.129-87.423-71.824c-27.695-27.695-51.773-57.023-71.824-87.423
|
||||||
|
c-39.728,74.268-45.339,140.805-13.442,172.689C104.307,496.043,170.831,490.431,245.112,450.704z M63.719,169.992
|
||||||
|
c0-10.686-8.691-19.39-19.39-19.39c-10.686,0-19.39,8.704-19.39,19.39c0,10.699,8.704,19.39,19.39,19.39
|
||||||
|
C55.028,189.382,63.719,180.691,63.719,169.992z"/>
|
||||||
|
<path style="fill:#9e8feb;" d="M453.788,27.179c10.686,0,19.39,8.704,19.39,19.39s-8.704,19.39-19.39,19.39
|
||||||
|
c-10.686,0-19.39-8.704-19.39-19.39S443.101,27.179,453.788,27.179z"/>
|
||||||
|
<path style="fill:#7067a1;" d="M269.402,201.253c36.348,0,65.913,29.565,65.913,65.913c0,36.336-29.565,65.913-65.913,65.913
|
||||||
|
c-36.336,0-65.901-29.577-65.901-65.913C203.501,230.818,233.066,201.253,269.402,201.253z M310.377,267.166
|
||||||
|
c0-22.595-18.38-40.975-40.975-40.975c-22.582,0-40.962,18.38-40.962,40.975s18.38,40.975,40.962,40.975
|
||||||
|
C291.997,308.141,310.377,289.761,310.377,267.166z"/>
|
||||||
|
<path style="fill:#fbb0ff;" d="M269.402,226.192c22.595,0,40.975,18.38,40.975,40.975s-18.38,40.975-40.975,40.975
|
||||||
|
c-22.582,0-40.962-18.38-40.962-40.975S246.82,226.192,269.402,226.192z"/>
|
||||||
|
<path style="fill:#9e8feb;" d="M44.329,150.602c10.699,0,19.39,8.704,19.39,19.39c0,10.699-8.691,19.39-19.39,19.39
|
||||||
|
c-10.686,0-19.39-8.691-19.39-19.39C24.939,159.306,33.643,150.602,44.329,150.602z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.6 KiB |
33
public/flash/instantiateFlash.js
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
const id = window.location.pathname.split("/").pop();
|
||||||
|
if (id && RufflePlayer) {
|
||||||
|
document.title = `Flash Game - ${id}`;
|
||||||
|
window.addEventListener("load", loadRuffle);
|
||||||
|
} else {
|
||||||
|
document.querySelector("#loader").classList.add("hidden");
|
||||||
|
document.querySelector("#error").classList.remove("hidden");
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadRuffle() {
|
||||||
|
const ruffle = RufflePlayer.newest().createPlayer();
|
||||||
|
ruffle.config = {
|
||||||
|
splashScreen: false,
|
||||||
|
unmuteOverlay: "hidden",
|
||||||
|
autoplay: "on",
|
||||||
|
contextMenu: "on",
|
||||||
|
showSwfDownload: false
|
||||||
|
};
|
||||||
|
ruffle.style.width = "100%";
|
||||||
|
ruffle.style.height = "100%";
|
||||||
|
const gameContainer = document.querySelector("#gameContainer");
|
||||||
|
if (gameContainer != null) {
|
||||||
|
gameContainer.appendChild(ruffle);
|
||||||
|
}
|
||||||
|
ruffle.load(`/games/flash/${id}.swf`).then(() => {
|
||||||
|
let loader = document.querySelector("#loader");
|
||||||
|
loader.classList.remove("loading");
|
||||||
|
loader.classList.add("hidden");
|
||||||
|
document.querySelector("#gameContainer").classList.remove("hidden");
|
||||||
|
});
|
||||||
|
// Stop the event listener, saves miniscule amount of memory
|
||||||
|
window.removeEventListener("load", loadRuffle);
|
||||||
|
}
|
||||||
73
public/game.css
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
.vertical {
|
||||||
|
height: 70vh !important;
|
||||||
|
width: 30% !important;
|
||||||
|
aspect-ratio: auto !important;
|
||||||
|
}
|
||||||
|
#main-content {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.game-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow: hidden;
|
||||||
|
background: var(--dropdown-background-color);
|
||||||
|
width: 80%;
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-bottom: 4rem;
|
||||||
|
border-radius: 15px;
|
||||||
|
}
|
||||||
|
#game-frame {
|
||||||
|
aspect-ratio: 16 / 8;
|
||||||
|
height: 80vh;
|
||||||
|
width: 1350px;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flash-frame {
|
||||||
|
width: 1024px !important;
|
||||||
|
height: 576px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.game-info {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1rem;
|
||||||
|
background-color: var(--background-highlight);
|
||||||
|
width: 100%;
|
||||||
|
padding: 1rem;
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
.game-info-top {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
}
|
||||||
|
.icn {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.game-info-left {
|
||||||
|
display: flex;
|
||||||
|
gap: 10px;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 48px;
|
||||||
|
}
|
||||||
|
.game-title {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.game-img {
|
||||||
|
width: 48px;
|
||||||
|
height: 48px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 3px solid var(--accent-color-brighter);
|
||||||
|
box-shadow: 0px 0px 20px 5px var(--accent-color-brighter);
|
||||||
|
}
|
||||||
|
|
||||||
|
.game-desc {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
1
public/games
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 3b028f45966cc75fc1fd73e92d78f7eb0d7cfcba
|
||||||
BIN
public/icons/canvas.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
public/icons/classlink.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/icons/classroom.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
public/icons/clever.jpg
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
public/icons/drive.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
public/icons/edgenuity.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
public/icons/google.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
public/icons/schoology.webp
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
public/icons/youtube.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
11
public/iframe.css
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
/* CSS for about:blank iframes */
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
iframe {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
3
public/img/checkmark.svg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check" viewBox="0 0 16 16">
|
||||||
|
<path fill="#fff" d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 283 B |
4
public/img/games/fullscreen.svg
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg stroke="#fff" fill="#fff" stroke-width="0" viewBox="0 0 256 256" height="1em" width="1em"
|
||||||
|
xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M220,48V88a12,12,0,0,1-24,0V60H168a12,12,0,0,1,0-24h40A12,12,0,0,1,220,48ZM88,196H60V168a12,12,0,0,0-24,0v40a12,12,0,0,0,12,12H88a12,12,0,0,0,0-24Zm120-40a12,12,0,0,0-12,12v28H168a12,12,0,0,0,0,24h40a12,12,0,0,0,12-12V168A12,12,0,0,0,208,156ZM88,36H48A12,12,0,0,0,36,48V88a12,12,0,0,0,24,0V60H88a12,12,0,0,0,0-24Z"></path>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 477 B |
3
public/img/games/pin-outline.svg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg version="1.2" baseProfile="tiny" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||||
|
<path fill="#fff" d="M21.436 7.586l-3.998-4.02c-.752-.756-2.063-.764-2.83-.006-.196.196-.35.436-.418.629-.653 1.362-1.354 2.215-2.254 2.727l-.217.105c-.968.485-2.285.979-4.719.979-.266 0-.521.052-.766.152-.484.202-.879.595-1.082 1.084-.199.484-.199 1.041 0 1.525.104.249.25.471.435.651l3.235 3.235-3.822 5.353 5.352-3.822 3.227 3.227c.186.189.406.339.656.441.247.103.503.154.766.154s.519-.052.765-.154c.498-.205.883-.592 1.08-1.078.103-.242.155-.507.155-.768 0-2.436.494-3.752.978-4.721.496-.992 1.369-1.748 2.754-2.414.271-.104.51-.256.711-.457.772-.782.768-2.051-.008-2.822zm-5.248 4.801c-.819 1.643-1.188 3.37-1.195 5.604l-7.993-7.991c2.139 0 3.814-.335 5.396-1.084l.235-.105c1.399-.699 2.468-1.893 3.388-3.834l3.924 4.051c-1.863.893-3.056 1.96-3.755 3.359z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 892 B |
3
public/img/games/pin.svg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg version="1.2" baseProfile="tiny" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||||
|
<path fill="#fff" d="M16.729 4.271c-.389-.391-1.021-.393-1.414-.004-.104.104-.176.227-.225.355-.832 1.736-1.748 2.715-2.904 3.293-1.297.64-2.786 1.085-5.186 1.085-.13 0-.26.025-.382.076-.245.102-.439.297-.541.541-.101.244-.101.52 0 .764.051.123.124.234.217.326l3.243 3.243-4.537 6.05 6.05-4.537 3.242 3.242c.092.094.203.166.326.217.122.051.252.078.382.078s.26-.027.382-.078c.245-.102.44-.295.541-.541.051-.121.077-.252.077-.381 0-2.4.444-3.889 1.083-5.166.577-1.156 1.556-2.072 3.293-2.904.129-.049.251-.121.354-.225.389-.393.387-1.025-.004-1.414l-3.997-4.02z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 691 B |
5
public/img/nav/backwards.svg
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24"
|
||||||
|
xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill="#fff" fill-rule="evenodd" clip-rule="evenodd" d="M11.7071 4.29289C12.0976 4.68342 12.0976 5.31658 11.7071 5.70711L6.41421 11H20C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13H6.41421L11.7071 18.2929C12.0976 18.6834 12.0976 19.3166 11.7071 19.7071C11.3166 20.0976 10.6834 20.0976 10.2929 19.7071L3.29289 12.7071C3.10536 12.5196 3 12.2652 3 12C3 11.7348 3.10536 11.4804 3.29289 11.2929L10.2929 4.29289C10.6834 3.90237 11.3166 3.90237 11.7071 4.29289Z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 616 B |
3
public/img/nav/close.svg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
|
||||||
|
<path fill="#fc847c" d="M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 384 B |
5
public/img/nav/forwards.svg
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24"
|
||||||
|
xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill="#fff" fill-rule="evenodd" clip-rule="evenodd" d="M12.2929 4.29289C12.6834 3.90237 13.3166 3.90237 13.7071 4.29289L20.7071 11.2929C21.0976 11.6834 21.0976 12.3166 20.7071 12.7071L13.7071 19.7071C13.3166 20.0976 12.6834 20.0976 12.2929 19.7071C11.9024 19.3166 11.9024 18.6834 12.2929 18.2929L17.5858 13H4C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11H17.5858L12.2929 5.70711C11.9024 5.31658 11.9024 4.68342 12.2929 4.29289Z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 587 B |
3
public/img/nav/reload.svg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="#fff" d="M463.5 224l8.5 0c13.3 0 24-10.7 24-24l0-128c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L413.4 96.6c-87.6-86.5-228.7-86.2-315.8 1c-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L327 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8l119.5 0z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 464 B |
15
public/img/nav/share.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg fill="#fff" height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
viewBox="0 0 458.624 458.624" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<path d="M339.588,314.529c-14.215,0-27.456,4.133-38.621,11.239l-112.682-78.67c1.809-6.315,2.798-12.976,2.798-19.871
|
||||||
|
c0-6.896-0.989-13.557-2.798-19.871l109.64-76.547c11.764,8.356,26.133,13.286,41.662,13.286c39.79,0,72.047-32.257,72.047-72.047
|
||||||
|
C411.634,32.258,379.378,0,339.588,0c-39.79,0-72.047,32.257-72.047,72.047c0,5.255,0.578,10.373,1.646,15.308l-112.424,78.491
|
||||||
|
c-10.974-6.759-23.892-10.666-37.727-10.666c-39.79,0-72.047,32.257-72.047,72.047s32.256,72.047,72.047,72.047
|
||||||
|
c13.834,0,26.753-3.907,37.727-10.666l113.292,79.097c-1.629,6.017-2.514,12.34-2.514,18.872c0,39.79,32.257,72.047,72.047,72.047
|
||||||
|
c39.79,0,72.047-32.257,72.047-72.047C411.635,346.787,379.378,314.529,339.588,314.529z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |