cc
This commit is contained in:
parent
0e805f319c
commit
dd2de32c45
1 changed files with 25 additions and 13 deletions
18
index.html
18
index.html
|
@ -1,5 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
@ -102,6 +103,7 @@
|
|||
opacity: 0;
|
||||
transform: translateY(-30px);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
|
@ -109,8 +111,13 @@
|
|||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
|
@ -118,6 +125,7 @@
|
|||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
|
@ -131,6 +139,7 @@
|
|||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>🎮 Caesar Gaming</h1>
|
||||
|
@ -143,8 +152,10 @@
|
|||
</a>
|
||||
|
||||
<div class="link-card coming-soon">
|
||||
<a href="https://tt.caesargaming.org" class="link-card coming-soon"></a>
|
||||
<h3>🎯 Game Servers</h3>
|
||||
<p>Coming Soon</p>
|
||||
<p>Play: Tripe Triad</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="link-card coming-soon">
|
||||
|
@ -158,4 +169,5 @@
|
|||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue