zidian.css 1.1 KB

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