Skip to content

Commit 1b59634

Browse files
authored
Create index.html
1 parent 581861b commit 1b59634

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<style>
2+
body {
3+
background: linear-gradient(90deg, #1E90FF, #00BFFF);
4+
color: white;
5+
}
6+
.rainbow-rectangle-button {
7+
background: linear-gradient(90deg, #FF5F6D 0%, #FFC371 16%, #47cf73 33%, #38f9d7 50%, #4f8cff 67%, #a259c1 83%, #FF5F6D 100%);
8+
color: white;
9+
padding: 12px 24px;
10+
border: none;
11+
border-radius: 4px;
12+
font-size: 18px;
13+
text-decoration: none;
14+
display: inline-block;
15+
cursor: pointer;
16+
transition: background 0.25s, transform 0.15s;
17+
}
18+
19+
.rainbow-rectangle-button:hover {
20+
background: linear-gradient(90deg, #FFC371 0%, #FF5F6D 16%, #a259c1 33%, #4f8cff 50%, #38f9d7 67%, #47cf73 83%, #FFC371 100%);
21+
transform: scale(0.9);
22+
}
23+
</style>
24+
<style>
25+
.orange-black-button {
26+
background: linear-gradient(90deg, #FF6600 0%, #000000 100%);
27+
color: white;
28+
padding: 12px 24px;
29+
border: none;
30+
border-radius: 4px;
31+
font-size: 18px;
32+
text-decoration: none;
33+
display: inline-block;
34+
cursor: pointer;
35+
transition: transform 0.15s;
36+
}
37+
38+
.orange-black-button:hover {
39+
transform: scale(0.9);
40+
}
41+
</style>
42+
<h1>Proxy Stations</h1>
43+
<h2>Click The Buttons To Test</h2>
44+
<h3>VORTEX</h3>
45+
<a class="rainbow-rectangle-button">Coming Soon</a>
46+
<h3>Other Soon:</h3>
47+
<button class="orange-black-button">Bloxcraft Games Hub</button>

0 commit comments

Comments
 (0)