forked from ninjabunny/ricochet-robots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (57 loc) · 1.39 KB
/
index.html
File metadata and controls
60 lines (57 loc) · 1.39 KB
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
<html>
<head>
<title>Ricochet Robots Daily Puzzle</title>
</head>
<style type="text/css">
body {
margin: 0;
}
#thetable {
border: 10px solid black;
border-collapse: collapse;
}
.cell {
width:100%;
height:100%;
}
td {
background: lightgrey;
border: 1px solid;
}
td.upright {
border-top: 10px solid;
border-right: 10px solid;
}
td.upleft {
border-top: 10px solid;
border-left: 10px solid;
}
td.downright {
border-bottom: 10px solid;
border-right: 10px solid;
}
td.downleft {
border-bottom: 10px solid;
border-left: 10px solid;
}
.circle {
border-radius: 50%;
width: 95%;
height: 95%;
/* width and height can be anything, as long as they're equal */
}
</style>
<body>
<table id="thetable"></table>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48676831-10', 'auto');
ga('send', 'pageview');
</script>
<script src="jquery-2.1.4.js"></script>
<script src="index.js"></script>
</html>