Revert "update changes from https://git.crafterpika.cc/kittentm/splatnet"
This reverts commit d95fd63a48. Not sure what happened here to be honest.
This commit is contained in:
parent
d95fd63a48
commit
9f5b6d7b22
254 changed files with 22837 additions and 0 deletions
87
404.html
Normal file
87
404.html
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
||||
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="stylesheet" href="/styles.css" />
|
||||
|
||||
<style>
|
||||
.notfound {
|
||||
margin-top: 40px;
|
||||
background: rgba(0, 0, 0, 0.85);
|
||||
border-radius: 18px;
|
||||
padding: 32px 40px;
|
||||
text-align: center;
|
||||
max-width: 600px;
|
||||
}
|
||||
|
||||
.notfound h1 {
|
||||
font-family: "Splatoon1";
|
||||
font-size: 96px;
|
||||
margin: 0;
|
||||
color: #ff4fd8;
|
||||
letter-spacing: 6px;
|
||||
}
|
||||
|
||||
.notfound h2 {
|
||||
font-family: "Splatoon1";
|
||||
font-size: 32px;
|
||||
margin: 8px 0 16px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.notfound p {
|
||||
font-family: "Regular";
|
||||
font-size: 18px;
|
||||
color: #ddd;
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
.notfound a {
|
||||
display: inline-block;
|
||||
font-family: "Splatoon1";
|
||||
font-size: 20px;
|
||||
padding: 12px 28px;
|
||||
background: #ff4fd8;
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
border-radius: 999px;
|
||||
transition: transform 0.15s ease, background 0.15s ease;
|
||||
}
|
||||
|
||||
.notfound a:hover {
|
||||
background: #ff7ae6;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
body {
|
||||
background-image: url("/assets/friendlist.png");
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="header"></div>
|
||||
|
||||
<div class="content">
|
||||
<div class="notfound">
|
||||
<h1>404</h1>
|
||||
<h2>Booyah…?</h2>
|
||||
<p>
|
||||
This page got splatted.<br />
|
||||
</p>
|
||||
|
||||
<a href="/">Return to somewhere safe</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
fetch("/header.html")
|
||||
.then(res => res.text())
|
||||
.then(html => {
|
||||
document.getElementById("header").innerHTML = html;
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue