index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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/logo1.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. /* @font-face {
  28. font-family: 'Source Han Sans SC';
  29. src: url('./static/SourceHanSans-Regular.otf') format('truetype');
  30. font-weight: normal;
  31. font-style: normal;
  32. }
  33. */
  34. html,
  35. body {
  36. height: 100%;
  37. width: 100%;
  38. background: #e6eaf0;
  39. font-family: '黑体';
  40. /* font-family: 'Source Han Sans SC', sans-serif; */
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div id="app"></div>
  46. <!-- built files will be auto injected -->
  47. </body>
  48. </html>
  49. <script>
  50. document.domain = document.domain.split(".").slice(-2).join(".");
  51. </script>