This repository has been archived by the owner on Dec 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
76 lines (69 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="The Slimy Swamp, Minecraft, server, SMP" />
<meta name="description" content="A hub of information for The Slimy Swamp." />
<title>The Slimy Swamp</title>
<link rel="icon" type="image/png-icon" href="https://github.com/TheSlimySwamp/logo/releases/download/1.0.0-red-mushroom-rounded/the-slimy-swamp-logo-1.0.0-red-mushroom-rounded.png" />
<style>
@font-face {
font-family: "Minecraft-Title";
src: url("assets/fonts/minecraft/Minecraft Title.ttf") format("truetype");
}
img.the-slimy-swamp-logo {
height: 60px;
padding-left: 5px;
padding-top: 5px;
padding-bottom: 5px;
user-select: none;
/* Disable selection */
pointer-events: none;
/* Disable hover effect and click */
border-radius: 2048px;
}
h1.the-slimy-swamp-title {
text-align: center;
margin-left: 15px;
font-family: "Minecraft-Title";
display: flex;
align-items: center;
line-height: 1;
margin-top: 13px;
user-select: none;
/* Disable selection */
pointer-events: none;
/* Disable hover effect and click */
}
header {
background-color: rgb(60, 133, 39);
margin: 0;
padding: 0;
position: fixed;
left: 0;
right: 0;
top: 0;
border-bottom: 4px solid rgb(82, 165, 53);
border-top: 4px solid rgb(82, 165, 53);
display: flex;
align-items: center;
}
a.title {
text-decoration: none;
color: inherit;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<a class="title" href="index.html"><img class="the-slimy-swamp-logo"
src="https://github.com/TheSlimySwamp/logo/releases/download/1.0.0-red-mushroom-rounded/the-slimy-swamp-logo-1.0.0-red-mushroom-rounded.png" alt="The icon/logo of The Slimy Swamp" /></a>
<a class="title" href="index.html">
<h1 class="the-slimy-swamp-title">The Slimy Swamp</h1>
</a>
</header>
</body>
</html>