Preview de mixed.css
/* MIXED CSS PACK */
/* Template: videosfm10bolivar.com.ar/index.php */
/* Template mtime: 2025-09-04 19:05:41 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--primary: #0d5ea3;
--primary-dark: #4f46e5;
--dark-bg: #e5ecf6; /* fondo general mucho más claro */
--card-bg: #f1f5f9; /* fondo de las cards clarito */
--card-hover: #e2e8f0; /* hover de las cards un gris suave */
--text-primary: #1e293b; /* texto principal más oscuro para contraste */
--text-secondary: #475569;/* gris intermedio */
--accent: #8b5cf6;
--gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: var(--dark-bg);
color: var(--text-primary);
font-family: 'Poppins', sans-serif;
line-height: 1.6;
overflow-x: hidden;
}
/* Navbar Styles */
.navbar {
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(10px);
padding: 1rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
background: white;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: flex;
align-items: center;
gap: 0.5rem;
}
.navbar-brand i {
font-size: 2rem;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.btn-admin {
background: var(--gradient);
border: none;
border-radius: 50px;
padding: 0.5rem 1.5rem;
font-weight: 500;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn-admin:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
/* Hero Section */
.hero {
text-align: center;
padding: 3rem 0 2rem;
position: relative;
overflow: hidden;
/* Imagen de fondo */
background-image: url('img/fm.png'); /* cambia por tu imagen */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: #fff;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* Overlay para que se vea bien el texto */
background: rgba(0,0,0,0.5);
z-index: 0;
}
.hero h1 {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 1rem;
background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
position: relative;
z-index: 1;
}
.hero p {
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto 2rem;
font-size: 1.1rem;
position: relative;
z-index: 1;
}
/* Video Grid */
.video-grid {
display: grid;
gap: 2rem;
padding: 2rem 0 4rem;
}
@media (min-width: 576px) {
.video-grid {
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
}
/* Video Card */
.video-card {
background: var(--card-bg);
border-radius: 16px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
position: relative;
height: 100%;
display: flex;
flex-direction: column;
}
.video-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
background: var(--card-hover);
}
.card-header {
position: relative;
overflow: hidden;
}
.card-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 0.25rem 0.75rem;
border-radius: 50px;
font-size: 0.75rem;
z-index: 2;
backdrop-filter: blur(10px);
}
.video-container {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 Aspect Ratio */
overflow: hidden;
border-radius: 12px 12px 0 0;
}
.video-container iframe,
.video-container video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
border-radius: 12px 12px 0 0;
}
.card-body {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.card-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.75rem;
color: var(--text-primary);
line-height: 1.4;
}
.card-date {
color: var(--text-secondary);
font-size: 0.85rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.card-description {
color: var(--text-secondary);
margin-top: auto;
font-size: 0.95rem;
}
/* No videos message */
.no-videos {
text-align: center;
padding: 4rem 2rem;
background: var(--card-bg);
border-radius: 16px;
margin: 2rem 0;
}
.no-videos i {
font-size: 4rem;
margin-bottom: 1.5rem;
opacity: 0.5;
}
.no-videos h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
}
.no-videos p {
color: var(--text-secondary);
max-width: 500px;
margin: 0 auto;
}
/* Footer */
.footer {
background: rgba(15, 23, 42, 0.95);
padding: 2rem 0;
text-align: center;
margin-top: 3rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer p {
color: var(--text-secondary);
margin-bottom: 0;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.video-card {
animation: fadeIn 0.5s ease forwards;
}
.video-card:nth-child(2) { animation-delay: 0.1s; }
.video-card:nth-child(3) { animation-delay: 0.2s; }
.video-card:nth-child(4) { animation-delay: 0.3s; }
.video-card:nth-child(5) { animation-delay: 0.4s; }
.video-card:nth-child(n+6) { animation-delay: 0.5s; }
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary-dark);
}
Manifest preview
{
"template": "videosfm10bolivar.com.ar/index.php",
"template_mtime": 1757012741,
"template_mtime_human": "2025-09-04T19:05:41+00:00",
"css_links_found": [
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css",
"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
],
"css_links_external": [
"https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css",
"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
],
"css_links_embedded": [],
"inline_style_blocks": 1,
"inline_imports_external": [],
"inline_imports_embedded": [],
"missing_css_files": []
}