add.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #app{
  2. position: absolute;
  3. left: 10px;
  4. right: 10px;
  5. top: 10px;
  6. bottom: 10px;
  7. padding: 10px 20px;
  8. }
  9. .boxContent{
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .headBox{
  14. position: relative;
  15. margin: 0px 10px;
  16. }
  17. .headBox .ivu-menu-horizontal{
  18. height: 50px;
  19. line-height: 50px;
  20. }
  21. .headBox .buttonBox{
  22. display: flex;
  23. position: absolute;
  24. right: 10px;
  25. top: 0px;
  26. height: 50px;
  27. z-index: 999;
  28. align-items: center;
  29. }
  30. .formBox{
  31. width: 96%;
  32. overflow: hidden;
  33. margin: 0px auto;
  34. padding: 15px 0px 0px 0px;
  35. }
  36. .titleBox{
  37. width: 100%;
  38. height: 35px;
  39. line-height: 35px;
  40. background-color: #F2F2F2;
  41. text-indent: 15px;
  42. font-weight: bold;
  43. }
  44. .formItem{
  45. width: 40%;
  46. margin:12px 4.5%;
  47. }
  48. .formItemFull{
  49. width: 85.5%;
  50. margin:12px 4.5%;
  51. }
  52. body em{
  53. color: #333333;
  54. }
  55. .tableContent{
  56. width: 80%;
  57. margin: 15px 10%;
  58. }
  59. body .ivu-table-tip{
  60. overflow-x: hidden;
  61. overflow-y: hidden;
  62. }
  63. .addChildBtn{
  64. display:inline-block;
  65. margin-left:10px;
  66. text-indent: 0px;
  67. color: #ed4014;
  68. cursor: pointer;
  69. }
  70. .vertical-center-modal {
  71. display: flex;
  72. align-items: center;
  73. justify-content: center;
  74. }
  75. .ivu-modal {
  76. top: 0;
  77. }
  78. .modalItem{
  79. width: 80%;
  80. margin: 15px 10%;
  81. }
  82. .contentBox{
  83. overflow: auto;
  84. }
  85. .contentBox::-webkit-scrollbar {
  86. width: 6px;
  87. background-color: #F5F5F5;
  88. }
  89. .contentBox::-webkit-scrollbar-thumb {
  90. background-color: #dddddd;
  91. }
  92. .contentBox::-webkit-scrollbar-track {
  93. background-color: #ffffff;
  94. }