aboutsummaryrefslogtreecommitdiffstats
path: root/app/index.html
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-10-29 15:18:30 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-11-03 10:54:48 +0200
commitb03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17 (patch)
treeefc0ce6823ab8611d9c6a0bf27ecdbd124638b73 /app/index.html
downloadhousing-b03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17.tar.zst
Initial commit
Diffstat (limited to '')
-rw-r--r--app/index.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/app/index.html b/app/index.html
new file mode 100644
index 0000000..479eafa
--- /dev/null
+++ b/app/index.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="icon" href="favicon.svg" type="image/svg+xml">
+ <title>Search Engine - Helsinki</title>
+
+ <style>
+ /* Ensure the layout doesn't collapse on resize */
+ #app {
+ min-width: 1024px;
+ }
+
+ /* Improve scrollbar styling */
+ #house-list-container::-webkit-scrollbar,
+ #controls::-webkit-scrollbar {
+ width: 6px;
+ }
+
+ #house-list-container::-webkit-scrollbar-track,
+ #controls::-webkit-scrollbar-track {
+ background: #f1f1f1;
+ }
+
+ #house-list-container::-webkit-scrollbar-thumb,
+ #controls::-webkit-scrollbar-thumb {
+ background: #c1c1c1;
+ border-radius: 3px;
+ }
+
+ #house-list-container::-webkit-scrollbar-thumb:hover,
+ #controls::-webkit-scrollbar-thumb:hover {
+ background: #a8a8a8;
+ }
+
+ @font-face {
+ font-family: "Roboto Mono";
+ font-optical-sizing: auto;
+ font-style: normal;
+ font-weight: 100 700;
+ src: url("RobotoMono-VariableFont_wght.ttf") format("truetype");
+ }
+ </style>
+
+ <script type="importmap">
+ {
+ "imports": {
+ "dom": "./dom.js",
+ "geom": "./geometry.js",
+ "map": "./map.js",
+ "models": "./models.js",
+ "svg": "./svg.js"
+ }
+ }
+ </script>
+ </head>
+ <body>
+ <script type="module" src="main.js"></script>
+ </body>
+</html>