From f0d245de267c47a336c8808d012a91e582202d7a Mon Sep 17 00:00:00 2001 From: FrankZamora Date: Fri, 7 Nov 2025 09:44:14 -0600 Subject: [PATCH] =?UTF-8?q?[COMPONENTE=2010]=20Implementar=20Post=20Conten?= =?UTF-8?q?t=20con=20tipograf=C3=ADa=20optimizada=20-=20Issue=20#120?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Cambiar
a
para mejor semántica HTML - Agregar CSS completo con 9 selectores: * .post-content: Contenedor con fondo, padding, shadow * .post-content h2: Border-bottom naranja 3px * .post-content h3: Color navy light para jerarquía * .post-content p: Line-height 1.8 para legibilidad * .post-content ul/ol: Listas estilizadas * .post-content li: Items con espaciado * .post-content strong: Color navy para destacar * .post-content a: Enlaces naranjas con underline * .post-content a:hover: Hover naranja oscuro Archivos modificados: - wp-content/themes/apus-theme/single.php (líneas 61, 70) - wp-content/themes/apus-theme/assets/css/style.css (líneas 865-921) 🎨 Generated with Claude Code Co-Authored-By: Claude --- .../themes/apus-theme/assets/css/style.css | 57 +++++++++++++++++++ wp-content/themes/apus-theme/single.php | 4 +- 2 files changed, 59 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/apus-theme/assets/css/style.css b/wp-content/themes/apus-theme/assets/css/style.css index 11478104..f07439fd 100644 --- a/wp-content/themes/apus-theme/assets/css/style.css +++ b/wp-content/themes/apus-theme/assets/css/style.css @@ -861,3 +861,60 @@ img { height: auto; display: block; } + +/* === POST CONTENT === */ + +.post-content { + background: #ffffff; + padding: 2rem; + border-radius: 12px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); +} + +.post-content h2 { + color: var(--color-navy-primary); + font-weight: 700; + margin-top: 2.5rem; + margin-bottom: 1.25rem; + padding-bottom: 0.75rem; + border-bottom: 3px solid var(--color-orange-primary); +} + +.post-content h3 { + color: var(--color-navy-light); + font-weight: 600; + margin-top: 2rem; + margin-bottom: 1rem; +} + +.post-content p { + color: var(--color-neutral-600); + line-height: 1.8; + margin-bottom: 1.25rem; +} + +.post-content ul, +.post-content ol { + margin-bottom: 1.5rem; + padding-left: 2rem; +} + +.post-content li { + margin-bottom: 0.5rem; + color: var(--color-neutral-600); +} + +.post-content strong { + color: var(--color-navy-primary); + font-weight: 600; +} + +.post-content a { + color: var(--color-orange-primary); + text-decoration: underline; + transition: color 0.3s ease; +} + +.post-content a:hover { + color: var(--color-orange-hover); +} diff --git a/wp-content/themes/apus-theme/single.php b/wp-content/themes/apus-theme/single.php index 5a1b82c6..efa7a207 100644 --- a/wp-content/themes/apus-theme/single.php +++ b/wp-content/themes/apus-theme/single.php @@ -58,7 +58,7 @@ get_header(); -
+
'
', )); ?> -
+