-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
50 lines (50 loc) · 1.4 KB
/
main.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
html {
height : 100%;
}
body {
height : 100%;
margin : 0;
padding : 0;
}
#map_canvas {
height : 100%;
width : 100%;
}
#map_control {
position : absolute;
z-index : 0;
right : 20px;
top : 50px;
height : 580px;
width : 550px;
}
.scrolling_pane {
height : 500px;
width : 200px;
overflow : scroll;
border : dashed 1px maroon;
}
.ui-autocomplete {
max-height : 500px;
overflow-y : auto;
overflow-x : hidden;
padding-right : 20px;
}
ul {
display : table;
}
li, .row {
display : table-row;
}
.left, .right, .middle {
display : table-cell;
}
#sidebar {
width : 200px;
height : 500px;
position : absolute;
z-index : 1000;
left : 0px;
background-color: #a9a9a9;
display : table-cell;
}