Files
roi-theme/Assets/css/css-global-video.css
FrankZamora 33d17f4b56 fix(structure): Rename assets and inc folders for Linux compatibility
- assets → Assets
- inc → Inc

Completes the case-sensitivity fixes for Linux servers.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 22:55:31 -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;
}