This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
73 lines (64 loc) · 1.99 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
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="description" content="Clear the field by removing groups of more than one colored square; the larger the group you remove, the more points you get.">
<meta name="copyright" content="Copyright (c) 2017 Gabor Bata">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@gabor_bata">
<meta name="twitter:creator" content="@gabor_bata">
<meta property="og:title" content="samegame1k">
<meta property="og:description" content="Clear the field by removing groups of more than one colored square; the larger the group you remove, the more points you get.">
<meta property="og:type" content="game">
<meta property="og:url" content="https://gaborbata.github.io/samegame1k/">
<meta property="og:image" content="https://gaborbata.github.io/samegame1k/samegame1k.png">
<title>samegame1k</title>
<style type="text/css">
body {
background-color: #fff;
margin: 0;
}
#wrapper {
display: table;
position: absolute;
height: 100%;
width: 100%;
}
#container {
display: table-cell;
vertical-align: middle;
}
#a {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
display: block;
height: 288px;
margin: 0 auto;
width: 528px;
}
#footer {
bottom: 0;
color: #999;
font-family: sans-serif;
font-size: 12px;
height: 30px;
left: 0;
position: fixed;
text-align: center;
width: 100%;
}
@media screen and (max-height: 360px) {
#footer {
display: none;
}
}
</style>
<div id="footer">
samegame1k | js1k-2017 | © Gabor Bata
</div>
<div id="wrapper">
<div id="container">
<canvas id="a" width="528" height="288"></canvas>
</div>
</div>
<script src="samegame1k.min.js"></script>
</html>