Files
lukeogburn.com/404.shtml
2020-11-26 02:34:48 +01:00

54 lines
845 B
Plaintext
Executable File

<style>
*{
transition: all 0.6s;
}
html {
height: 100%;
}
body{
font-family: 'Lato', sans-serif;
color: #888;
margin: 0;
}
#main{
display: table;
width: 100%;
height: 100vh;
text-align: center;
}
.fof{
display: table-cell;
vertical-align: middle;
position: relative;
top: -18%;
}
.fof h1{
font-size: 5em;
display: inline-block;
margin-bottom: 1%;
padding-right: 12px;
animation: type .5s alternate infinite;
}
h3{
margin-top: 0px;
}
a{
color: #889;
}
@keyframes type{
from{box-shadow: inset -3px 0px 0px #888;}
to{box-shadow: inset -3px 0px 0px transparent;}
}
</style>
<div id="main">
<div class="fof">
<h1>Error 404</h1>
<h3>(Page Not Found)</h3>
<h3>[<a href="http://www.theoakbaron.com/">Go Back</a>]</h3>
</div>
</div>