initial commit

This commit is contained in:
2026-02-06 15:16:56 +09:00
parent 1c72c185ab
commit b38090a31a
5 changed files with 2836 additions and 51 deletions

38
index.css Normal file
View File

@@ -0,0 +1,38 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #f8fafc;
}
.leaflet-container {
width: 100%;
height: 100%;
z-index: 1;
background: #ebe7e3;
}
.custom-marker {
background: none;
border: none;
}
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #e2e8f0;
border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #cbd5e1;
}