zidian.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. body {
  2. margin: 0;
  3. height: 100%;
  4. background-color: #fff;
  5. /* overflow-y: hidden; */
  6. }
  7. html {
  8. height: 92%;
  9. }
  10. .header {
  11. padding: 18px 18px 18px 0px;
  12. border-bottom: 1px solid #f2f6fa;
  13. }
  14. #text {
  15. padding-left: 18px;
  16. border-left: 2px solid #2eaafa;
  17. }
  18. #close {
  19. position: absolute;
  20. right: 50px;
  21. font-size: 20px;
  22. top: 18px;
  23. cursor: pointer;
  24. }
  25. #app {
  26. margin: 0;
  27. padding: 0;
  28. height: 100%;
  29. }
  30. .el-menu {
  31. width: 200px;
  32. font-size: 15px;
  33. /* background-color: #f2f6fa; */
  34. }
  35. .el-menu-item {
  36. font-size: 15px;
  37. background-color: #f2f6fa;
  38. }
  39. .el-aside {
  40. overflow: hidden;
  41. background-color: #f2f6fa;
  42. }
  43. aside {
  44. background-color: #f2f6fa;
  45. }
  46. .el-input {
  47. width: 60%;
  48. margin: 10px;
  49. }
  50. .flex {
  51. display: flex;
  52. flex-direction: row;
  53. align-items: center;
  54. justify-content: space-between;
  55. }
  56. #searchtext {
  57. width: 40%;
  58. text-align: right;
  59. }
  60. .el-main {
  61. padding: 0;
  62. padding-right: 20px;
  63. position: relative;
  64. }
  65. .el-table th {
  66. background-color: #f8f8f8;
  67. }
  68. .el-pagination__jump {
  69. position: relative;
  70. top: -9px;
  71. }
  72. .el-pagination {
  73. text-align: right;
  74. }
  75. .el-pagination__total {
  76. position: absolute;
  77. left: 30px;
  78. }
  79. .el-icon-search{
  80. position: absolute;
  81. right:40px;
  82. cursor: pointer;
  83. }