forked from tankaru/OpenSwitchMaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
50 lines (42 loc) · 783 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 10pt;
display: table;
padding: 0;
margin: 0;
}
p.map {
padding: 5px;
margin: 5px;
}
p.map img {
vertical-align: text-bottom;
margin-right: 5px;
}
p.map:hover {
cursor: pointer;
background-color: #eee;
}
.title {
background-color: #eee;
font-weight: bold;
font-size: larger;
text-align: center;
padding: 1px;
margin: 0;
}
.column {
display: table-cell;
white-space: nowrap;
}
</style>
<meta charset="utf-8">
</head>
<body>
<script src="popup.js"></script>
</body>
</html>