123456789101112131415161718192021222324252627282930 |
- .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: @fontsize-s;
- font-weight: 600;
- text-align: center;
- &.text {
- min-width: 11.111vh;
- }
- &.value {
- min-width: 7.407vh;
- }
- &.unit {
- min-width: 4.63vh;
- }
- }
- }
- }
|