Refactor: Reorganizar repositorio - Solo tema WordPress

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>
This commit is contained in:
FrankZamora
2025-11-09 09:15:47 -06:00
parent 861267e699
commit bbc6ed2c98
24226 changed files with 97 additions and 5056856 deletions

View File

@@ -0,0 +1,93 @@
/**
* 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;
}
}