main.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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. [class*=" el-icon-lx"], [class^=el-icon-lx] {
  20. font-family: lx-iconfont!important;
  21. }
  22. .content-box {
  23. position: absolute;
  24. left: 250px;
  25. right: 0;
  26. top: 70px;
  27. bottom: 0;
  28. -webkit-transition: left .3s ease-in-out;
  29. transition: left .3s ease-in-out;
  30. background: #f0f0f0;
  31. }
  32. .content {
  33. width: auto;
  34. height: 100%;
  35. padding: 10px;
  36. overflow-y: scroll;
  37. box-sizing: border-box;
  38. }
  39. .content-collapse {
  40. left: 65px;
  41. }
  42. .container {
  43. padding: 30px;
  44. background: #fff;
  45. border: 1px solid #ddd;
  46. border-radius: 5px;
  47. }
  48. .crumbs {
  49. margin: 10px 0;
  50. }
  51. .pagination {
  52. margin: 20px 0;
  53. text-align: right;
  54. }
  55. .plugins-tips {
  56. padding: 20px 10px;
  57. margin-bottom: 20px;
  58. }
  59. .el-button+.el-tooltip {
  60. margin-left: 10px;
  61. }
  62. .el-table tr:hover {
  63. background: #f6faff;
  64. }
  65. .mgb20 {
  66. margin-bottom: 20px;
  67. }
  68. .move-enter-active,
  69. .move-leave-active {
  70. transition: opacity .5s;
  71. }
  72. .move-enter,
  73. .move-leave {
  74. opacity: 0;
  75. }
  76. /*BaseForm*/
  77. .form-box {
  78. width: 600px;
  79. }
  80. .form-box .line {
  81. text-align: center;
  82. }
  83. .el-time-panel__content::after,
  84. .el-time-panel__content::before {
  85. margin-top: -7px;
  86. }
  87. .el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) {
  88. padding-bottom: 0;
  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. }