table-form.less 422 B

1234567891011121314151617181920212223242526272829
  1. .table-form {
  2. width: 100%;
  3. border-collapse: collapse;
  4. tr {
  5. background: transparent;
  6. &:nth-child(2n) {
  7. background: fade(@darkgray, 20);
  8. }
  9. td {
  10. padding: 0.741vh;
  11. border: 0px;
  12. font-size: 12px;
  13. text-align: center;
  14. &.text {
  15. min-width: 13vh;
  16. }
  17. &.value {
  18. min-width: 6vh;
  19. }
  20. &.unit {
  21. min-width: 40px;
  22. }
  23. }
  24. }
  25. }