-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
112 lines (89 loc) · 1.5 KB
/
style.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
html, body {
height: 100%;
}
.material-icons { color: gray; }
.map-wrapper {
height: inherit;
}
/*
* Sidebar
*/
#sidebar-wrapper {
width: 30%;
}
#map-container {
width: 70%;
}
#splitbar {
background-color: gray;
height: 100%;
float: right;
width: 4px;
cursor: col-resize;
}
.sidebar {
position: fixed;
top: 0;
bottom: 0;
left: 0;
z-index: 100; /* Behind the navbar */
padding: 50px 0 0; /* Height of navbar */
}
.sidebar-sticky {
position: relative;
top: 0;
height: calc(100vh - 62px);
padding-top: .5rem;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
.sidebar-sticky {
position: -webkit-sticky;
position: sticky;
}
}
.sidebar-heading {
text-transform: uppercase;
}
/*
* Content
*/
[role="main"] {
padding-top: 133px; /* Space for fixed navbar */
height: inherit;
}
#mapid {
z-index:150;
height: calc(100vh - 62px);
}
table, th, td {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
background-color: rgba(86, 61, 124, .15);
border: 1px solid rgba(86, 61, 124, .2);
font-size: 80%;
}
.legend {
line-height: 18px;
color: #555;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
.dropdown-item-checked {
font-weight: bold;
}
.navbar {
position: static;
}
.navbar .nav > li {
z-index: 2000;
}
#propertylist{
z-index:2000
}