Files
roi-theme/Assets/Css/css-global-video.css
FrankZamora c6450211a7 fix: Rename Assets/css to Assets/Css, Assets/js to Assets/Js in git
Windows case-insensitive but Linux case-sensitive.
Git was tracking lowercase, causing 404s on server.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-01 12:13:24 -06:00

32 lines
650 B
CSS

/**
* Video Iframe Styles
*
* Estilos para videos embebidos (YouTube, Vimeo, etc.) en post-content
*
* @package ROI_Theme
* @since 1.0.0
*/
/* ========================================
VIDEO WRAPPER
======================================== */
.video-wrapper {
position: relative;
margin: 2rem auto;
max-width: 850px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 8px;
}
.video-wrapper iframe {
display: block;
width: 100%;
height: 478px;
border: none;
border-radius: 8px;
}