Guest User

Untitled

a guest
Jan 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. @import 'grid';
  2.  
  3. .container {
  4. margin: 0px auto;
  5. width: @total_width;
  6. }
  7.  
  8. .test{
  9. height: 50px;
  10. background: blue;
  11. .grid(8);
  12. }
  13. .test_nest_first{
  14. height: 50px;
  15. background: red;
  16. .grid_alpha(4);
  17. }
  18. .test_nest_last{
  19. height: 50px;
  20. background: purple;
  21. .grid_omega(4);
  22. }
  23.  
  24. RESULTS IN:
  25.  
  26. .container {
  27. margin: 0px auto;
  28. width: 960px;
  29. }
  30. .test {
  31. height: 50px;
  32. background: blue;
  33. width: 472px;
  34. margin: 0px 4px;
  35. float: left;
  36. }
  37. .test_nest_first {
  38. height: 50px;
  39. background: red;
  40. width: 232px;
  41. margin: 0px 4px 0px 0px;
  42. float: left;
  43. }
  44. .test_nest_last {
  45. height: 50px;
  46. background: purple;
  47. width: 232px;
  48. margin: 0px 0px 0px 4px;
  49. float: left;
  50. }
Add Comment
Please, Sign In to add comment