responsive-embed.css 508 B

123456789101112131415161718192021222324252627
  1. .embed-responsive {
  2. position: relative;
  3. display: block;
  4. height: 0;
  5. padding: 0;
  6. overflow: hidden;
  7. }
  8. .embed-responsive .embed-responsive-item,
  9. .embed-responsive iframe,
  10. .embed-responsive embed,
  11. .embed-responsive object,
  12. .embed-responsive video {
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. bottom: 0;
  17. height: 100%;
  18. width: 100%;
  19. border: 0;
  20. }
  21. .embed-responsive-16by9 {
  22. padding-bottom: 56.25%;
  23. }
  24. .embed-responsive-4by3 {
  25. padding-bottom: 75%;
  26. }
  27. /*# sourceMappingURL=responsive-embed.css.map */