main.css 2.4 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: 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. /*Upload*/
  86. .pure-button {
  87. width: 150px;
  88. height: 40px;
  89. line-height: 40px;
  90. text-align: center;
  91. color: #fff;
  92. border-radius: 3px;
  93. }
  94. .g-core-image-corp-container .info-aside {
  95. height: 45px;
  96. }
  97. .el-upload--text {
  98. background-color: #fff;
  99. border: 1px dashed #d9d9d9;
  100. border-radius: 6px;
  101. box-sizing: border-box;
  102. width: 360px;
  103. height: 180px;
  104. text-align: center;
  105. cursor: pointer;
  106. position: relative;
  107. overflow: hidden;
  108. }
  109. .el-upload--text .el-icon-upload {
  110. font-size: 67px;
  111. color: #97a8be;
  112. margin: 40px 0 16px;
  113. line-height: 50px;
  114. }
  115. .el-upload--text {
  116. color: #97a8be;
  117. font-size: 14px;
  118. text-align: center;
  119. }
  120. .el-upload--text em {
  121. font-style: normal;
  122. }
  123. /*VueEditor*/
  124. .ql-container {
  125. min-height: 400px;
  126. }
  127. .ql-snow .ql-tooltip {
  128. transform: translateX(117.5px) translateY(10px) !important;
  129. }
  130. .editor-btn {
  131. margin-top: 20px;
  132. }
  133. /*markdown*/
  134. .v-note-wrapper .v-note-panel {
  135. min-height: 500px;
  136. }