| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE html>
- <html lang="">
- <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">
- <!-- <meta name="apple-mobile-web-app-capable" content="yes"> -->
- <!-- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> -->
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title><%= htmlWebpackPlugin.options.title %></title>
- <script src="./static/config/config.js"></script>
- <link href="./static/plugins/mapbox-v3.20.0/mapbox-gl.css" rel="stylesheet">
- <script src="./static/plugins/mapbox-v3.20.0/mapbox-gl.js"></script>
- <script src="./static/plugins/mapbox-v3.20.0/mapbox-gl-export.js"></script>
- <script src="./static/plugins/turf.min.js"></script>
- <script src="./static/plugins/jquery/jquery.js"></script>
- <script src="/static/plugins/createAuth.js"></script>
- <script src="/static/plugins/mapDraw.min.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>
- /* 全局或局部覆盖,优先级要高 */
- .ace_editor,
- .ace_editor * {
- font-family: "Monaco", "Menlo", "Consolas", "Ubuntu Mono", "Droid Sans Mono", monospace !important;
- font-size: 14px !important; /* 固定字号避免计算异常 */
- line-height: 1.5 !important;
- }
- :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: rgba(75, 75, 77, 0.5);
- border-radius: 6px;
- }
- *:hover::-webkit-scrollbar-track-piece {
- background-color: rgba(209, 207, 207, 0.1);
- }
- }
- </style>
- </html>
|