main.css 2.4 KB

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