4in1_ws_web/resources/skins/error/notfound_ic.twig
2025-05-18 16:32:19 +03:00

65 lines
1.3 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: 500px;
height: 144px;
max-width: 100%;
display: block;
background: url("/images/simurgh.jpg?1") no-repeat center center;
background-size: cover;
text-decoration: none;
cursor: pointer;
}
.wrap {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
block-size: 100%;
}
.title {
margin-top: 36px;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 3px;
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>