-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
199 lines (176 loc) · 4.21 KB
/
index.html
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EaglerSky - Eaglercraft Server Hosting</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(to bottom, #87CEEB, #4682B4);
color: #ffffff;
overflow: hidden;
height: 100vh;
margin: 0;
}
/* Navigation Bar */
.nav-bar {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 10px;
}
.nav-button {
background-color: rgba(255, 255, 255, 0.8);
color: #000;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
text-decoration: none;
transition: background-color 0.3s;
}
.nav-button:hover {
background-color: #f0f8ff;
}
.container {
text-align: center;
padding: 30px;
background: rgba(255, 255, 255, 0.2);
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
width: 90%;
max-width: 800px;
margin: 50px auto;
}
h1 {
font-size: 2.8em;
margin-bottom: 15px;
color: #ffffff;
text-shadow: 1px 1px 4px #000000;
}
p {
font-size: 1.3em;
margin-bottom: 30px;
color: #f0f8ff;
}
.stats {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}
.stat {
background: rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 10px;
width: 28%;
cursor: pointer;
position: relative;
transition: transform 0.2s;
}
.stat:hover {
transform: translateY(-5px);
}
.stat:hover .tooltip {
display: block;
}
.stat h2 {
font-size: 1.8em;
color: #ffffff;
text-shadow: 1px 1px 3px #000000;
}
.stat p {
font-size: 1em;
color: #ffffff;
text-shadow: 1px 1px 2px #000000;
}
.tooltip {
display: none;
position: absolute;
bottom: -45px;
left: 50%;
transform: translateX(-50%);
background-color: rgba(0, 0, 0, 0.7);
color: #ffffff;
padding: 8px 12px;
border-radius: 5px;
font-size: 0.9em;
white-space: nowrap;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.cta-button {
background-color: #00BFFF;
color: #ffffff;
border: none;
padding: 12px 30px;
font-size: 1.2em;
border-radius: 5px;
cursor: pointer;
transition: transform 0.3s;
text-shadow: 1px 1px 2px #000000;
}
.cta-button:hover {
transform: scale(1.1);
}
.clouds {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 200px;
overflow: hidden;
}
.cloud {
position: absolute;
top: 0;
background: url('cloud.png') repeat-x;
opacity: 0.8;
animation: moveClouds 30s linear infinite;
height: 100px;
width: 200%;
}
@keyframes moveClouds {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
</style>
</head>
<body>
<div class="clouds">
<div class="cloud"></div>
</div>
<div class="nav-bar">
<a href="index.html" class="nav-button">Home</a>
<a href="support.html" class="nav-button">Support</a>
<a href="create-server.html" class="nav-button">Create Server</a>
</div>
<div class="container">
<h1>Welcome to SkyHosting</h1>
<p>Effortlessly host your Eaglercraft servers in the cloud!</p>
<div class="stats">
<div class="stat">
<h2>0</h2>
<p>Servers Hosted</p>
<div class="tooltip">Will add when backend is created</div>
</div>
<div class="stat">
<h2>0</h2>
<p>Active Players</p>
<div class="tooltip">Will add when backend is created</div>
</div>
<div class="stat">
<h2>0 ms</h2>
<p>Average Latency</p>
<div class="tooltip">Will add when backend is created</div>
</div>
</div>
<button class="cta-button">Get Started</button>
</div>
</body>
</html>