193 lines
4.6 KiB
HTML
193 lines
4.6 KiB
HTML
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<title>Minecraft Server | Maintenance</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
||
<link
|
||
rel="stylesheet"
|
||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
|
||
/>
|
||
<style>
|
||
body {
|
||
margin: 0;
|
||
height: 100vh;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
background: #212121;
|
||
background-size: 400% 400%;
|
||
animation: gradientShift 8s ease infinite;
|
||
font-family: "Segoe UI", sans-serif;
|
||
color: #f5f5f5;
|
||
overflow: hidden;
|
||
position: relative;
|
||
}
|
||
|
||
/* Container */
|
||
.container {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 60px;
|
||
max-width: 1000px;
|
||
padding: 20px;
|
||
}
|
||
|
||
/* Main Icon */
|
||
.icon {
|
||
width: 160px;
|
||
height: auto;
|
||
filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.6));
|
||
transition:
|
||
transform 0.9s cubic-bezier(0.6, 0, 0.4, 1.4),
|
||
filter 0.5s ease;
|
||
}
|
||
|
||
.icon:hover {
|
||
transform: rotate(360deg) scale(1.05);
|
||
filter: drop-shadow(0 0 25px rgba(255, 102, 0, 0.9));
|
||
}
|
||
|
||
/* Ensure spin doesn’t reset */
|
||
.icon:active {
|
||
transform: rotate(720deg) scale(1.05);
|
||
}
|
||
|
||
/* Text + Buttons */
|
||
.content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
}
|
||
h1 {
|
||
font-size: 2.5rem;
|
||
margin: 0 0 12px 0;
|
||
font-weight: 600;
|
||
letter-spacing: 1px;
|
||
background: linear-gradient(135deg, #ffffff, #ff6600);
|
||
background-clip: text;
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
p {
|
||
font-size: 1.2rem;
|
||
margin: 0 0 28px 0;
|
||
color: #cfcfcf;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
/* Buttons with improved styling */
|
||
.buttons {
|
||
display: flex;
|
||
gap: 20px;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.btn {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 10px;
|
||
padding: 14px 28px;
|
||
font-size: 1rem;
|
||
font-weight: 500;
|
||
border-radius: 12px;
|
||
text-decoration: none;
|
||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||
background: rgba(255, 255, 255, 0.03);
|
||
color: #f5f5f5;
|
||
border: 2px solid rgba(255, 255, 255, 0.1);
|
||
backdrop-filter: blur(10px);
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.btn::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
left: -100%;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: linear-gradient(
|
||
90deg,
|
||
transparent,
|
||
rgba(255, 102, 0, 0.1),
|
||
transparent
|
||
);
|
||
transition: left 0.5s ease;
|
||
}
|
||
|
||
.btn:hover::before {
|
||
left: 100%;
|
||
}
|
||
|
||
.btn:hover {
|
||
border-color: #ff6600;
|
||
color: #ff6600;
|
||
background: rgba(255, 102, 0, 0.08);
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 8px 16px rgba(255, 102, 0, 0.2);
|
||
}
|
||
|
||
.btn:active {
|
||
transform: translateY(0px);
|
||
}
|
||
|
||
.btn i {
|
||
font-size: 1.2rem;
|
||
transition: transform 0.3s ease;
|
||
}
|
||
|
||
.btn:hover i {
|
||
transform: scale(1.1);
|
||
}
|
||
|
||
/* Mobile */
|
||
@media (max-width: 700px) {
|
||
.container {
|
||
flex-direction: column;
|
||
text-align: center;
|
||
gap: 30px;
|
||
}
|
||
.icon {
|
||
margin-bottom: 20px;
|
||
}
|
||
.buttons {
|
||
justify-content: center;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<img class="icon" src="icon.png" alt="Maintenance Icon" />
|
||
|
||
<div class="content">
|
||
<h1>We'll be back soon!</h1>
|
||
<p>
|
||
The site is currently under maintenance.<br />Check back later or stay
|
||
connected:
|
||
</p>
|
||
<div class="buttons">
|
||
<a id="discordBtn" class="btn" href="https://discord.gg/yourserver"
|
||
><i class="fa-brands fa-discord"></i> Discord</a
|
||
>
|
||
<a
|
||
id="voteBtn"
|
||
class="btn"
|
||
href="https://minecraft-server-vote-link.com"
|
||
><i class="fa-solid fa-check"></i> Vote</a
|
||
>
|
||
<a id="storeBtn" class="btn" href="https://yourstore.com"
|
||
><i class="fa-solid fa-store"></i> Store</a
|
||
>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|