You are here

commons_media.css in Drupal Commons 7.3

iframe,
object,
embed {
  max-width: 100%;
}

video {
  height: auto;
  max-width: 100%;
}

.oembed {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
}

.oembed iframe,
.oembed object,
.oembed embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

File

modules/commons/commons_media/commons_media.css
View source
  1. iframe,
  2. object,
  3. embed {
  4. max-width: 100%;
  5. }
  6. video {
  7. height: auto;
  8. max-width: 100%;
  9. }
  10. .oembed {
  11. height: 0;
  12. overflow: hidden;
  13. padding-bottom: 56.25%;
  14. padding-top: 30px;
  15. position: relative;
  16. }
  17. .oembed iframe,
  18. .oembed object,
  19. .oembed embed {
  20. height: 100%;
  21. left: 0;
  22. position: absolute;
  23. top: 0;
  24. width: 100%;
  25. }