1234567891011121314151617181920212223242526272829 |
- .table-form {
- width: 100%;
- border-collapse: collapse;
- tr {
- background: transparent;
- &:nth-child(2n) {
- background: fade(@darkgray, 20);
- }
- td {
- padding: 0.741vh;
- border: 0px;
- font-size: 12px;
- text-align: center;
- &.text {
- min-width: 13vh;
- }
- &.value {
- min-width: 6vh;
- }
- &.unit {
- min-width: 40px;
- }
- }
- }
- }
|