-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (77 loc) · 2.59 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
<!DOCTYPE html>
<!---
Site by Gus Caplan. Discord and the Discord Logo are trademarks of Discord.
--->
<html>
<head>
<meta name="theme-color" content="#7289DA">
<title>MacDJ</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Exo:100,300);
body {
background-color: #7289DA;
color: #fff;
font-family: Exo;
}
h1 {
font-size: 300%;
margin-top: -1rem;
font-weight: 100;
}
.container {
position: absolute;
top: 45%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
text-align: center;
}
.logo {
width: 200px;
display: inline;
}
.links {
position: absolute;
top: 65%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
text-align: center;
}
a {
color: #fff;
font-weight: 300;
font-size: 120%;
margin: 0.5em;
}
.footer {
position: absolute;
bottom: 0px;
left: 4px;
font-size: 60%;
}
.mobile.links > a{
font-size: 300%;
}
.mobile.container > h1 {
font-size: 500%;
}
.mobile.container > img {
width: 300px;
}
.footer.mobile {
font-size: 150%;
}
</style>
</head>
<body>
<div class="container">
<img class="logo" src="assets/logo.png">
<p>A Musicbot for the 21st Century</p>
</div>
<div class="links">
<a href="http://github.com/da-vinci/discord-macdj/releases">Download</a><a href="http://github.com/da-vinci/discord-macdj/wiki">Help</a>
</div>
<div class="footer">Copyright © 2016 The DaVinci Team</div>
<script>/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent)&&(document.getElementsByClassName("links")[0].className+=" mobile",document.getElementsByClassName("container")[0].className+=" mobile",document.getElementsByClassName("footer")[0].className+=" mobile");</script>
<script src="https://guscaplan.me/nojoke.js"></script>
</body>
</html>