changeset 2396:8e0ae92d918d

metrics link on home
author drewp@bigasterisk.com
date Thu, 16 May 2024 16:12:28 -0700
parents ef3cde3e81e8
children 6f023afd6c16
files web/index.html
diffstat 1 files changed, 16 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/web/index.html	Thu May 16 15:03:50 2024 -0700
+++ b/web/index.html	Thu May 16 16:12:28 2024 -0700
@@ -8,6 +8,21 @@
     <script type="module" src="TiledHome.ts"></script>
   </head>
   <body>
-    <div id="container"></div>
+    <style>
+      #footer {
+        position: fixed; /* todo: this shouldn't overlap the layout, but getting the layout smaller was Hard */
+        left: 5px;
+        bottom: 0px;
+        right: 5px;
+        height: 2em;
+
+        background-color: rgb(211 211 255 / 96%);
+        box-shadow: black 0px -7px 9px 0px;
+      }
+    </style>
+    <div id="container">hello</div>
+    <div id="footer">
+      <a href="metrics/">metrics</a>
+    </div>
   </body>
 </html>