Advertisement
Guest User

Untitled

a guest
May 4th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // 5 columns layout for bootstrap
  2. .col-xs-2_4,
  3. .col-sm-2_4,
  4. .col-md-2_4,
  5. .col-lg-2_4
  6. position: relative
  7. min-height: 1px
  8. padding-right: 10px
  9. padding-left: 10px
  10.  
  11. .col-xs-2_4
  12. width: 20%
  13. float: left
  14.  
  15. @media (min-width: $screen-sm)
  16. .col-sm-2_4
  17. width: 20%
  18. float: left
  19.  
  20. @media (min-width: $screen-md)
  21. .col-md-2_4
  22. width: 20%
  23. float: left
  24.  
  25. @media (min-width: $screen-lg)
  26. .col-lg-2_4
  27. width: 20%
  28. float: left
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement