-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.css
68 lines (65 loc) · 1016 Bytes
/
app.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
.hidden {
display: none;
}
html, body, #main, #main-wrapper, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
#list-wrapper {
background-color:rgba(255,255,255,0.8);
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 300px;
font-family: 'Roboto', sans-serif;
z-index: 1;
}
#list-wrapper .bar-header {
position: relative;
}
#header {
z-index: 200;
}
#loading {
position: absolute;
z-index: 100;
left: 100px;
top: 100px;
}
#restaurants {
position: absolute;
bottom: 0px;
top: 43px;
width: 100%;
overflow:hidden;
overflow-y:scroll;
}
.item-btn {
position: absolute;
top: 35px;
right: 10px;
}
.input-icon {
position: absolute;
top: 15px;
right: 10px;
}
@media screen and (max-width: 768px) {
#map-canvas {
}
#list-wrapper {
right: 0;
width: 100%;
}
#loading {
left: 0px;
right: 0px;
/*position: relative;*/
/*display: block;*/
/*display: none;*/
margin-left: auto;
margin-right: auto;
}
}