-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmcselect.html
More file actions
104 lines (93 loc) · 2.42 KB
/
mcselect.html
File metadata and controls
104 lines (93 loc) · 2.42 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
User
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Trebuchet MS', Arial, sans-serif;
background-color: #1C1C1C;
}
header {
background: #000;
padding: 10px;
color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
display: flex;
justify-content: space-between;
align-items: flex-start;
}
nav {
display: flex;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 15px;
margin-right: 10px;
border-radius: 5px;
transition: background .3s;
}
nav a:hover {
background: #555;
}
.logo-btn {
color: #fff;
text-decoration: none;
padding: 10px 15px;
border-radius: 5px;
transition: background .3s;
background: #000;
}
.logo-btn:hover {
background: #555;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 20px;
}
.container img {
margin: 5px;
max-width: 256px;
max-height: 256px;
border-radius: 15px;
transition: transform 0.25s ease;
}
.container img:hover {
transform: scale(1.12);
}
h5 {
color: white;
}
body {
text-align: center;
</style>
<title>These don't work.</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
</head>
<body>
<h2 style="color: rgb(255, 255, 255); text-align: center;">this is broken lol go back</h2>
<div class="container">
<a href="/selfhosted/ec18.html" target="_blank">
<img src="advupdate.png" alt="Game" width="256" height="256">
<a href="/selfhosted/mexicraft/index.html" target="_blank">
<img src="1.5.png" alt="Game" width="256" height="256">
<a href="/selfhosted/eagleralpha.html" target="_blank">
<img src="alphamc.jpg" alt="Game" width="256" height="256">
</a>
</div>
<script src='https://cdn.jsdelivr.net/npm/@widgetbot/crate@3' async defer>
new Crate({
server: '1120506921036816537', // Mexicraft Forever
channel: '1120510313436028938' // #webchat
})
</script>
</body>
</html>