-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (130 loc) · 4.45 KB
/
Copy pathindex.html
File metadata and controls
134 lines (130 loc) · 4.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vinster</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="/media/favicon.ico">
<meta content="vinster.xyz" property="og:title" />
<meta content="An eaglercraft launcher that was made in a few minutes." property="og:description" />
<meta content="https://vinster.xyz" property="og:url" />
<meta content="https://vinster.xyz/media/logo.png" property="og:image" />
<meta content="#ebebeb" data-react-helmet="true" name="theme-color" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'inter', sans-serif;
background-color: #181818;
color: #fff;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
height: 100vh;
}
.main-container {
display: flex;
margin-bottom: 20px;
}
.container, .list-container {
background-color: #242424;
padding: 20px;
border: none;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
margin-right: 20px;
width: 250px;
height: auto;
}
.container {
display: flex;
flex-direction: column;
justify-content: space-between;
}
h1, h2 {
font-size: 1.5rem;
margin-bottom: 15px;
}
ul {
list-style: none;
padding-left: 0;
}
.button {
background-color: #333;
border: none;
padding: 10px;
color: white;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
margin-bottom: 10px;
text-align: left;
transition: all 0.3s ease;
width: 100%;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.button:hover {
background-color: #444;
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
.list-container h2 {
margin-bottom: 15px;
}
.list-container ul li a {
color: #fff;
text-decoration: none;
font-size: 1rem;
margin-bottom: 10px;
display: block;
}
.list-container ul li a:hover {
color: #aaa;
}
footer {
margin-top: auto;
width: 100%;
padding: 10px;
background-color: #181818;
text-align: center;
}
footer a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
color: #aaa;
}
</style>
</head>
<body>
<div class="main-container">
<div class="container">
<h1>vinster client</h1>
<ul>
<li><button class="button" onclick="location.href='https://vinster.xyz/clients/resenttale/index.html'">resenttale</button></li>
<li><button class="button" onclick="location.href='https://vinster.xyz/clients/eaglercraft-1.8.8.html'">eaglercraft 1.8.8</button></li>
<li><button class="button" onclick="location.href='https://vinster.xyz/clients/eaglercraft-1.5.2.html'">eaglercraft 1.5.2</button></li>
</ul>
</div>
<div class="list-container">
<h2>server list</h2>
<ul>
<li><a href="https://zentic.cc" target="_blank">zentic</a></li>
<li><a href="https://arch.lol" target="_blank">archmc</a></li>
<li><a href="https://www.asspixel.net" target="_blank">asspixel</a></li>
<li><a href="https://clever-teaching.com" target="_blank">clever teaching</a></li>
</ul>
</div>
</div>
<footer>
<p><a href="https://discord.gg/6vqHySrky5" target="_blank">vinster discord server</a> | <a href="https://servers.eaglercraft.com target="_blank>eaglercraft server list</a></p> | <a href="https://servers.eaglercraft.com target="_blank>eaglercraft server list</a></p>
</footer>
</body>
</html>