nfc-web/web/nfc-theme/templates/404.html

30 lines
726 B
HTML
Raw Normal View History

2023-04-30 14:08:32 +03:00
<!DOCTYPE html>
<html lang="english">
<head>
<title>404</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/theme/local.css" rel="stylesheet">
<style>
body {
color: white;
2023-05-22 12:20:25 +03:00
background-color: black;
2023-04-30 14:08:32 +03:00
display: table;
height: 100vh;
max-width: 100%;
overflow: hidden;
margin: 0;
}
div {
display: table-cell;
height: 100%;
vertical-align: middle;
}
</style>
</head>
<body id="index">
<div id="404">
2023-05-22 12:20:25 +03:00
<center>Numinous 404</center>
2023-04-30 14:08:32 +03:00
</div>
</body>
</html>