_caesarGaming/index.html

194 lines
4.8 KiB
HTML
Raw Permalink Normal View History

2025-10-05 22:17:40 +02:00
<!DOCTYPE html>
<html lang="en">
2025-10-05 23:02:42 +02:00
2025-10-05 22:17:40 +02:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Caesar Gaming</title>
2025-10-05 22:49:59 +02:00
2025-10-05 23:02:42 +02:00
<link rel="icon" type="image/png" href="img/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="img/favicon.svg" />
<link rel="shortcut icon" href="img/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png" />
<link rel="manifest" href="img/site.webmanifest" />
2025-10-05 23:12:39 +02:00
<link rel="preload" href="img/favicon-96x96.png" as="image" />
2025-10-05 22:17:40 +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;
2025-10-05 23:02:42 +02:00
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
2025-10-05 22:17:40 +02:00
animation: fadeInDown 1s ease-out;
2025-10-05 23:12:39 +02:00
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
.gamepad-icon {
width: 64px;
height: 64px;
animation: float 3s ease-in-out infinite;
border-radius: 50%;
}
@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
2025-10-05 22:17:40 +02:00
}
.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;
2025-10-05 23:12:39 +02:00
display: block;
2025-10-05 22:17:40 +02:00
}
.link-card:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-5px);
2025-10-05 23:02:42 +02:00
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
2025-10-05 22:17:40 +02:00
}
.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);
}
2025-10-05 23:02:42 +02:00
2025-10-05 22:17:40 +02:00
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
2025-10-05 23:02:42 +02:00
from {
opacity: 0;
}
to {
opacity: 1;
}
2025-10-05 22:17:40 +02:00
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
2025-10-05 23:02:42 +02:00
2025-10-05 22:17:40 +02:00
to {
opacity: 1;
transform: translateY(0);
}
}
.footer {
margin-top: 3rem;
opacity: 0.7;
font-size: 0.9rem;
}
</style>
</head>
2025-10-05 23:02:42 +02:00
2025-10-05 22:17:40 +02:00
<body>
<div class="container">
2025-10-05 23:12:39 +02:00
<h1>
<img src="img/favicon-96x96.png" alt="Gamepad" class="gamepad-icon">
Caesar Gaming
🎮
</h1>
2025-10-05 22:17:40 +02:00
<p class="tagline">Your Gaming Universe Awaits</p>
2025-10-05 23:02:42 +02:00
2025-10-05 22:17:40 +02:00
<div class="links">
2025-10-05 23:12:39 +02:00
<a href="https://forge.caesargaming.org" class="link-card">
2025-10-05 22:17:40 +02:00
<h3>🔧 Git Server</h3>
2025-10-05 23:12:39 +02:00
<p>Forgejo Instance</p>
2025-10-05 22:17:40 +02:00
</a>
2025-10-05 23:02:42 +02:00
2025-10-05 23:12:39 +02:00
<a href="https://tt.caesargaming.org" class="link-card">
<h3>🎯 Triple Triad</h3>
<p>Play the Card Game!</p>
</a>
2025-10-05 23:02:42 +02:00
2025-10-05 22:17:40 +02:00
<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>
2025-10-05 23:02:42 +02:00
2025-10-05 22:17:40 +02:00
</html>