207 lines
6.1 KiB
HTML
207 lines
6.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap">
|
|
<title>Helios Arcade</title>
|
|
<style>
|
|
/* --- Grundlegendes Styling & Reset --- */
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
body {
|
|
background-color: #1e1e1e; /* Sehr dunkles Grau, fast Schwarz */
|
|
color: #ffffff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
/* --- Header Bereich --- */
|
|
.status {
|
|
color: #0ea5e9; /* Das Blau vom "ONLINE" Status */
|
|
font-size: 0.8rem;
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
margin-bottom: 20px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
margin-bottom: 10px;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
p.subtitle {
|
|
color: #888;
|
|
max-width: 600px;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* --- Terminal Block --- */
|
|
.terminal-container {
|
|
background-color: #0a0a0a;
|
|
border: 1px solid #333;
|
|
border-radius: 8px;
|
|
padding: 15px 20px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
width: 100%;
|
|
max-width: 700px;
|
|
margin-bottom: 50px;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.terminal-text {
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.prompt {
|
|
color: #22c55e; /* Terminal Grün */
|
|
}
|
|
|
|
/* --- Grid für die Spiele --- */
|
|
.games-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 20px;
|
|
width: 100%;
|
|
max-width: 900px;
|
|
}
|
|
|
|
/* --- Spiel Karte (Card Style) --- */
|
|
.game-card {
|
|
background-color: #1e1e1e;
|
|
border: 1px solid #333;
|
|
border-radius: 12px;
|
|
padding: 25px;
|
|
text-decoration: none;
|
|
color: white;
|
|
transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.game-card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: #555;
|
|
background-color: #252525;
|
|
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
/* --- Icons für die Spiele --- */
|
|
.icon-box {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 30px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Individuelle Farben für die Spiele */
|
|
.star-wars .icon-box { background: linear-gradient(135deg, #00c6ff, #0072ff); }
|
|
.football .icon-box { background: linear-gradient(135deg, #11998e, #38ef7d); }
|
|
.chess .icon-box { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
|
|
.future .icon-box { background: linear-gradient(135deg, #434343, #000000); border: 1px dashed #666; }
|
|
|
|
.card-content h3 {
|
|
margin-bottom: 5px;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.card-content span {
|
|
font-size: 0.9rem;
|
|
color: #888;
|
|
}
|
|
|
|
/* --- Zurück Button --- */
|
|
.back-link {
|
|
margin-top: 50px;
|
|
color: #666;
|
|
text-decoration: none;
|
|
font-size: 0.9rem;
|
|
transition: color 0.2s;
|
|
}
|
|
.back-link:hover {
|
|
color: white;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="status">Status: Arcade Mode</div>
|
|
|
|
<h1>HELIOS ARCADE</h1>
|
|
|
|
<p class="subtitle">
|
|
Willkommen in der Sammlung. Wähle eine Simulation, um zu starten.
|
|
</p>
|
|
|
|
<div class="terminal-container">
|
|
<span class="path">[</span><span class="prompt">gast@helios arcade</span> <span class="path">~]$</span>
|
|
<span class="terminal-text">./list-games.sh --all</span>
|
|
</div>
|
|
|
|
<div class="games-grid">
|
|
|
|
<a href="starwars.html" class="game-card star-wars">
|
|
<div class="icon-box"><i class="fa-solid fa-jedi"></i></div> <div class="card-content">
|
|
<h3>Trench Run</h3>
|
|
<span>Star Wars Simulation</span>
|
|
</div>
|
|
</a>
|
|
|
|
<a href="fussball.html" class="game-card football">
|
|
<div class="icon-box"><i class="fa-solid fa-futbol"></i></div>
|
|
<div class="card-content">
|
|
<h3>Penalty Shootout</h3>
|
|
<span>Fussball Arcade</span>
|
|
</div>
|
|
</a>
|
|
|
|
<a href="schach.html" class="game-card chess">
|
|
<div class="icon-box"><i class="fa-solid fa-chess"></i></div>
|
|
<div class="card-content">
|
|
<h3>Meister Schach</h3>
|
|
<span>Strategie & Logik</span>
|
|
</div>
|
|
</a>
|
|
|
|
<a href="barcafinal.html" class="game-card chess">
|
|
<div class="icon-box"><i class="fa-solid fa-futbol"></i></div>
|
|
<div class="card-content">
|
|
<h3>Barcelona Quiz</h3>
|
|
<span>Quiz & Rätsel</span>
|
|
</div>
|
|
</a>
|
|
|
|
<div class="game-card future" style="cursor: default; opacity: 0.7;">
|
|
<div class="icon-box">?</div>
|
|
<div class="card-content">
|
|
<h3>Coming Soon</h3>
|
|
<span>In Entwicklung...</span>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<a href="../index.html" class="back-link">← Zurück zum Dashboard</a>
|
|
|
|
</body>
|
|
</html> |