-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
21 lines (21 loc) · 992 Bytes
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Status" content="302 Found">
<title>Redirecting...</title>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 150%; text-align: center; margin: 25vh auto; background-color: #932524; color: white;}
.loader { content: ""; width: 5rem; height: 5rem; border-radius: 50%; margin: auto; box-sizing: border-box; border-left: 0.5rem solid white; border-top: 0.5rem solid white; animation: rotate 1s linear infinite; }
@keyframes rotate { 0% { transform: rotate(0deg) } 100% { transform: rotate(360deg) } }
p { margin-top: 2.5rem }
</style>
</head>
<body>
<div class="loader"></div>
<p>Redirecting...</p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.1.0/papaparse.js"></script>
<script src="config.js"></script>
<script src="script.js"></script>
</body>
</html>