This repository was archived by the owner on Aug 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (83 loc) · 2.51 KB
/
index.html
File metadata and controls
103 lines (83 loc) · 2.51 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
<!--
Yes the indentation is intentional.
Have fun reading through this lol
- reason
-->
<html>
<head>
<meta property="og:title" content="CodeUtilities" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://codeutilities.github.io" />
<meta property="og:image" content="https://raw.githubusercontent.com/CodeUtilities/codeutilities.github.io/master/echest.png" />
<meta property="og:description" content="CodeUtilities is a mod that adds helpful tools for plot developers." />
<title>CodeUtilities</title>
<link rel="icon" href="https://raw.githubusercontent.com/CodeUtilities/codeutilities.github.io/master/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap" rel="stylesheet">
<style>
@media screen and (-webkit-min-device-pixel-ratio:0) {
body {
background-position: center center;
}
}
body {
padding: 0px;
margin: 0px;
background-image: url("bg.png");
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
.brand {
color: white;
font-size: 38px;
text-align: center;
padding: 0px;
margin: 0px;
font-family: 'Lato', sans-serif;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -60%);
transform: translate(-50%, -60%);
}
h2 {
margin-top: 5px;
}
.buttons {
margin-top: -30px;
}
button {
border: none;
background-color: transparent;
color: white;
font-family: 'Lato', sans-serif;
font-size: 20px;
padding: 10px 20px 10px 20px;
border: solid 2px white;
border-radius: 15px;
transition: 0.3s;
}
button:hover {
background-color: white;
color: rgb(185,0,81);
}
p {
font-size: 10px;
}
</style>
</head>
<body>
<div class="brand">
<image src="echest.png" \>
<h2>CodeUtilities</h2>
<div class="buttons">
<a href="https://discord.gg/WY6tPFE"><button>Discord</button></a> <a href="https://github.com/CodeUtilities"><button>View on GitHub</button></a>
<br>
<a href="CodeUtilities.jar"><button>Download for Minecraft 1.16.x</button></a><br>
</a>
</div>
<p style="font-size:16px;">Mod Version 2.0</p><p style="font-size:16px;">Requires Fabric</p>
</div>
</body>
</html>