main.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. outline: 0 !important;
  5. }
  6. body {
  7. font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif;
  8. }
  9. a {
  10. text-decoration: none;
  11. }
  12. i {
  13. font-style: normal;
  14. }
  15. .container {
  16. padding: 30px;
  17. background: #fff;
  18. border: 1px solid #ddd;
  19. border-radius: 5px;
  20. }
  21. .el-table th {
  22. background-color: #f5f7fa !important;
  23. }
  24. .plugins-tips {
  25. padding: 20px 10px;
  26. margin-bottom: 20px;
  27. background: #eef1f6;
  28. }
  29. .plugins-tips a {
  30. color: var(--el-color-primary);
  31. }
  32. .el-button + .el-tooltip {
  33. margin-left: 10px;
  34. }
  35. .mgb20 {
  36. margin-bottom: 20px;
  37. }
  38. .mgb10 {
  39. margin-bottom: 10px;
  40. }
  41. .mr10 {
  42. margin-right: 10px;
  43. }
  44. .move-enter-active,
  45. .move-leave-active {
  46. transition: opacity 0.1s ease;
  47. }
  48. .move-enter-from,
  49. .move-leave-to {
  50. opacity: 0;
  51. }
  52. .el-time-panel__content::after,
  53. .el-time-panel__content::before {
  54. margin-top: -7px;
  55. }
  56. .el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) {
  57. padding-bottom: 0;
  58. }
  59. [hidden] {
  60. display: none !important;
  61. }
  62. .flex-center {
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. }
  67. :root {
  68. --header-bg-color: #242f42;
  69. --header-text-color: #fff;
  70. --active-color: var(--el-color-primary);
  71. }