grid.less 920 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .gg { .gg(); }
  2. .gg-fixed { table-layout: fixed; }
  3. .gg-col { .gg-col(); }
  4. .gg-row { display: table-row; }
  5. .gg-min-width { width: 1%; }
  6. .gg-top { vertical-align: top; }
  7. .gg-middle { vertical-align: middle; }
  8. .gg-bottom { vertical-align: bottom; }
  9. .gg-padded {
  10. margin-left: -1rem;
  11. margin-right: -1rem;
  12. .gg { border-spacing: 1rem 0; }
  13. }
  14. .gg-col-1,
  15. .gg-col-2,
  16. .gg-col-3,
  17. .gg-col-4,
  18. .gg-col-5,
  19. .gg-col-6,
  20. .gg-col-7,
  21. .gg-col-8,
  22. .gg-col-9,
  23. .gg-col-10,
  24. .gg-col-11,
  25. .gg-col-12 {
  26. .gg-col();
  27. }
  28. .gg-col-1 { .gg-make-col(1,12); }
  29. .gg-col-2 { .gg-make-col(2,12); }
  30. .gg-col-3 { .gg-make-col(3,12); }
  31. .gg-col-4 { .gg-make-col(4,12); }
  32. .gg-col-5 { .gg-make-col(5,12); }
  33. .gg-col-6 { .gg-make-col(6,12); }
  34. .gg-col-7 { .gg-make-col(7,12); }
  35. .gg-col-8 { .gg-make-col(8,12); }
  36. .gg-col-9 { .gg-make-col(9,12); }
  37. .gg-col-10 { .gg-make-col(10,12); }
  38. .gg-col-11 { .gg-make-col(11,12); }
  39. .gg-col-12 { .gg-make-col(12,12); }