index.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <link rel="icon" href="/favicon.ico"/>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  7. <title>功率预测系统</title>
  8. </head>
  9. <body>
  10. <div id="app"></div>
  11. <script type="module" src="/src/main.js"></script>
  12. </body>
  13. </html>
  14. <style>
  15. html, body {
  16. height: 100%;
  17. width: 100%;
  18. overflow: hidden;
  19. }
  20. #app {
  21. font-family: Avenir, Helvetica, Arial, sans-serif;
  22. -webkit-font-smoothing: antialiased;
  23. -moz-osx-font-smoothing: grayscale;
  24. /* text-align: center; */
  25. color: #2c3e50;
  26. /* margin-top: 60px; */
  27. height: inherit;
  28. overflow: hidden;
  29. }
  30. /* 谷歌美化滚动条 */
  31. *::-webkit-scrollbar {
  32. width: 6px;
  33. height: 10px;
  34. }
  35. /* 滚动条栏位背景色 */
  36. *::-webkit-scrollbar-track {
  37. background: f0f2f5;
  38. border-radius: 2px;
  39. }
  40. /* 滚动条颜色 */
  41. *::-webkit-scrollbar-thumb {
  42. /*background: rgb(166, 165, 231);*/
  43. background: #c8d2e0;
  44. /*border-radius: 10px;*/
  45. }
  46. *::-webkit-scrollbar-thumb:hover {
  47. background: #c8d2e0;
  48. }
  49. *::-webkit-scrollbar-corner {
  50. background: #c8d2e0;
  51. }
  52. </style>