Dont even remember what was done :D

This commit is contained in:
2021-01-30 20:18:24 +02:00
parent bed31b29ff
commit 93da432369
35 changed files with 958 additions and 159 deletions

33
client/static/ded.html Normal file
View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlobbyStrike - U Ded</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
main {
background: #000000;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
div {
display: block;
color: #850000;
font-size: 8rem;
}
</style>
</head>
<body>
<main>
<div>U DED...<br /><a href="/">RESPAWN</a></div>
</main>
</body>
</html>