194 lines
No EOL
4.8 KiB
HTML
194 lines
No EOL
4.8 KiB
HTML
<!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>
|
|
|
|
<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" />
|
|
<link rel="preload" href="img/favicon-96x96.png" as="image" />
|
|
<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;
|
|
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);
|
|
}
|
|
}
|
|
|
|
.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;
|
|
display: block;
|
|
}
|
|
|
|
.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>
|
|
|
|
<img src="img/favicon-96x96.png" alt="Gamepad" class="gamepad-icon">
|
|
Caesar Gaming
|
|
🎮
|
|
</h1>
|
|
<p class="tagline">Your Gaming Universe Awaits</p>
|
|
|
|
<div class="links">
|
|
<a href="https://forge.caesargaming.org" class="link-card">
|
|
<h3>🔧 Git Server</h3>
|
|
<p>Forgejo Instance</p>
|
|
</a>
|
|
|
|
<a href="https://tt.caesargaming.org" class="link-card">
|
|
<h3>🎯 Triple Triad</h3>
|
|
<p>Play the Card Game!</p>
|
|
</a>
|
|
|
|
<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> |