123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>BIM</title>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
- <link href="css/bimrocket.css" type="text/css" rel="stylesheet" />
- <link href="css/common.css" type="text/css" rel="stylesheet" />
- <link href="css/menu.css" type="text/css" rel="stylesheet" />
- <link href="css/panel.css" type="text/css" rel="stylesheet" />
- <link href="css/tabbedpane.css" type="text/css" rel="stylesheet" />
- <link href="css/toolbar.css" type="text/css" rel="stylesheet" />
- <link href="css/outliner.css" type="text/css" rel="stylesheet" />
- <link href="css/inspector.css" type="text/css" rel="stylesheet" />
- <link href="css/tree.css" type="text/css" rel="stylesheet" />
- <link href="css/bcfpanel.css" type="text/css" rel="stylesheet" />
- <link href="css/tools.css" type="text/css" rel="stylesheet" />
- <link href="css/progressbar.css" type="text/css" rel="stylesheet" />
- <link href="css/controllers.css" type="text/css" rel="stylesheet" />
- <link href="css/dialog.css" type="text/css" rel="stylesheet" />
- <link href="css/toast.css" type="text/css" rel="stylesheet" />
- <link href="css/ifc.css" type="text/css" rel="stylesheet" />
- <style>
- body {
- --menuitem-background1: #3c3c3c;
- --focused-menuitem-background: rgba(0, 200, 175, 0.16);
- }
- .logo_panel > img {
- width: 149px;
- }
- .progress_bar .bar {
- border: solid 1px #fff;
- }
- .progress_bar .bar .progress {
- background-color: #00c8af;
- }
- header nav {
- left: 0;
- background-color: var(--menuitem-background1);
- }
- nav a:hover,
- nav a:focus {
- color: #fff;
- }
- /* div.panel.left {
- display: none !important;
- } */
- </style>
- <script type="module">
- import { Application } from './js/ui/Application.js'
-
- window.app = new Application()
- app.loadModules('modules/base.js', 'modules/bim.js', 'modules/gis.js')
- </script>
- </head>
- <body></body>
-
- </html>
|