-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
95 lines (82 loc) · 2.38 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
<html>
<head>
<title>4D Miner: A 4-Dimensional Survival Sandbox Game</title>
</head>
<body>
<style>
body {
margin: 0px;
font-family: Futura,Helvetica,sans-serif;
font-size: 16px;
background-color: black;
color: white;
}
#pageContent {
text-align: center;
padding: 0px;
padding-top: 50px;
box-sizing: border-box;
}
@media screen and (max-width:750px) {
#logo {
width: 500px;
}
#demogif {
width: 500px;
}
}
@media screen and (max-width:500px) {
#logo {
width: 250px;
}
#demogif {
width: 250px;
}
}
a {
color: rgb(207, 73, 73);
}
#demogif {
border-radius: 20px;
}
/* horizontal dot list */
.dot-list {
/* remove whitespace between items */
font-size: 0;
}
.dot-list ul, .dot-list ol {
margin: 0;
}
.dot-list li {
display: inline-block;
font-size: 16px;
}
.dot-list li:after {
content: "•";
font-size: 18px;
padding: 0 0.25em;
}
.dot-list li:last-of-type:after {
display: none;
}
</style>
<div id="pageContent">
<img id="logo" src="logo.png">
<div class="dot-list">
<ul>
<li><a href="https://4d-miner.fandom.com">Wiki</a></li>
<li><a href="https://discord.gg/zg92JTdp66">Discord</a></li>
<li><a href="https://reddit.com/r/4D_Miner">Subreddit</a></li>
<li><a href="https://store.steampowered.com/app/1941640/4D_Miner/">Steam Page</a></li>
</ul>
</div>
<br>
<br>
<p><a href="https://4d-miner.fandom.com/wiki/4D_Miner"><i>4D Miner</i></a> is a 4-dimensional survival sandbox game, where you can explore an infinite, procedurally-generated, 4-dimensional world!</p>
<a href="https://4d-miner.fandom.com/wiki/4D_Miner"><b>Learn More</b></a>
<br>
<br>
<img id="demogif" src="GameRotate.gif">
</div>
</body>
</html>