main.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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: 200px;
  22. right: 0;
  23. top: 60px;
  24. bottom: 0;
  25. padding-bottom: 30px;
  26. -webkit-transition: left .3s ease-in-out;
  27. transition: left .3s ease-in-out;
  28. background: #f0f0f0;
  29. }
  30. .content {
  31. width: auto;
  32. height: 100%;
  33. padding: 10px;
  34. overflow-y: scroll;
  35. box-sizing: border-box;
  36. }
  37. .content-collapse {
  38. left: 65px;
  39. }
  40. .container {
  41. padding: 30px;
  42. background: #fff;
  43. border: 1px solid #ddd;
  44. border-radius: 5px;
  45. }
  46. .crumbs {
  47. margin: 10px 0;
  48. }
  49. .el-table th {
  50. background-color: #f5f7fa !important;
  51. }
  52. .pagination {
  53. margin: 20px 0;
  54. text-align: right;
  55. }
  56. .plugins-tips {
  57. padding: 20px 10px;
  58. margin-bottom: 20px;
  59. }
  60. .el-button+.el-tooltip {
  61. margin-left: 10px;
  62. }
  63. .el-table tr:hover {
  64. background: #f6faff;
  65. }
  66. .mgb20 {
  67. margin-bottom: 20px;
  68. }
  69. .move-enter-active,
  70. .move-leave-active {
  71. transition: opacity .5s;
  72. }
  73. .move-enter,
  74. .move-leave {
  75. opacity: 0;
  76. }
  77. /*BaseForm*/
  78. .form-box {
  79. width: 600px;
  80. }
  81. .form-box .line {
  82. text-align: center;
  83. }
  84. .el-time-panel__content::after,
  85. .el-time-panel__content::before {
  86. margin-top: -7px;
  87. }
  88. .el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) {
  89. padding-bottom: 0;
  90. }
  91. /*Upload*/
  92. .pure-button {
  93. width: 150px;
  94. height: 40px;
  95. line-height: 40px;
  96. text-align: center;
  97. color: #fff;
  98. border-radius: 3px;
  99. }
  100. .g-core-image-corp-container .info-aside {
  101. height: 45px;
  102. }
  103. .el-upload--text {
  104. background-color: #fff;
  105. border: 1px dashed #d9d9d9;
  106. border-radius: 6px;
  107. box-sizing: border-box;
  108. width: 360px;
  109. height: 180px;
  110. text-align: center;
  111. cursor: pointer;
  112. position: relative;
  113. overflow: hidden;
  114. }
  115. .el-upload--text .el-icon-upload {
  116. font-size: 67px;
  117. color: #97a8be;
  118. margin: 40px 0 16px;
  119. line-height: 50px;
  120. }
  121. .el-upload--text {
  122. color: #97a8be;
  123. font-size: 14px;
  124. text-align: center;
  125. }
  126. .el-upload--text em {
  127. font-style: normal;
  128. }
  129. /*VueEditor*/
  130. .ql-container {
  131. min-height: 400px;
  132. }
  133. .ql-snow .ql-tooltip {
  134. transform: translateX(117.5px) translateY(10px) !important;
  135. }
  136. .editor-btn {
  137. margin-top: 20px;
  138. }
  139. /*markdown*/
  140. .v-note-wrapper .v-note-panel {
  141. min-height: 500px;
  142. }