58 lines
1.2 KiB
HTML
58 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8 />
|
|
<title>We're sorry, but something went wrong (500)</title>
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
}
|
|
|
|
html, body {
|
|
height: 90%;
|
|
}
|
|
|
|
.guru {
|
|
border: 5px solid red;
|
|
padding: 1em;
|
|
color: red;
|
|
text-align: center;
|
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
font-size: 18px;
|
|
line-height: 1.8em;
|
|
overflow: hidden;
|
|
margin: 1em 10px;
|
|
animation: guru 1.2s steps(1, end) infinite;
|
|
-webkit-animation: guru 1.2s steps(1, end) infinite;
|
|
}
|
|
|
|
@keyframes guru {
|
|
0% {
|
|
border: 5px solid transparent;
|
|
}
|
|
50% {
|
|
border: 5px solid red;
|
|
}
|
|
100% {
|
|
border: 5px solid transparent;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes guru {
|
|
0% {
|
|
border: 5px solid transparent;
|
|
}
|
|
50% {
|
|
border: 5px solid red;
|
|
}
|
|
100% {
|
|
border: 5px solid transparent;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onclick="location.href='/';">
|
|
<p class="guru">Software Failure. Press left mouse button to continue.<br>Guru Meditation #000003F3.DEADBEEF<p>
|
|
</body>
|
|
</html>
|