index.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. display: none;
  26. }
  27. /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
  28. body::-webkit-scrollbar {
  29. width: 10px;
  30. height: 10px;
  31. }
  32. /* 滚动条里面小方块 */
  33. body::-webkit-scrollbar-thumb {
  34. border-radius: 10px;
  35. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  36. background: rgba(85, 229, 38, 0.71);
  37. }
  38. /* 滚动条里面轨道 */
  39. body::-webkit-scrollbar-track {
  40. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  41. border-radius: 10px;
  42. background: #2a4fd1b3;
  43. }
  44. /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
  45. div::-webkit-scrollbar {
  46. width: 10px;
  47. height: 10px;
  48. }
  49. /* 滚动条里面小方块 */
  50. div::-webkit-scrollbar-thumb {
  51. border-radius: 10px;
  52. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  53. background: rgba(85, 229, 38, 0.71);
  54. }
  55. /* 滚动条里面轨道 */
  56. div::-webkit-scrollbar-track {
  57. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  58. border-radius: 10px;
  59. background: #2a4fd1b3;
  60. }
  61. .messageIndex {
  62. z-index: 300000000 !important;
  63. }