videopress-editor-style.css 352 B

123456789101112131415161718192021
  1. /**
  2. * VideoPress styles for Editor
  3. */
  4. .videopress-editor-wrapper {
  5. position: relative;
  6. max-width: 100%;
  7. padding: 56.25% 0 0;
  8. height: 0;
  9. overflow: hidden;
  10. }
  11. .tmpl-videopress_iframe_next iframe {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. max-width: 100%;
  16. max-height: 100%;
  17. }
  18. body.rtl .tmpl-videopress_iframe_next iframe {
  19. left: auto;
  20. right: 0;
  21. }