Se movió el repositorio git desde la raíz de WordPress a la carpeta del tema. Este commit limpia todos los archivos de WordPress del historial de tracking y mantiene únicamente los archivos del tema apus-theme. Cambios: - Eliminado tracking de archivos de WordPress core - Mantenido solo archivos del tema (97 archivos) - Actualizado .gitignore para excluir carpetas de desarrollo - Historial de commits anteriores se mantiene intacto 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
94 lines
1.9 KiB
CSS
94 lines
1.9 KiB
CSS
/**
|
|
* CTA Box Sidebar Styles
|
|
*
|
|
* Styles for the CTA box component that appears in the sidebar
|
|
* below the Table of Contents on single posts.
|
|
*
|
|
* @package Apus_Theme
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
/* ========================================
|
|
CTA Box Container
|
|
======================================== */
|
|
|
|
.cta-box-sidebar {
|
|
background: var(--color-orange-primary);
|
|
border-radius: 8px;
|
|
padding: 24px;
|
|
text-align: center;
|
|
margin-top: 0;
|
|
margin-bottom: 15px;
|
|
height: 250px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
box-shadow: 0 4px 12px rgba(255, 133, 0, 0.2);
|
|
}
|
|
|
|
/* ========================================
|
|
CTA Box Content
|
|
======================================== */
|
|
|
|
.cta-box-title {
|
|
color: #ffffff;
|
|
font-weight: 700;
|
|
font-size: 1.25rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.cta-box-text {
|
|
color: rgba(255, 255, 255, 0.95);
|
|
font-size: 0.9rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* ========================================
|
|
CTA Button
|
|
======================================== */
|
|
|
|
.btn-cta-box {
|
|
background-color: #ffffff;
|
|
color: var(--color-orange-primary);
|
|
font-weight: 700;
|
|
border: none;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 8px;
|
|
transition: all 0.3s ease;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.btn-cta-box:hover {
|
|
background-color: var(--color-navy-primary);
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* ========================================
|
|
Icon Spacing
|
|
======================================== */
|
|
|
|
.btn-cta-box i {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* ========================================
|
|
Responsive Design
|
|
======================================== */
|
|
|
|
/* Hide on tablets and mobile */
|
|
@media (max-width: 991px) {
|
|
.cta-box-sidebar {
|
|
display: none; /* Ocultar en móviles */
|
|
}
|
|
}
|
|
|
|
/* ========================================
|
|
Print Styles
|
|
======================================== */
|
|
|
|
@media print {
|
|
.cta-box-sidebar {
|
|
display: none;
|
|
}
|
|
}
|