index.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .drawCur {
  2. cursor: url(../../static/images/cur/draw.cur), auto;
  3. }
  4. .measureCur {
  5. cursor: url(../../static/images/cur/measure.cur), auto;
  6. }
  7. html,
  8. body {
  9. background-color: black;
  10. width: 100%;
  11. height: 100%;
  12. margin: 0;
  13. padding: 0;
  14. overflow: hidden;
  15. color: #eee;
  16. }
  17. #loadingbar {
  18. bottom: 0;
  19. left: 0;
  20. margin: auto;
  21. position: absolute;
  22. right: 0;
  23. top: 0;
  24. z-index: 999999;
  25. }
  26. /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
  27. body::-webkit-scrollbar {
  28. width: 10px;
  29. height: 10px;
  30. }
  31. /* 滚动条里面小方块 */
  32. body::-webkit-scrollbar-thumb {
  33. border-radius: 10px;
  34. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  35. background: rgba(85, 229, 38, 0.71);
  36. }
  37. /* 滚动条里面轨道 */
  38. body::-webkit-scrollbar-track {
  39. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  40. border-radius: 10px;
  41. background: #2a4fd1b3;
  42. }
  43. /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
  44. div::-webkit-scrollbar {
  45. width: 10px;
  46. height: 10px;
  47. }
  48. /* 滚动条里面小方块 */
  49. div::-webkit-scrollbar-thumb {
  50. border-radius: 10px;
  51. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  52. background: rgba(85, 229, 38, 0.71);
  53. }
  54. /* 滚动条里面轨道 */
  55. div::-webkit-scrollbar-track {
  56. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  57. border-radius: 10px;
  58. background: #2a4fd1b3;
  59. }