63 lines
1.2 KiB
Twig
63 lines
1.2 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover"/>
|
|
<title>Not Found</title>
|
|
<style type="text/css">
|
|
* {
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, 'Liberation Sans', Helvetica, Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
html {
|
|
block-size: 100%;
|
|
--text: #000000;
|
|
--background: #ffffff;
|
|
}
|
|
body {
|
|
block-size: 100%;
|
|
background: var(--background);
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
--text: #eee;
|
|
--background: #333333;
|
|
}
|
|
}
|
|
.image {
|
|
width: 220px;
|
|
height: 220px;
|
|
display: block;
|
|
background: url("https://4in1.ws/img/eagle.jpg") no-repeat center center;
|
|
background-size: cover;
|
|
border-radius: 50%;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
.wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
block-size: 100%;
|
|
}
|
|
.title {
|
|
margin-top: 20px;
|
|
font-size: 20px;
|
|
color: var(--text);
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<a href="/" class="image"></a>
|
|
<h1 id="title" class="title">Page not found</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|