index.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>BIM</title>
  5. <meta charset="utf-8" />
  6. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
  7. <link href="css/bimrocket.css" type="text/css" rel="stylesheet" />
  8. <link href="css/common.css" type="text/css" rel="stylesheet" />
  9. <link href="css/menu.css" type="text/css" rel="stylesheet" />
  10. <link href="css/panel.css" type="text/css" rel="stylesheet" />
  11. <link href="css/tabbedpane.css" type="text/css" rel="stylesheet" />
  12. <link href="css/toolbar.css" type="text/css" rel="stylesheet" />
  13. <link href="css/outliner.css" type="text/css" rel="stylesheet" />
  14. <link href="css/inspector.css" type="text/css" rel="stylesheet" />
  15. <link href="css/tree.css" type="text/css" rel="stylesheet" />
  16. <link href="css/bcfpanel.css" type="text/css" rel="stylesheet" />
  17. <link href="css/tools.css" type="text/css" rel="stylesheet" />
  18. <link href="css/progressbar.css" type="text/css" rel="stylesheet" />
  19. <link href="css/controllers.css" type="text/css" rel="stylesheet" />
  20. <link href="css/dialog.css" type="text/css" rel="stylesheet" />
  21. <link href="css/toast.css" type="text/css" rel="stylesheet" />
  22. <link href="css/ifc.css" type="text/css" rel="stylesheet" />
  23. <style>
  24. body {
  25. --menuitem-background1: #3c3c3c;
  26. --focused-menuitem-background: rgba(0, 200, 175, 0.16);
  27. }
  28. .logo_panel > img {
  29. width: 149px;
  30. }
  31. .progress_bar .bar {
  32. border: solid 1px #fff;
  33. }
  34. .progress_bar .bar .progress {
  35. background-color: #00c8af;
  36. }
  37. header nav {
  38. left: 0;
  39. background-color: var(--menuitem-background1);
  40. }
  41. nav a:hover,
  42. nav a:focus {
  43. color: #fff;
  44. }
  45. /* div.panel.left {
  46. display: none !important;
  47. } */
  48. </style>
  49. <script type="module">
  50. import { Application } from './js/ui/Application.js'
  51. window.app = new Application()
  52. app.loadModules('modules/base.js', 'modules/bim.js', 'modules/gis.js')
  53. </script>
  54. </head>
  55. <body></body>
  56. </html>