index.html 970 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  6. <title>pbl</title>
  7. <!-- <link rel="shortcut icon" type="image/x-icon" href="static/logo.ico"> -->
  8. <style>
  9. @charset "utf-8";
  10. div::-webkit-scrollbar {
  11. /*滚动条整体样式*/
  12. width: 6px;
  13. /*高宽分别对应横竖滚动条的尺寸*/
  14. height: 6px;
  15. }
  16. /*定义滚动条轨道 内阴影+圆角*/
  17. div::-webkit-scrollbar-track {
  18. border-radius: 10px;
  19. background-color: rgba(0, 0, 0, 0.1);
  20. }
  21. /*定义滑块 内阴影+圆角*/
  22. div::-webkit-scrollbar-thumb {
  23. border-radius: 10px;
  24. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  25. background-color: rgba(0, 0, 0, 0.1);
  26. }
  27. html,
  28. body {
  29. height: 100%;
  30. width: 100%;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div id="app"></div>
  36. <!-- built files will be auto injected -->
  37. </body>
  38. </html>