-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (35 loc) · 777 Bytes
/
style.css
File metadata and controls
40 lines (35 loc) · 777 Bytes
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
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map-canvas, #map_canvas {
height: 100%;
}
@media print {
html, body {
height: auto;
}
#map-canvas, #map_canvas {
height: 650px;
}
}
#panel {
position: absolute;
top: 5px;
left: 50%;
margin-left: -180px;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
}
/** { font-family: verdana; margin: 3pt; padding: 2pt;}*/
#container { width: 640px; border-bottom: 1px dotted grey;}
#drop_zone { border: 1px dashed grey; width: 98%; height: 60px; text-align: center;}
#drop_text { line-height: 60px; }
#selector { text-align:center; }
th { width: 210px;}
tr:nth-child(even) { background-color: white; }
tr:nth-child(odd) { background-color: #eee; }
</style>