Advertisement
dfghgfhplkjbv

src/components/SingleVideo/SingleVideo.module.scss

Feb 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. @import 'src/styles/utility';
  2.  
  3. .root {
  4. padding: 70px;
  5. margin-bottom: 80px;
  6.  
  7. @media (max-width: 1024px) {
  8. padding: 20px;
  9. }
  10.  
  11. @media (max-width: 480px) {
  12. margin-bottom: 50px;
  13. }
  14.  
  15. @media (min-width: 1441px) {
  16. padding: 0;
  17. padding-top: 80px;
  18. }
  19. }
  20.  
  21. .container {
  22. position: relative;
  23. width: 100%;
  24. height: 0;
  25. padding-bottom: 50rem;
  26.  
  27. @media (min-width: 1440px) {
  28. width: 90%;
  29. margin: 0 auto;
  30. }
  31. }
  32. .video {
  33. position: absolute;
  34. top: 0;
  35. left: 0;
  36. width: 100%;
  37. height: 90%;
  38. background-color: #fff;
  39.  
  40. @media (min-width: 1440px) {
  41. height: 90%;
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement