blob: c1c3eca15918f83de43371d193562b7736e7fe55 (
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
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
|
/* colors definition */
.map_button .toggle-button-inactive{
color: #5b80b2;
background-color:#fff;
}
.map_button .toggle-button-active, .toggle-button:hover{
background-color: #5b80b2;
color:#fff;
}
/**/
#map_edit{
border: 1px solid black;
width:100%;
height:500px;
}
.map_button{
position:absolute;
z-index:1000;
text-align:center;
width:100%;
margin:0;
padding:0;
margin-top:10px;
font-size:16px;
}
.map_button a{
margin:8px;
padding:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
#live_lonlat{
margin:1em;
float:left;
}
.toggle-button{
margin:4px 0;
padding:2px 0;
}
#upload, #draw-label{
vertical-align:center;
background-repeat:no-repeat;
font-size:20px;
padding:30px 0;
padding-left:80px;
}
#upload{
background-image:url('img/upload.png');
}
#draw-label{
background-image:url('img/drawing.png');
}
#draw-or{
padding:0;
padding-left:80px;
margin:0;
font-size:16px;
}
.help-route{
width:98%;
background-color:#EEF;;
margin: 10px 0;
padding:0 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
border:1px solid grey;
}
#help-route-create{
display:None
}
#help-route-modify{
display:None
}
|