-
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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://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>
|
<title>Helios Arcade</title>
|
||||||
<style>
|
<style>
|
||||||
/* --- Grundlegendes Styling & Reset --- */
|
/* --- Grundlegendes Styling & Reset --- */
|
||||||
@@ -11,11 +12,11 @@
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
font-family: 'JetBrains Mono', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #121212; /* Sehr dunkles Grau, fast Schwarz */
|
background-color: #1e1e1e; /* Sehr dunkles Grau, fast Schwarz */
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -55,7 +56,7 @@
|
|||||||
border: 1px solid #333;
|
border: 1px solid #333;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 15px 20px;
|
padding: 15px 20px;
|
||||||
font-family: 'Courier New', Courier, monospace;
|
font-family: 'JetBrains Mono', monospace;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 700px;
|
max-width: 700px;
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
@@ -70,21 +71,6 @@
|
|||||||
color: #22c55e; /* Terminal Grün */
|
color: #22c55e; /* Terminal Grün */
|
||||||
}
|
}
|
||||||
|
|
||||||
.cursor {
|
|
||||||
display: inline-block;
|
|
||||||
width: 8px;
|
|
||||||
height: 18px;
|
|
||||||
background-color: #ccc;
|
|
||||||
animation: blink 1s infinite;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes blink {
|
|
||||||
0%, 100% { opacity: 1; }
|
|
||||||
50% { opacity: 0; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* --- Grid für die Spiele --- */
|
/* --- Grid für die Spiele --- */
|
||||||
.games-grid {
|
.games-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
@@ -168,8 +154,8 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="terminal-container">
|
<div class="terminal-container">
|
||||||
<span class="prompt">[gast@helios arcade ~]$</span>
|
<span class="path">[</span><span class="prompt">gast@helios arcade</span> <span class="path">~]$</span>
|
||||||
<span class="terminal-text">./list-games.sh --all</span><span class="cursor"></span>
|
<span class="terminal-text">./list-games.sh --all</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="games-grid">
|
<div class="games-grid">
|
||||||
@@ -237,7 +237,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a href="/games/" class="app-card">
|
<a href="/games/index_games.html" class="app-card">
|
||||||
<div class="app-icon icon-games">🕹️</div>
|
<div class="app-icon icon-games">🕹️</div>
|
||||||
<div class="app-info">
|
<div class="app-info">
|
||||||
<h3>Arcade</h3>
|
<h3>Arcade</h3>
|
||||||
|
|||||||
Reference in New Issue
Block a user