main.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,
  6. body,
  7. #app,
  8. .wrapper {
  9. width: 100%;
  10. height: 100%;
  11. background-color: #000000;
  12. overflow: hidden;
  13. font-family: "Microsoft YaHei";
  14. }
  15. .el-popover{
  16. background-color: rgb(36,36,36) !important;
  17. border-color: rgb(36,36,36) !important;
  18. }
  19. .el-table{
  20. border-color: rgb(36,36,36) !important;
  21. }
  22. .el-table__row>td{
  23. border-color: rgb(36,36,36) !important;
  24. }
  25. .el-table::before {
  26. height: 0px !important;
  27. }
  28. .el-table::after {
  29. height: 0px !important;
  30. }
  31. .el-dialog{
  32. background-color: rgb(36,36,36) !important;
  33. }
  34. .el-form-item__label{
  35. color: rgb(220, 220, 220) !important;
  36. }
  37. .el-dialog__title{
  38. color: rgb(220, 220, 220) !important;
  39. }
  40. .el-input__inner{
  41. background-color: rgb(100,100,100) !important;
  42. color: rgb(220, 220, 220) !important;
  43. }
  44. .el-tabs{
  45. background-color: black !important;
  46. border: none !important;
  47. color: rgb(220,220,220) !important;
  48. }
  49. .el-tabs__item{
  50. background-color: #363636 !important;
  51. color: rgb(220,220,220) !important;
  52. border-color: black !important;
  53. }
  54. .el-tabs__item:hover{
  55. background-color: rgb(29,106,235) !important;
  56. }
  57. .el-tabs__item.is-active{
  58. background-color: black !important;
  59. border-color: black !important;
  60. }