index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. html,
  34. body {
  35. height: 100%;
  36. width: 100%;
  37. background: #e6eaf0;
  38. font-family: 'Source Han Sans SC', sans-serif;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <div id="app"></div>
  44. <!-- built files will be auto injected -->
  45. </body>
  46. </html>
  47. <script>
  48. document.domain = document.domain.split(".").slice(-2).join(".");
  49. </script>