main.css 2.5 KB

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