-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (33 loc) · 782 Bytes
/
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
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik:300|Roboto:300">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,400i,600">
<script type="text/javascript" src="./elm.js"></script>
<style>
body {
font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
pre {
font-family: 'Roboto Mono', Menlo, Monaco, monospace;
font-size: 11px;
}
img {
height: 40px;
vertical-align: middle;
padding-left: 8px;
}
a:hover, a:focus {
text-decoration: underline;
}
a {
color: #E10098;
text-decoration: none;
}
</style>
</head>
<body>
<script>
var app = Elm.Main.fullscreen()
</script>
</body>
</html>