blob: 4010062f7695f85e2ebe70857a14d4b602b21362 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WHEN</title>
<script src="../raphael-min.js"></script>
<script src="raphael-utils.js"></script>
<script src="when.js"></script>
<style type="text/css" media="screen">
body {
background: #333;
color: #fff;
font: 300 100.1% "Helvetica Neue", Helvetica, "Arial Unicode MS", Arial, sans-serif;
}
#graph {
left: 50%;
position: absolute;
top: 50%;
height: 250px;
margin: -125px 0 0 -400px;
width: 800px;
}
#menus {
left: 50%;
position: absolute;
top: 50%;
margin: 125px 0 0 -400px;
width: 800px;
}
</style>
</head>
<body>
<div id="graph"></div>
<div id="menus"></div>
</body>
</html>
|