-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (42 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<title>infinical</title>
<style type="text/css">
#container { width: 940px; margin-left: auto; margin-right: auto; }
#calendar { width: 100%; border-spacing: 1px;/*border: 1px solid #ccc;*/}
#calendar th,td{ font-family: Arial, "sans-serif"; width: 14%; height:45px; vertical-align:
top;padding:3px;}
#calendar td:hover { background: #c5edc2; }
#calendar th { vertical-align: bottom; text-align:left;}
#loader { margin-left: auto; margin-right: auto; display: block; margin-top: 2em;
margin-bottom: 2em; }
.month { background: #e0e0ef;}
.other-month { background: #eee; }
.today { background: #FEF1B5; }
.full-date { font-size: 0.9em; color: #888; display:none; }
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
</head>
<body>
<div id="container">
<h1>infinical</h1>
<p>The calendar will automatically append weeks as you scroll. See <a href="http://github.com/papajuans/infinical">github</a>.</p>
<div>
<table id="calendar">
<tr>
<th>Sunday</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</tr>
</table>
</div>
</div>
<img id="loader" src="ajax-loader.gif"/>
<script type="text/javascript" src="infinical.js"></script>
</body>
</html>