Delete index.html

This commit is contained in:
NOCanoa 2024-08-31 16:25:05 +01:00 committed by GitHub
parent 4a081c1622
commit f9ef8711c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,122 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zen Browser Update Server</title>
<link rel="shortcut icon" href="favicon.svg" type="image/svg">
<style>
@import url("https://fonts.bunny.net/css?family=Share+Tech+Mono|Montserrat:700");
* {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
color: inherit;
}
body {
background-image: linear-gradient(120deg, hsl(0, 0%, 43%) 0%, #000000 100%);
height: 100vh;
}
h1 {
font-size: 45vw;
text-align: center;
position: fixed;
width: 100vw;
z-index: 1;
color: #ffffff26;
text-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
top: 50%;
transform: translateY(-50%);
font-family: "Montserrat", monospace;
}
div {
background: rgba(0, 0, 0, 0.303);
width: 45vw;
position: relative;
top: 50%;
transform: translateY(-50%);
margin: 0 auto;
padding: 30px 30px 10px;
box-shadow: 0 0 150px -20px rgba(0, 0, 0, 0.5);
z-index: 3;
}
P {
font-family: "Share Tech Mono", monospace;
color: #f5f5f5;
margin: 0 0 20px;
font-size: 17px;
line-height: 1.2;
}
span {
color: #f0c674;
}
i {
color: #8abeb7;
}
div a {
text-decoration: none;
}
b {
color: #81a2be;
}
@keyframes slide {
from {
right: -100px;
transform: rotate(360deg);
opacity: 0;
}
to {
right: 15px;
transform: rotate(0deg);
opacity: 1;
}
}
</style>
</head>
<body>
<h1>ZEN</h1>
<div class="lol">
<p>> <span>ERROR CODE</span>: "<i>Noting here</i>"</p>
<p>> <span>ERROR DESCRIPTION</span>: "<i>This is the Zen Browsers update server.</i>"</p>
<p>> <span>ERROR POSSIBLY CAUSED BY</span>: [<b>you whent to the wrong url </b>...]</p>
<p>> <span>SOLUTION</span>: [<a href="https://zen-browser.app/">Zen Home Page</a>,
<a href="https://docs.zen-browser.app/">Docs Page</a>,
<a href="https://discord.gg/nnShMQzR4b">Discord</a>,
<a href="https://www.patreon.com/zen_browser">Patreon</a>,
<a href="https://ko-fi.com/zen_browser">Ko-fi</a>...]</p>
<p>> <span>HAVE A NICE DAY :-)</span></p>
</div>
<script>
var str = document.getElementsByClassName('lol')[0].innerHTML.toString();
var i = 0;
document.getElementsByClassName('lol')[0].innerHTML = "";
setTimeout(function() {
var se = setInterval(function() {
i++;
document.getElementsByClassName('lol')[0].innerHTML = str.slice(0, i) + "|";
if (i == str.length) {
clearInterval(se);
document.getElementsByClassName('lol')[0].innerHTML = str;
}
}, 8);
},0);
</script>
</body>
</html>