-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (54 loc) · 876 Bytes
/
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
html,
body {
font-family: Arial, sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
#container {
width: 100%;
height: 100%;
}
#search-box {
width: 70%;
line-height: 25px;
}
#app {
background: #fff;
border: 1px solid #999;
border-radius: 3px;
height: 100%;
line-height: 35px;
padding: 10px 10px 30px 10px;
text-align: left;
width: 25%;
float: left;
background-color: #1d2c4d;
position: absolute;
}
#map {
bottom:0px;
height: 100%;
position: absolute;
right: 0px;
width: 75%;
float: left;
}
#results {
margin: 10px;
padding: 2px;
}
#restaraunts {
list-style: none;
border: 2px solid #b0d5ce;
width: 70%;
border-radius:5px 5px 5px 5px;
padding: 3px;
margin: 2px;
color: #b0d5ce;
}
@media only screen and (max-device-width: 800px), only screen and (max-width: 800px){
#app {
flex-direction: column;
}
}