_caesarGaming/docs/index.md

155 lines
4 KiB
Markdown
Raw Normal View History

2025-10-05 18:42:25 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Caesar Gaming</title>
2025-10-05 21:46:30 +02:00
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
2025-10-05 18:42:25 +02:00
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.container {
text-align: center;
padding: 2rem;
max-width: 800px;
}
h1 {
font-size: 4rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
animation: fadeInDown 1s ease-out;
}
.tagline {
font-size: 1.5rem;
margin-bottom: 3rem;
opacity: 0.9;
animation: fadeIn 1.5s ease-out;
}
.links {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
animation: fadeInUp 2s ease-out;
}
.link-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 2rem 3rem;
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
cursor: pointer;
text-decoration: none;
color: white;
}
.link-card:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.link-card h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.link-card p {
opacity: 0.8;
font-size: 0.9rem;
}
.coming-soon {
opacity: 0.5;
cursor: not-allowed;
}
.coming-soon:hover {
transform: none;
background: rgba(255, 255, 255, 0.1);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.footer {
margin-top: 3rem;
opacity: 0.7;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="container">
<h1>🎮 Caesar Gaming</h1>
<p class="tagline">Your Gaming Universe Awaits</p>
<div class="links">
<a href="https://forge.caesargaming.org" class="link-card coming-soon">
<h3>🔧 Git Server</h3>
<p></p>
</a>
<div class="link-card coming-soon">
<h3>🎯 Game Servers</h3>
<p>Coming Soon</p>
</div>
<div class="link-card coming-soon">
<h3>💬 Community</h3>
<p>Coming Soon</p>
</div>
</div>
<div class="footer">
<p>© 2025 Caesar Gaming. All rights reserved.</p>
</div>
</div>
</body>
</html>