Initial commit

This commit is contained in:
Ben
2023-05-03 22:06:25 +02:00
commit bb26e95742
109 changed files with 52505 additions and 0 deletions

39
css/leaflet.photon.css Normal file
View File

@@ -0,0 +1,39 @@
ul.photon-autocomplete {
position: absolute;
background-color: white;
z-index: 1000;
box-shadow: 0 4px 9px #999999;
display: none;
}
.photon-autocomplete li {
min-height: 40px;
line-height: 1em;
padding: 5px 10px;
overflow: hidden;
white-space: nowrap;
font-size: 1em;
}
.photon-autocomplete li strong {
display: block;
}
.photon-autocomplete li.on {
background-color: #2980b9;
cursor: pointer;
}
.photon-autocomplete li.photon-no-result {
text-align: center;
color: #666;
font-size: 0.9em;
line-height: 40px;
}
.photon-autocomplete .photon-feedback {
display: block;
text-align: right;
font-size: 0.8em;
padding: 3px;
color: #999;
border-top: 1px solid #eee;
}
.photon-input:focus {
width: 400px;
}