App.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. }
  10. </script>
  11. <style>
  12. body {
  13. overflow: auto;
  14. min-width: 1280px;
  15. font-size: 14px;
  16. }
  17. html, body, #app {
  18. height: 100%;
  19. }
  20. .el-table th.is-leaf {
  21. background: rgba(235,241,255);
  22. border-top: 1px solid #EBEEF5;
  23. }
  24. .el-table th.el-table__cell{
  25. background: rgba(235,241,255)!important;
  26. color: #333333!important;
  27. font-weight: normal!important;
  28. }
  29. .menu-content {
  30. margin: 25px;
  31. background: #FFFFFF;
  32. overflow: auto;
  33. position: absolute;
  34. left: 260px;
  35. top: 40px;
  36. bottom: 0;
  37. right: 0;
  38. padding: 25px;
  39. border-radius: 3px;
  40. }
  41. .page-box {
  42. text-align: center;
  43. margin-top: 20px;
  44. }
  45. .menu-content .el-table td, .menu-content .el-table th {
  46. padding: 10px 0;
  47. }
  48. .avatar-uploader .el-upload {
  49. border: 1px dashed #d9d9d9;
  50. border-radius: 6px;
  51. cursor: pointer;
  52. position: relative;
  53. overflow: hidden;
  54. }
  55. .avatar-uploader .el-upload:hover {
  56. border-color: #409EFF;
  57. }
  58. .avatar-uploader-icon {
  59. font-size: 28px;
  60. color: #8c939d;
  61. width: 178px;
  62. height: 178px;
  63. line-height: 178px;
  64. text-align: center;
  65. }
  66. .avatar {
  67. width: 178px;
  68. height: 178px;
  69. display: block;
  70. }
  71. .login-input .el-input__inner{
  72. height: 60px!important;
  73. line-height: 60px!important;
  74. border-radius: 10px!important;
  75. font-size: 16px!important;
  76. padding: 0px 30px 0 60px!important;
  77. }
  78. .el-tag {
  79. margin-left: 5px!important;
  80. margin-bottom: 5px!important;
  81. }
  82. .login-input i{
  83. font-size: 30px!important;
  84. line-height: 60px!important;
  85. margin-left: 15px!important;
  86. }
  87. .login-button{
  88. height: 50px!important;
  89. border-radius: 10px!important;
  90. //background: rgba(16,108,255, 1);
  91. border: none;
  92. font-size: 16px!important;
  93. letter-spacing:5px!important;
  94. margin-bottom: 20px;
  95. }
  96. /*滚动条样式*/
  97. ::-webkit-scrollbar {/*滚动条整体样式*/
  98. width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
  99. height: 1px;
  100. }
  101. ::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  102. border-radius: 5px;
  103. -webkit-box-shadow: inset 0 0 5px #d9d9d9;
  104. background: #d9d9d9;
  105. }
  106. ::-webkit-scrollbar-track { /*滚动条里面轨道*/
  107. -webkit-box-shadow: inset 0 0 5px #ffffff;
  108. border-radius: 0;
  109. background: #ffffff;
  110. }
  111. .el-dialog__header{
  112. background: cornflowerblue;
  113. padding-bottom:15px!important;
  114. padding-top: 15px!important;
  115. }
  116. .el-dialog__title{
  117. color: #ffffff!important;
  118. }
  119. .el-dialog__headerbtn .el-dialog__close{
  120. color: #ffffff!important;
  121. }
  122. .el-dialog__body{
  123. padding-bottom:20px!important;
  124. }
  125. .content-box .el-input__inner{
  126. height: 33px!important;
  127. line-height: 33px!important;
  128. }
  129. .content-box .el-button--primary,.content-box .el-button--default{
  130. padding: 9px 15px!important;
  131. font-size: 12px!important;
  132. }
  133. </style>