main.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,
  6. body,
  7. #app,
  8. .wrapper {
  9. width: 100%;
  10. height: 100%;
  11. overflow: hidden;
  12. }
  13. body {
  14. font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif;
  15. }
  16. a {
  17. text-decoration: none;
  18. }
  19. .content-box {
  20. position: absolute;
  21. left: 250px;
  22. right: 0;
  23. top: 55px;
  24. bottom: 0;
  25. padding-bottom: 30px;
  26. -webkit-transition: left 0.3s ease-in-out;
  27. transition: left 0.3s ease-in-out;
  28. background: #f0f0f0;
  29. }
  30. .content {
  31. width: auto;
  32. height: 100%;
  33. padding: 5px;
  34. overflow-y: auto;
  35. overflow-x: hidden;
  36. box-sizing: border-box;
  37. }
  38. .content-collapse {
  39. left: 65px;
  40. }
  41. .container {
  42. padding: 10px;
  43. background: #fff;
  44. border: 1px solid #ddd;
  45. border-radius: 5px;
  46. }
  47. .crumbs {
  48. margin: 10px 0;
  49. }
  50. .el-table th {
  51. background-color: #f5f7fa !important;
  52. }
  53. .pagination {
  54. margin: 20px 0;
  55. text-align: right;
  56. }
  57. .plugins-tips {
  58. padding: 20px 10px;
  59. margin-bottom: 20px;
  60. }
  61. .el-button+.el-tooltip {
  62. margin-left: 10px;
  63. }
  64. .el-table tr:hover {
  65. background: #f6faff;
  66. }
  67. .mgb20 {
  68. margin-bottom: 20px;
  69. }
  70. .move-enter-active,
  71. .move-leave-active {
  72. transition: opacity 0.1s ease;
  73. }
  74. .move-enter-from,
  75. .move-leave-to {
  76. opacity: 0;
  77. }
  78. /*BaseForm*/
  79. .form-box {
  80. width: 600px;
  81. }
  82. .form-box .line {
  83. text-align: center;
  84. }
  85. .el-time-panel__content::after,
  86. .el-time-panel__content::before {
  87. margin-top: -7px;
  88. }
  89. .el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) {
  90. padding-bottom: 0;
  91. }
  92. /*Upload*/
  93. .pure-button {
  94. width: 150px;
  95. height: 40px;
  96. line-height: 40px;
  97. text-align: center;
  98. color: #fff;
  99. border-radius: 3px;
  100. }
  101. .g-core-image-corp-container .info-aside {
  102. height: 45px;
  103. }
  104. /*VueEditor*/
  105. .ql-container {
  106. min-height: 400px;
  107. }
  108. .ql-snow .ql-tooltip {
  109. transform: translateX(117.5px) translateY(10px) !important;
  110. }
  111. .editor-btn {
  112. margin-top: 20px;
  113. }
  114. /*markdown*/
  115. .v-note-wrapper .v-note-panel {
  116. min-height: 500px;
  117. }
  118. /* //滚动条的宽度 */
  119. ::-webkit-scrollbar {
  120. width: 6px;
  121. height: 6px;
  122. background-color: #e4e4e4;
  123. border-radius: 6px;
  124. }
  125. /* //滚动条的滑块 */
  126. ::-webkit-scrollbar-thumb {
  127. background-color: #a9aaad;
  128. border-radius: 6px;
  129. }