-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (64 loc) · 1.85 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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DVD logo</title>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<meta name="description" content="DVD logo lol" />
<style>
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
background: #111;
overflow: hidden;
padding: 0;
margin: 0;
height: 100vh;
width: 100vw;
}
.link {
font-size: 13px;
text-align: left;
position: fixed;
bottom: 25px;
right: 25px;
}
.link a {
text-decoration: none;
background-color: #000;
color: #222;
padding: 5px;
}
.link a:hover {
text-decoration: none;
color: #000;
background-color: #FFF;
padding: 5px;
}
</style>
</head>
<body>
<pre id="elm"></pre>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36259098-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="main.js" type="text/javascript"></script>
<script>
var app = Elm.Bouncingdvdlogo.init({
node: document.getElementById("elm")
});
</script>
</body>
</html>