52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Hello Dokploy</title>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background: linear-gradient(to top, #00111a, #003344);
|
|
color: white;
|
|
font-family: sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1 {
|
|
position: relative;
|
|
font-size: 2rem;
|
|
animation: textShift 4s ease-in-out infinite;
|
|
}
|
|
|
|
.rocket {
|
|
display: inline-block;
|
|
animation: launch 4s ease-in-out infinite;
|
|
}
|
|
|
|
/* 🚀 Rocket diagonal takeoff */
|
|
@keyframes launch {
|
|
0% { transform: translate(0, 0); opacity: 1; }
|
|
60% { transform: translate(200px, -200px); opacity: 1; }
|
|
100% { transform: translate(500px, -500px) scale(1.2); opacity: 0; }
|
|
}
|
|
|
|
/* 📉 Text drops quickly off-screen + fades */
|
|
@keyframes textShift {
|
|
0% { transform: translateY(0); opacity: 1; }
|
|
40% { transform: translateY(20px); opacity: 1; }
|
|
60% { transform: translateY(80px); opacity: 0.8; }
|
|
100% { transform: translateY(300px); opacity: 0; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
Hello from Gitea + Dokploy
|
|
<span class="rocket">🚀</span>
|
|
</h1>
|
|
</body>
|
|
</html> |