index.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. .el-message {
  63. z-index: 300000000000 !important;
  64. }
  65. .el-dialog {
  66. background: transparent !important;
  67. background: url(/static/images/popup/background.png) no-repeat !important;
  68. background-size: 100% 100% !important;
  69. background-position: center !important;
  70. }
  71. .el-dialog__title,
  72. .el-form-item__label {
  73. color: white !important;
  74. }
  75. .el-dialog__header {
  76. background: url(/static/images/popup/title.png) no-repeat !important;
  77. background-size: 100% 100% !important;
  78. background-position: center !important;
  79. }
  80. .el-dialog__headerbtn .el-dialog__close {
  81. color: white !important;
  82. }