admin.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. *{margin:0;padding:0;}
  2. body{
  3. font-family:"Helvetica Neue",Helvetica, "microsoft yahei", arial, STHeiTi, sans-serif;
  4. }
  5. a{text-decoration: none}
  6. .wrapper{
  7. background: #2E363F;
  8. }
  9. .content{
  10. background: none repeat scroll 0 0 #f3f3f3;
  11. position: absolute;
  12. left: 220px;
  13. right: 0;
  14. top: 70px;
  15. bottom:0;
  16. width: auto;
  17. padding:30px;
  18. box-sizing: border-box;
  19. overflow-y: scroll;
  20. }
  21. .widget-box{
  22. max-width: 1200px;
  23. background: none repeat scroll 0 0 #F9F9F9;
  24. border-left: 1px solid #F0F8FF;
  25. border-top: 2px solid #27a9e3;
  26. border-right: 2px solid #cdcdcd;
  27. clear: both;
  28. margin:0 auto 30px;
  29. position: relative;
  30. }
  31. .widget-box:hover{
  32. box-shadow: 0 2px 7px rgba(0,0,0,.15);
  33. }
  34. .widget-title{
  35. background: #efefef;
  36. border-bottom: 1px solid #F0F8FF;
  37. height: 40px;
  38. }
  39. .widget-title h5 {
  40. color: #666;
  41. padding: 12px;
  42. margin: 0;
  43. font-weight: normal;
  44. }
  45. .widget-content {
  46. padding:25px;
  47. border-bottom: 2px solid #cdcdcd;
  48. }
  49. .widget-box .el-select,
  50. .widget-box .el-input,
  51. .widget-box .el-upload,
  52. .widget-box .el-tooltip{
  53. display: inline-block;
  54. }
  55. .el-button+.el-tooltip {
  56. margin-left: 10px;
  57. }
  58. .el-table td,.el-table th{
  59. padding:5px 18px;
  60. }
  61. .el-table tr:hover{
  62. background: #f6faff;
  63. }
  64. .page-box{
  65. margin-top: 20px;
  66. text-align: right;
  67. }
  68. .page-box .el-pagination{
  69. background: #f9f9f9;
  70. }
  71. .mgb20{
  72. margin-bottom: 15px;
  73. }
  74. .mgb5{
  75. margin-bottom: 5px;
  76. }
  77. .dialog{
  78. position: fixed;
  79. top: 0;
  80. right: 0;
  81. bottom: 0;
  82. left: 0;
  83. overflow: auto;
  84. background: rgba(0,0,0,.4);
  85. z-index:-1;
  86. opacity: 0;
  87. transition: all .5s ease;
  88. }
  89. .dialog.dialog-show{
  90. opacity: 1;
  91. z-index: 1000;
  92. }
  93. .dialog .dialog-wrapper{
  94. position: absolute;
  95. left: 50%;
  96. top: 15%;
  97. width: 50%;
  98. transform: translateX(-50%);
  99. background: #fff;
  100. border-radius: 2px;
  101. box-shadow: 0 1px 3px rgba(0,0,0,.3);
  102. box-sizing: border-box;
  103. transition: top .5s ease;
  104. }
  105. .dialog.dialog-show .dialog-wrapper{
  106. top: 17%;
  107. }
  108. .dialog .dialog-header{
  109. padding: 20px 20px 0;
  110. }
  111. .dialog .dialog-content{
  112. padding: 30px 20px;
  113. color: #475669;
  114. font-size: 14px;
  115. }
  116. .dialog .dialog-close{
  117. float: right;
  118. cursor: pointer;
  119. color: #c0ccda;
  120. }
  121. .dialog .dialog-close:hover{
  122. color: #20a0ff;
  123. animation: close-rotate .3s ease;
  124. }
  125. @keyframes close-rotate {
  126. from{
  127. transform: rotate(-360deg);
  128. }
  129. }
  130. .el-upload__files{
  131. display: none;
  132. }