27 lines
324 B
CSS
27 lines
324 B
CSS
/* Pupmap style.css */
|
|
|
|
body, html {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
#map {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#searchBox {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
z-index: 999;
|
|
width: 220px;
|
|
padding: 6px;
|
|
border-radius: 4px;
|
|
border: 1px solid #ccc;
|
|
background: #fff;
|
|
font-size: 14px;
|
|
}
|
|
|