You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
410B

  1. /*===========*/
  2. /* The Frame */
  3. /*===========*/
  4. .frame {
  5. --n: 9;
  6. --d: 16;
  7. padding-bottom: calc(var(--n) / var(--d) * 100%);
  8. position: relative;
  9. }
  10. .frame > * {
  11. overflow: hidden;
  12. position: absolute;
  13. top: 0;
  14. right: 0;
  15. bottom: 0;
  16. left: 0;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. }
  21. .frame > img,
  22. .frame > video {
  23. width: 100%
  24. height: 100%
  25. object-fit: cover;
  26. }