| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!doctype html>
- <html lang="" class="dark">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width,initial-scale=1.0" />
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
- <title><%= htmlWebpackPlugin.options.title %></title>
- <link rel="stylesheet" href="/static/css/reset.css" />
- <script src="/static/config/config.js"></script>
- <script src="/static/plugins/Cesium/Cesium.js"></script>
- <link rel="stylesheet" href="/static/plugins/Cesium/Widgets/widgets.css" />
- <script src="/static/plugins/createAuth.js"></script>
- </head>
- <body>
- <noscript>
- <strong
- >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without
- JavaScript enabled. Please enable it to continue.</strong
- >
- </noscript>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- <style>
- @font-face {
- font-family: "din-bold";
- src: url("./static/font/DIN-Bold/din-bold-2.ttf") format("truetype");
- font-weight: normal;
- font-style: normal;
- }
- :root {
- /* 滚动条整体部分,必须要设置 */
- ::-webkit-scrollbar {
- width: 6px;
- height: 10px;
- overflow-y: overlay;
- }
- /* 滚动条里面轨道,能向上向下移动 */
- ::-webkit-scrollbar-track {
- background-color: transparent;
- }
- /* 滚动条里面轨道,能向上向下移动 */
- ::-webkit-scrollbar-track-piece {
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- display: none;
- border-radius: 6px;
- }
- /* 滚动条里面的小方块,能向上向下移动 */
- *:hover::-webkit-scrollbar-thumb {
- display: flex;
- background-color: rgb(163, 166, 173, 0.5);
- border-radius: 6px;
- }
- *:hover::-webkit-scrollbar-track-piece {
- background-color: rgb(209, 207, 207, 0);
- }
- }
- </style>
- </html>
|