Advertisement
artemsemkin

Kinsey theme: width and height of video play button

Mar 2nd, 2022
1,334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.45 KB | None | 0 0
  1. .section-video__link {
  2.   width: calc(1 * (80 * 1px));
  3.   height: calc(1 * (80 * 1px));
  4. }
  5.  
  6. @media screen and (min-width:320px) {
  7.   .section-video__link {
  8.     width: calc(1 * (80 * 1px + (160 - 80) * ((100vw - 320px)/ 1600)));
  9.     height: calc(1 * (80 * 1px + (160 - 80) * ((100vw - 320px)/ 1600)));
  10.   }
  11. }
  12.  
  13. @media screen and (min-width:1920px) {
  14.   .section-video__link {
  15.     width: calc(1 * (160 * 1px));
  16.     height: calc(1 * (160 * 1px));
  17.   }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement