-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
135 lines (128 loc) · 2.46 KB
/
style.css
File metadata and controls
135 lines (128 loc) · 2.46 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
body {
margin: 0;
padding: 0;
font-family: "Gotham", sans-serif;
}
/* general */
.dwellsy-button {
background: transparent;
color: #000000;
font-weight: 400;
white-space: nowrap;
border: none;
font-family: Gotham,sans-serif;
line-height: 21px;
font-size: 14px;
padding: 6px 20px;
-webkit-transition: all 0.5s;
transition: all 0.5s;
min-height: 32px;
border-radius: 26px;
background: #7172e8;
color: #ffffff !important;
font-weight: 500 !important;
}
/* Menu */
.navbar.bg-light {
background-color: white;
height: 73px;
}
.navbar-brand > div {
margin-left: 10px;
display: inline;
}
.autocomplete-container {
width: 400px;
margin-left: -150px;
}
.autocomplete-container #autocomplete .mapboxgl-ctrl-geocoder {
width: 100%;
max-width: 100%;
box-shadow: none;
}
.autocomplete-container #autocomplete .mapboxgl-ctrl-geocoder .mapboxgl-ctrl-geocoder--icon {
top: 13px;
}
.autocomplete-container #autocomplete input.mapboxgl-ctrl-geocoder--input {
width: 100%;
height: unset;
padding: 12px;
padding-left: 40px;
box-shadow: none;
border: 1px solid #bdbae2;
border-radius: 4px;
-webkit-transition: all 200ms ease-out;
transition: all 200ms ease-out;
width: 100%;
}
.autocomplete-container #autocomplete .mapboxgl-ctrl-geocoder--icon-search {
background-repeat: no-repeat;
background-size: 100%;
background-position: center center;
margin-left: 5px;
}
.nav-item a {
font-size: 12px;
margin-top: 3px;
text-align: center;
}
/* modal */
#more-info {
display: none;
}
/* Map and overlays */
#map {
position: absolute;
top: 0;
bottom: 0;
margin-top: 73px;
width: 100%;
}
.mapboxgl-popup-content {
max-height: 400px;
overflow-y: scroll;
}
/* Slider panel */
#slider-panel {
position: absolute;
top: 0;
left: 0;
margin: 10px;
margin-top: 83px;
padding: 10px;
background: white;
border-radius: 4px;
box-shadow: 2px 2px 10px #ccc;
width: 350px;
}
#slider-panel .datecontainer {
display: flex;
font-size: 10px;
margin-top: 10px;
}
#slider-panel .datecontainer #minDate {
width: 50%;
text-align: left;
}
#slider-panel .datecontainer #maxDate {
width: 50%;
text-align: right;
}
/* Selector panel */
#category-panel {
position: absolute;
top: 0;
right: 0;
margin: 10px;
margin-top: 83px;
padding: 10px;
background: white;
border-radius: 4px;
box-shadow: 2px 2px 10px #ccc;
width: 350px;
font-size: 12px;
overflow-y : scroll;
}
#placetypes .accordion-body {
text-transform: capitalize;
}