Files
landingpage/index.html
2026-01-16 17:20:36 +00:00

151 lines
5.1 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Helios Server</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="icon" type="image/x-icon" href="https://img.icons8.com/ios-filled/50/1793d1/sun--v1.png">
<style>
/* --- Arch Style Basis --- */
:root {
--bg-color: #121212;
--container-bg: #1e1e1e;
--text-color: #e6e6e6;
--accent-color: #1793d1; /* Arch Blue */
--hover-bg: #2a2a2a;
--font-stack: 'Inter', system-ui, -apple-system, sans-serif;
--mono-font: 'Fira Code', 'Roboto Mono', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: var(--font-stack);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
position: relative; /* Wichtig für absolute Positionierung der Icons */
}
/* --- Navigation oben rechts --- */
.top-nav {
position: absolute;
top: 20px;
right: 20px;
display: flex;
gap: 15px;
}
.nav-link {
color: var(--text-color);
font-size: 1.5rem;
padding: 10px;
border-radius: 50%;
transition: all 0.3s ease;
position: relative;
display: flex; /* Zum Zentrieren des Icons */
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.05);
text-decoration: none;
}
.nav-link:hover {
background-color: var(--accent-color);
color: #fff;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(23, 147, 209, 0.4);
}
/* --- Tooltip (Der Text beim Drüberfahren) --- */
.nav-link::after {
content: attr(data-tooltip); /* Holt Text aus HTML attribute */
position: absolute;
bottom: -35px;
left: 50%;
transform: translateX(-50%);
background-color: #333;
color: #fff;
padding: 5px 10px;
border-radius: 4px;
font-size: 0.8rem;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s;
white-space: nowrap;
pointer-events: none;
}
.nav-link:hover::after {
opacity: 1;
visibility: visible;
}
/* --- Haupt-Container (wie vorher) --- */
.container {
background-color: var(--container-bg);
padding: 3rem;
border-radius: 8px;
box-shadow: 0 10px 25px rgba(0,0,0,0.5);
max-width: 600px;
width: 90%;
border-left: 3px solid var(--accent-color);
}
h1 { font-weight: 300; font-size: 2.5rem; margin-bottom: 0.5rem; }
.subtitle { color: var(--accent-color); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 1.5rem; display: block; }
p { line-height: 1.6; color: #b0b0b0; margin-bottom: 2rem; }
.terminal {
background-color: #000;
padding: 15px;
border-radius: 4px;
font-family: var(--mono-font);
font-size: 0.9rem;
border: 1px solid #333;
}
.prompt { color: #27a657; }
.path { color: var(--accent-color); }
.cursor { display: inline-block; width: 8px; height: 15px; background-color: var(--text-color); margin-left: 5px; animation: blink 1s infinite; vertical-align: middle; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
</style>
</head>
<body>
<div class="top-nav">
<a href="https://git.helios.giize.com" class="nav-link" data-tooltip="Gitea" target="_blank">
<i class="fa-brands fa-git-alt"></i>
</a>
<a href="https://docker.helios.giize.com" class="nav-link" data-tooltip="Docker" target="_blank">
<i class="fa-brands fa-docker"></i>
</a>
<a href="https://admin.helios.giize.com" class="nav-link" data-tooltip="Server" target="_blank">
<i class="fa-solid fa-server"></i>
</a>
</div>
<div class="container">
<span class="subtitle">Status: 204 No Content</span>
<h1>Helios</h1>
<p>
Große Dinge haben kleine Anfänge. Diese Präsenz befindet sich derzeit im Aufbau.
Schau später wieder vorbei, um Projekte rund um Entwicklung, Datenanalyse und mehr zu sehen.
</p>
<div class="terminal">
<span class="prompt">[admin@helios-server</span> <span class="path">~]$</span>
<span class="command">./deploy-projects.sh --soon </span><span class="cursor"></span>
</div>
</div>
</body>
</html>