forked from Sabara/ingressmap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathingressmap.css
113 lines (95 loc) · 1.98 KB
/
ingressmap.css
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/**
* ingressmap.css
*
* Copyright (C) 2014 Sabara <sabara dot ingress at gmail dot com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
html {
height: 100%;
}
body {
font: 14px/1.2 Verdana, Arial, Helvetica, sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
#map_canvas {
height: 100%;
}
#panel {
position: absolute;
top: 5px;
left: 5px;
margin-left: 0px;
z-index: 5;
/* background-color: transparent; */
background-color: #fff;
padding: 5px;
border: 1px solid #999;
box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
#current_position {
z-index: 5;
/* background-color: transparent; */
color: #00f;
background-color: #fff;
padding: 5px;
margin: 25px 10px 10px 10px;
border: 1px solid #999;
cursor: pointer;
box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.portal_info {
float: left;
margin: 5px 5px 5px 5px;
}
.portal_img {
max-width: 80px;
}
table {
border: 1px solid #000000;
border-collapse:collapse;
}
thead {
background-color: #e6e6e6;
}
thead td {
text-align: center;
}
tbody {
background-color: #ffffff;
}
tbody {
background-color: #ffffff;
}
tfoot {
background-color: #eeeeee;
}
tr {
border: 1px solid #111111;
}
.tr_highlight {
background-color: #ffff00;
}
tr:hover {
background: #eeeeee;
}
td {
border: 1px solid #111111;
}
.td_number {
text-align: right;
}