-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
139 lines (121 loc) · 3.91 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
<!DOCTYPE html>
<html>
<head>
<title>Loom - Next-generation Minecraft server software.</title>
<link rel="icon" href="img/loom.png">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="theme-color" content="#FFB954">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Loom is a next-generation Minecraft server software with a modern and extensive plugin API. It aims to replace projects like Spigot and CraftBukkit.">
<meta name="keywords" content="Minecraft, Spigot, server, plugins, api, open-source">
<meta name="author" content="Loom Developers">
<meta name="og:image" content="https://loomdev.org/img/loom-background.png">
<style>
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
body {
min-height: 90vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #f6f6f6;
animation: fadeIn 3s;
}
.content {
position: relative;
}
.image {
margin: 0 auto;
display: block;
padding-bottom: 25px;
width: 160px;
-webkit-filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.3));
filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.3));
}
h1 {
padding-bottom: 10px;
font-family: 'Open Sans', sans-serif;
font-size: 48px;
margin: 0 auto;
text-align: center;
color: #2F2F2F;
}
h3 {
padding-bottom: 25px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
margin: 0 auto;
text-align: center;
font-weight: 600;
max-width: 400px;
color: #4C4C4C;
}
.links {
text-align: center;
}
.link {
background-color: #FFB954;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
color: white;
text-decoration: none;
padding: 5px 15px;
border-radius: 5px;
text-align: center;
margin: 0 auto;
display: block;
width: 100px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
transition: 0.3s;
display: inline-block
}
.link:hover {
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.github {
background-color: #353535;
}
.discord {
background-color: #7289DA;
}
.footer {
background-color: #e3e3e3;
position: relative;
display: block;
margin: 0 auto;
width: 20em;
bottom: -5em;
padding: 0.6em;
height: 1.5em;
border-radius: 0.3em;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(5px);
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<div class="content">
<img class="image" src="img/loom.png">
<h1>Loom</h1>
<h3>The next-generation Minecraft server software with a modern and extensive plugin API.</h3>
<div class="links">
<a class="github link" href="https://github.com/loomdev">GitHub</a>
<a class="discord link" href="https://discord.gg/hCmwjPt">Discord</a>
<!--<a class="discord link" href="https://loom-api.readthedocs.io/en/latest/">Wiki</a>-->
</div>
<!--
<div class="footer">
<h3>Test it out! Join <code>demo.loomdev.org</code></h1>
</div>
-->
</div>
</body>
</html>