Candle/404.html

50 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2023-05-26 16:39:10 +02:00
<html>
<head>
<title>404 - Page Or Resource Not Found</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 24pt;
background-color: #000;
color: #000;
}
.container {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
padding: 40px auto;
text-align: center;
width: 100%;
}
h1 {
color: #a12727;
margin-bottom: 20px;
}
a {
color:white;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.links {
margin-bottom: 60px;
}
.links a {
margin: 0px 15px;
}
</style>
</head>
<body>
<div class="container">
<h1>404 - Page Or Resource Not Found</h1>
<div class="links">
<a href="/">Bring me back home</a>
</div>
</div>
</body>
</html>