blob: fa6a9783c42cc4dcb9a997aa7b92b14fa9d87f08 (
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/* sample css file for mobile */
.cloud, .close_img{
width:200px;
}
#main-map {
top : 0;
}
#detail_content{
max-height:100px;
}
.map-footer, #footer-panel a, #action-routing, #search-form, #sidebar, #map_menu_step, #map_menu_zoomin, #map_menu_zoomout {
display:none;
}
#sidebar {
width:300px !important;
top:0px !important;
}
#map-shadow, #sidebar, #panel {
background-image:none !important;
}
.sidebar-handler {
width:37px;
}
#footer-panel {
background-color:#fff !important;
border-right:1px solid #000;
width:275px;
color:#fff;
}
/* 2017-02-08 */
ul.action{
display: none;
}
div#action-panel{
height:120px;
width:282px;
background-image:url(../images/logo-carto.png) ;
background-repeat:no-repeat;
background-position:center;
border-right:1px solid;
border-bottom:1px solid;
background-color: #fff;
border-color: #999;
}
div#panel{
position:absolute;
width:282px;
z-index:10;
max-height:none;
padding:0;
right:auto;
bottom:26px;
top:120px;
border-width:0 1px;
background-image:url('../images/logo.png');
background-repeat:repeat-x;
background-position:left bottom;
overflow-x:hidden;
border-right:1px solid;
border-color: #999;
}
#footer-panel{
border-color: #999;
}
#back-categories{
color: #60543A;
background-color: #eaeaea;
font-weight: 900;
padding: 0;
width: 282px;
position: fixed;
bottom: 0;
left: 0;
font-family: 'Numans';
}
#back-categories:hover{
cursor: pointer;
}
#back-categories .fa,
#back-categories p{
display: inline-block;
padding: 0;
margin: 0;
}
#back-categories p{
height: 26px;
vertical-align: middle;
padding-left: 0.3em;
}
#back-categories .fa{
font-size: 2em;
padding-top: 4px;
padding-left: 12px;
}
|