- 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>
32 lines
650 B
CSS
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;
|
|
}
|