anji.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .anji-card {
  2. margin-bottom: 5px;
  3. box-sizing: border-box;
  4. padding: 0;
  5. color: rgba(0, 0, 0, 0.65);
  6. font-size: 14px;
  7. font-variant: tabular-nums;
  8. line-height: 1.5;
  9. list-style: none;
  10. font-feature-settings: "tnum";
  11. position: relative;
  12. background: #fff;
  13. border-radius: 2px;
  14. transition: all 0.3s;
  15. .card-head {
  16. display: flex;
  17. align-items: center;
  18. box-sizing: border-box;
  19. min-height: 35px;
  20. padding: 0 24px;
  21. color: rgba(0, 0, 0, 0.85);
  22. font-weight: 500;
  23. font-size: 16px;
  24. background: transparent;
  25. border-bottom: 1px solid #e8e8e8;
  26. border-radius: 2px 2px 0 0;
  27. zoom: 1;
  28. .main-card-header-button {
  29. position: absolute;
  30. right: 20px;
  31. }
  32. }
  33. .card-body {
  34. padding: 24px;
  35. zoom: 1;
  36. }
  37. }
  38. .el-form-item .el-form-item__label {
  39. line-height: 28px;
  40. }
  41. .el-form-item__content {
  42. line-height: 28px;
  43. }
  44. .el-input__icon {
  45. line-height: 28px;
  46. }
  47. .el-input--suffix .el-input__inner {
  48. height: 28px;
  49. line-height: 28px;
  50. }
  51. .el-input .el-input__inner {
  52. height: 28px;
  53. line-height: 28px;
  54. }
  55. .el-button {
  56. padding: 7px 15px;
  57. font-size: 12px;
  58. border-radius: 3px;
  59. }
  60. .el-dropdown-menu__item {
  61. min-width: 80px;
  62. max-width: 110px;
  63. .el-button--text {
  64. margin-left: 0;
  65. }
  66. }
  67. .el-dropdown-menu__item:focus,
  68. .el-dropdown-menu__item:not(.is-disabled):hover {
  69. background: none !important;
  70. }
  71. .el-table td {
  72. padding: 6px 0;
  73. }
  74. @keyframes turn {
  75. 0% {
  76. -webkit-transform: rotate(0deg);
  77. }
  78. 25% {
  79. -webkit-transform: rotate(90deg);
  80. }
  81. 50% {
  82. -webkit-transform: rotate(180deg);
  83. }
  84. 75% {
  85. -webkit-transform: rotate(270deg);
  86. }
  87. 100% {
  88. -webkit-transform: rotate(360deg);
  89. }
  90. }