-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (75 loc) · 1.73 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
74
75
76
77
78
79
80
81
<html>
<head>
<title>The Pete Tracker</title>
<script type="text/javascript" src="OpenLayers.js" ></script>
<script type="text/javascript" src="albumData.js" ></script>
<script type="text/javascript" src="js/jquery-1.7.2.min.js" ></script>
<script type="text/javascript" src="js/jquery.fancybox.pack.js" ></script>
<script type="text/javascript" src="PeteTracker.js" ></script>
<link rel="stylesheet" href="./theme/default/style.css" type="text/css">
<link href="jquery.fancybox.css" rel="stylesheet" />
<style>
body {
margin:0px;
padding:0px;
}
#sidebar {
position: absolute;
right: 15px;
width: 350px;
height: 500px;
top: 200px;
background-color: white;
z-index: 1000;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
overflow: auto;
border-top: solid #CCCCCC 1px;
border-bottom: solid #CCCCCC 1px;
border-left: solid #CCCCCC 1px;
}
#sidebar h1 {
margin: 10px;
font-family: Arial;
font-size: 18px;
}
#sidebar table {
margin:0px;
padding:0px;
border: 0px;
}
#sidebar table td {
padding: 3px;
}
.photocell {
text-align: center;
border-top: solid #CCCCCC 1px;
border-bottom: solid #CCCCCC 1px;
}
.infocell {
vertical-align: top;
border-top: solid #CCCCCC 1px;
border-bottom: solid #CCCCCC 1px;
}
.photobox {
font-family: 'Arial';
font-size: 11px;
}
.photo {
border: solid #E1E1E1 1px;
cursor: pointer;
}
#handle{
position: absolute;
right:0px;
top: 200px;
z-index: 1001;
}
</style>
</head>
<body onload="PeteTracker()">
<div id="map"></div>
<div id="sidebar"></div>
<img id="handle" src="img/in.png" />
</body>
</html>