Advertisement
srikat

Untitled

Oct 10th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. .videos {
  2. display: -webkit-box;
  3. display: -webkit-flex;
  4. display: -ms-flexbox;
  5. display: flex;
  6. -webkit-box-pack: justify;
  7. -webkit-justify-content: space-between;
  8. -ms-flex-pack: justify;
  9. justify-content: space-between;
  10. -webkit-flex-wrap: wrap;
  11. -ms-flex-wrap: wrap;
  12. flex-wrap: wrap;
  13. -webkit-box-align: start;
  14. -webkit-align-items: flex-start;
  15. -ms-flex-align: start;
  16. align-items: flex-start;
  17. }
  18.  
  19. .video {
  20. width: 33.333333333%;
  21. max-width: 320px;
  22. display: -webkit-box;
  23. display: -webkit-flex;
  24. display: -ms-flexbox;
  25. display: flex;
  26. -webkit-box-orient: vertical;
  27. -webkit-box-direction: normal;
  28. -webkit-flex-direction: column;
  29. -ms-flex-direction: column;
  30. flex-direction: column;
  31. -webkit-box-pack: center;
  32. -webkit-justify-content: center;
  33. -ms-flex-pack: center;
  34. justify-content: center;
  35. margin-bottom: 20px;
  36. }
  37.  
  38. @media only screen and (max-width: 1340px) {
  39.  
  40. .video {
  41. padding: 10px;
  42. }
  43.  
  44. }
  45.  
  46. @media only screen and (max-width: 768px) {
  47.  
  48. .video {
  49. width: 50%;
  50. }
  51.  
  52. }
  53.  
  54. @media only screen and (max-width: 500px) {
  55.  
  56. .video {
  57. width: 100%;
  58. }
  59.  
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement