view web/index.html @ 2405:69ca2b2fc133

overcomplicated attempt at persisting the pane layout in the rdf graph this was hard because we have to somehow wait for the graph to load before config'ing the panes
author drewp@bigasterisk.com
date Fri, 17 May 2024 16:58:26 -0700
parents 1d3594ffd14b
children
line wrap: on
line source

<!DOCTYPE html>
<html>
  <head>
    <title>light9 home</title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="style.css" />
    <link rel="stylesheet" href="flexlayout-react/style/dark.css" />
    <script type="module" src="TiledHome"></script>
  </head>
  <body>
    <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">loading layout...</div>
    <div id="footer"><light9-home-status></light9-home-status> </div>
  </body>
</html>