initial commit, debug version

This commit is contained in:
Nick Stokoe
2013-12-31 14:21:19 +00:00
commit c31e70bb8a
2 changed files with 162 additions and 0 deletions

32
countdown.html Normal file
View File

@@ -0,0 +1,32 @@
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.3.11/d3.min.js"></script>
<style>
div#counter {
font-size: 200pt;
}
div#location {
font-size: 50pt;
}
div.hours { color: blue; }
div.minutes { color: green; }
div.seconds { color: orange; }
div.countdown { color: red; }
</style>
</head>
<body>
<div id="counter"></div>
until 1st January 2014 in
<div id="location"></div>
at local time
<div id="localtime"></div>
<div id="map"></div>
<script src="countdown.js">
</script>
</body>
</html>