CustomTable.css 626 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .custom_table tbody:before {
  2. line-height:5em;
  3. content:"\200C";
  4. display:block;
  5. box-sizing: border-box;
  6. }
  7. .header {
  8. border: 1px solid #eee;
  9. background: #fff;
  10. box-sizing: border-box;
  11. width: 100%;
  12. padding: 0 19px;
  13. font-size: 15px;
  14. color:#999;
  15. }
  16. .header_content {
  17. padding-right: 10px;
  18. padding-left: 10px;
  19. display: flex;
  20. justify-content: space-between;
  21. }
  22. .header_content th:first-child{
  23. flex-basis: 33%;
  24. }
  25. .row_content{
  26. background: #fff;
  27. box-sizing: border-box;
  28. padding-right: 10px;
  29. padding-left: 10px;
  30. display: flex;
  31. justify-content: space-between;
  32. }
  33. .row_content td:first-child{
  34. flex-basis: 30%;
  35. }