forked from AlaaHabib/Neighborhood_map_master
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.css
More file actions
76 lines (76 loc) · 1.2 KB
/
map.css
File metadata and controls
76 lines (76 loc) · 1.2 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
html,
body {
font-family: monospace;
height: 100%;
margin: 0;
padding: 0;
}
.container {
height: 100%;
position: relative;
}
input {
font-size: 12px;
}
.btns{
display: flex;
margin: 10px 0;
}
.btns input {
width: 50%;
margin-left: 2px;
cursor: pointer;
padding: 8px;
background-color: #fff;
border: none;
border-radius: 2px;
}
h1 {
font-size: 22px;
margin: 0 0 10px 0;
text-align: center;
}
#map {
bottom: 0px;
height: 100%;
left: 0;
position: absolute;
right: 0px;
}
.options-box {
background: #333;
border: none;
border-radius: 3px;
height: 100%;
line-height: 35px;
padding: 10px 10px 30px 10px;
text-align: left;
color: #fff;
position: absolute;
top: 0;
left: 0;
bottom: 0;
z-index: 500;
display: none;
}
input[type="text"] {
width: 100%;
padding: 8px 0;
color: #333;
font-size: 16px;
background-color: #fff;
border: 1px solid #02B3E4;
border-radius: 4px;
}
#toggle {
position: absolute;
right: 10px;
top: 10px;
background-color: #fff;
color: #333;
border: none;
border-radius: 3px;
cursor: pointer;
padding: 8px 12px;
z-index: 500;
}