-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
65 lines (56 loc) · 1.12 KB
/
styles.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
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
#search-box {
border: none;
border-radius: 4px;
box-shadow: 0 0 0 2px rgba(0, 0, 0, .1);
}
.custom-map-control-button {
width: 100% !important;
padding: 5px !important;
font-weight: bold !important;
}
#selected-place-sheet {
position: fixed;
bottom: 0;
width: 100vw;
z-index: 10;
background-color: white;
box-sizing: border-box;
padding: 0 5vw 1vh;
max-height: 40vh;
overflow-y: auto;
overflow-wrap: break-word;
}
#building-photo-number-address {
display: flex;
justify-content: center;
align-items: center;
}
#departments {
display: flex;
flex-direction: column;
align-items: center;
}
.sheet-list-entry {
display: flex;
justify-content: space-between;
align-items: center;
}
.center-text {
text-align: center;
}
.ui-autocomplete.ui-front {
max-height: 60vh;
max-width: 90vw;
overflow-x: hidden; /* scroll extra items; don't show horizontal scrollbar on item mouseover */
}