ZapMachine/tpl/404.tpl

29 lines
583 B
Smarty
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>404 - ZapMachine</title>
<link rel="stylesheet" media="screen" href="css/style.css">
<style>
.error-404 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50vw;
height: 50vh;
display: flex;
align-items: center;
justify-content: center;
font-family: Georgia, serif;
font-size: clamp(2rem, 8vw, 6rem);
color: #555;
border: 0px;
background: #fafafa;
}
</style>
</head>
<body>
<div class="error-404">error 404</div>
</body>
</html>