main.css 2.4 KB

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