Spaces:
Sleeping
Sleeping
File size: 1,077 Bytes
3a84963 |
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 |
/* Additional custom styles */
/* Make the map container responsive */
#map {
width: 100%;
border-radius: 4px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Style for the GeoJSON display */
#geojsonDisplay {
border-radius: 4px;
font-family: monospace;
font-size: 0.9rem;
}
/* Ensure file upload input has correct styling */
input[type="file"] {
cursor: pointer;
}
/* Add a subtle hover effect to the upload button */
.btn-primary:hover {
box-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
}
/* Ensure the footer stays at the bottom */
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
footer {
margin-top: auto;
}
/* Styling for the processing spinner and status message */
#processingStatus {
padding: 15px;
border-radius: 4px;
background-color: rgba(13, 110, 253, 0.1);
}
/* Pre tag for JSON display */
pre {
white-space: pre-wrap;
word-wrap: break-word;
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
#map {
height: 300px !important;
}
}
|