style.scss 436 B

123456789101112131415161718192021222324
  1. ---
  2. # Only the main Sass file needs front matter (the dashes are enough)
  3. ---
  4. @import
  5. "minima/skins/{{ site.minima.skin | default: 'classic' }}",
  6. "minima/initialize";
  7. .video-container {
  8. position: relative;
  9. padding-bottom: 56.25%; /* Proporción 16:9 */
  10. height: 0;
  11. overflow: hidden;
  12. max-width: 100%;
  13. margin: 2em 0;
  14. }
  15. .video-container iframe {
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. width: 100%;
  20. height: 100%;
  21. }