-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
169 lines (153 loc) · 5.34 KB
/
Copy pathhome.html
File metadata and controls
169 lines (153 loc) · 5.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Hellcore Network | Home</title>
<style>
/* --- LOGO ANIMATION --- */
.logo {
display: block;
margin: 0 auto;
max-width: 200px;
padding: 20px 0;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
cursor: pointer;
filter: drop-shadow(0 0 0px transparent);
}
.logo:hover {
transform: scale(1.1) rotate(2deg);
filter: drop-shadow(0 0 20px rgba(255, 78, 0, 0.6)); /* Fiery orange glow */
}
/* --- NAVIGATION TAB ANIMATIONS --- */
nav {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
flex-wrap: wrap;
}
nav a {
text-decoration: none;
color: #fff;
padding: 10px 18px;
border-radius: 5px;
position: relative;
transition: all 0.3s ease;
overflow: hidden;
font-weight: 500;
}
/* Active Tab State */
nav a.active {
background: rgba(255, 78, 0, 0.2);
color: #ff4e00;
border: 1px solid rgba(255, 78, 0, 0.3);
}
/* Tab Hover: Glow and Lift */
nav a:hover {
transform: translateY(-3px);
background: rgba(255, 255, 255, 0.1);
color: #ff4e00;
box-shadow: 0 5px 15px rgba(255, 78, 0, 0.3);
}
/* Underline Animation */
nav a::before {
content: "";
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: #ff4e00;
transition: all 0.3s ease;
transform: translateX(-50%);
}
nav a:hover::before {
width: 80%;
}
/* --- THE SHINE SWEEP EFFECT --- */
nav a::after, .card::after {
content: "";
position: absolute;
top: 0;
left: -150%;
width: 50%; height: 100%;
background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
transform: skewX(-25deg);
transition: 0.6s;
}
nav a:hover::after, .card:hover::after {
left: 150%;
}
/* --- WELCOME CARD ANIMATIONS --- */
.card {
transition: all 0.3s ease-in-out;
cursor: pointer;
position: relative;
overflow: hidden;
border: 2px solid transparent;
background: rgba(255, 255, 255, 0.02);
border-radius: 15px;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 40px rgba(255, 78, 0, 0.4);
border-color: #ff4e00;
background: rgba(255, 255, 255, 0.05);
}
/* IP Box Design */
.ip-box {
transition: all 0.3s ease;
border: 1px solid #444;
background: #222;
padding: 20px;
border-radius: 10px;
display: inline-block;
margin-top: 30px;
cursor: pointer;
}
.ip-box:hover {
background: #333 !important;
transform: scale(1.05);
border-color: #ff4e00;
box-shadow: 0 0 20px rgba(255, 78, 0, 0.2);
}
</style>
</head>
<body>
<div class="overlay">
<header>
<a href="home.html">
<img src="logo.webp" class="logo" alt="Hellcore Logo">
</a>
</header>
<nav>
<a href="home.html" class="active">Home</a>
<a href="players.html">Players</a>
<a href="minigames.html">Minigames</a>
<a href="forums.html">Forums</a>
<a href="store.html">Store</a>
<a href="rules.html">Rules</a>
</nav>
<div class="container">
<div class="card" style="text-align: center; padding: 60px 20px;">
<h1 style="font-size: 3.5rem; margin-bottom: 10px; color: white;">Welcome to Hellcore</h1>
<p style="font-size: 1.25rem; color: #ccc; max-width: 800px; margin: 0 auto;">
The ultimate high-stakes Minecraft Network. Custom plugins, low latency, and a hardcore community.
</p>
<div class="ip-box" onclick="copyIP()">
<small style="display: block; color: #888; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 2px; font-weight: bold;">Server IP (Click to copy)</small>
<code id="serverIP" style="font-size: 2.2rem; color: #ff4e00; font-weight: bold;">MC.HELLCORE.IN</code>
</div>
</div>
</div>
</div>
<script>
function copyIP() {
const ip = document.getElementById('serverIP').innerText;
navigator.clipboard.writeText(ip);
alert("Hellcore IP Copied! See you in-game.");
}
</script>
</body>
</html>