base.css 985 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. body.cp {
  2. color: #1e375a;
  3. height: 100%;
  4. overflow: hidden;
  5. position: relative;
  6. width: 100%;
  7. }
  8. body.cp header {
  9. background-color: #1e375a;
  10. box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
  11. color: #fff;
  12. height: 56px;
  13. left: 0;
  14. position: fixed;
  15. right: 0;
  16. top: 0;
  17. z-index: 3;
  18. }
  19. body.cp .wrap {
  20. align-items: stretch;
  21. display: block;
  22. height: 100%;
  23. width: 100%;
  24. }
  25. body.cp .wrap .sidebar,
  26. body.cp .wrap .content {
  27. box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
  28. height: 100%;
  29. padding-top: 56px;
  30. position: relative;
  31. vertical-align: top;
  32. z-index: 2;
  33. }
  34. body.cp .wrap .content {
  35. z-index: 1;
  36. }
  37. body.cp .wrap .sidebar {
  38. background: #eee;
  39. float: left;
  40. width: 250px;
  41. }
  42. body.cp .wrap .sidebar.left {
  43. float: left;
  44. }
  45. body.cp .wrap .sidebar.right {
  46. float: right;
  47. }
  48. body.cp .wrap .sidebar .scroll,
  49. body.cp .wrap .content .scroll {
  50. height: 100%;
  51. overflow: hidden;
  52. overflow-y: auto;
  53. }
  54. body.cp .wrap .sidebar .scroll .padding,
  55. body.cp .wrap .content .scroll .padding {
  56. padding: 16px;
  57. }