index.scss 228 B

123456789101112131415
  1. .nut-col {
  2. float: left;
  3. box-sizing: border-box;
  4. word-break: break-all;
  5. }
  6. @for $i from 1 through 24 {
  7. .nut-col-offset-#{$i} {
  8. margin-left: 100/24 * $i * 1%;
  9. }
  10. .nut-col-#{$i} {
  11. width: 100/24 * $i * 1%;
  12. }
  13. }