diff options
Diffstat (limited to '')
| -rw-r--r-- | app/index.html | 61 |
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> |
