col.scss 542 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .cl-col {
  2. width: 100%;
  3. box-sizing: border-box;
  4. &::before {
  5. content: '';
  6. display: block;
  7. }
  8. }
  9. [class*='cl-col-'] {
  10. float: left;
  11. box-sizing: border-box;
  12. }
  13. .cl-col-0 {
  14. display: none;
  15. width: 0%;
  16. }
  17. @for $i from 1 through 24 {
  18. .cl-col-push-#{$i},
  19. .cl-col-pull-#{$i} {
  20. position: relative;
  21. }
  22. }
  23. @for $i from 1 through 24 {
  24. .cl-col-#{$i} {
  25. width: 100% / 24 * $i;
  26. }
  27. .cl-col-offset-#{$i} {
  28. margin-left: 100% / 24 * $i;
  29. }
  30. .cl-col-pull-#{$i} {
  31. right: 100% / 24 * $i;
  32. }
  33. .cl-col-push-#{$i} {
  34. left: 100% / 24 * $i;
  35. }
  36. }