srikat

Untitled

Oct 9th, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. .videos {
  2. display: -webkit-box;
  3. display: -webkit-flex;
  4. display: -ms-flexbox;
  5. display: flex;
  6. -webkit-justify-content: space-around;
  7. -ms-flex-pack: distribute;
  8. justify-content: space-around;
  9. -webkit-flex-wrap: wrap;
  10. -ms-flex-wrap: wrap;
  11. flex-wrap: wrap;
  12. -webkit-box-align: start;
  13. -webkit-align-items: flex-start;
  14. -ms-flex-align: start;
  15. align-items: flex-start;
  16. }
  17.  
  18. .video {
  19. width: 33.333333333%;
  20. max-width: 320px;
  21. display: -webkit-box;
  22. display: -webkit-flex;
  23. display: -ms-flexbox;
  24. display: flex;
  25. -webkit-box-orient: vertical;
  26. -webkit-box-direction: normal;
  27. -webkit-flex-direction: column;
  28. -ms-flex-direction: column;
  29. flex-direction: column;
  30. -webkit-box-pack: center;
  31. -webkit-justify-content: center;
  32. -ms-flex-pack: center;
  33. justify-content: center;
  34. margin-bottom: 20px;
  35. }
  36.  
  37. .video:last-of-type {
  38. margin-right: auto;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment