-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (54 loc) · 1.46 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
<!doctype html>
<html>
<head>
<title>Frostlike</title>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<style>
h1 {
font-family: monospace;
color: #ffffff;
}
body {
background-color: #000000;
}
@media(min-width: 1500px) {
canvas {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
border: 1px solid lightslategray;
}
}
@media(max-width: 1500px) {
canvas {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
width: 1366px;
height: auto;
display: block;
border: 1px solid lightslategray;
}
}
p, ul, li{
font-family: monospace;
color: azure;
}
a {
color: aquamarine;
}
</style>
</head>
<body>
<h1>Frostlike</h1>
<p><a href="https://github.com/maqqr/7drl2017">GitHub repository</a></p>
<img id="tileset" src="shaded.png" style="display: none;" />
<script src="rot.js"></script>
<script src="output.js"></script>
<script src="tsoutput.js"></script>
<script src="basegame.js"></script>
</body>
</html>