mirror of
https://github.com/ManfredAabye/oswebinterface.git
synced 2026-08-14 00:57:50 +00:00
77 lines
2.0 KiB
HTML
77 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>404 - Page not found</title>
|
|
|
|
<!-- W3.CSS -->
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
|
|
<!-- Font Awesome 4 (oder 5/6, je nach Bedarf) -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
<style>
|
|
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
background: #050b1a;
|
|
color: #fff;
|
|
font-family: "Segoe UI", Arial, sans-serif;
|
|
}
|
|
.bg-grid {
|
|
background-image: linear-gradient(#1b2740 1px, transparent 1px),
|
|
linear-gradient(90deg, #1b2740 1px, transparent 1px);
|
|
background-size: 40px 40px;
|
|
}
|
|
.holo-text {
|
|
text-shadow: 0 0 10px #6cf, 0 0 20px #6cf;
|
|
letter-spacing: 4px;
|
|
}
|
|
.port-text {
|
|
font-size: 14px;
|
|
color: #aaa;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="w3-display-container w3-center bg-grid" style="height:100%;">
|
|
<div class="w3-display-middle">
|
|
|
|
<!-- Logo / Titelzeile -->
|
|
<div class="w3-margin-bottom">
|
|
<i class="fa fa-cube w3-text-green" style="font-size:48px;"></i>
|
|
<span class="w3-xlarge w3-margin-left">OpenSimulator</span>
|
|
</div>
|
|
|
|
<!-- 404 Code -->
|
|
<div class="holo-text" style="font-size:80px; font-weight:bold;">
|
|
404
|
|
</div>
|
|
|
|
<!-- Text darunter -->
|
|
<div class="w3-large w3-margin-top">
|
|
OpenSimulator not found
|
|
</div>
|
|
|
|
<!-- Icon-Leiste (Teleport / Server etc.) -->
|
|
<div class="w3-margin-top">
|
|
<i class="fa fa-server w3-xlarge w3-margin-right"></i>
|
|
<i class="fa fa-television w3-xlarge w3-margin-right"></i>
|
|
<i class="fa fa-location-arrow w3-xlarge"></i>
|
|
</div>
|
|
|
|
<!-- Optionaler Button -->
|
|
<div class="w3-margin-top">
|
|
<a href="/" class="w3-button w3-border w3-round w3-hover-blue">
|
|
<i class="fa fa-home w3-margin-right"></i>
|
|
Go to homepage
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|