portada: reticula via pseudoelemento ::before con gradientes, circulo y lineas 3px

This commit is contained in:
Sergio
2026-05-24 02:48:56 +00:00
parent b6330a22b4
commit 6facc3c8ed
2 changed files with 39 additions and 75 deletions
+3 -12
View File
@@ -85,11 +85,6 @@
</ul> </ul>
</div> </div>
</button> </button>
<!-- Líneas de retícula (después de cuadrantes para hover via JS) -->
<div class="reticula-v" aria-hidden="true"></div>
<div class="reticula-h" aria-hidden="true"></div>
<div class="reticula-center" aria-hidden="true"></div>
</div> </div>
<!-- DECK: contenedor para páginas md (oculto hasta expandir cuadrante) --> <!-- DECK: contenedor para páginas md (oculto hasta expandir cuadrante) -->
@@ -156,17 +151,13 @@
const reticulaH = document.querySelector('.reticula-h'); const reticulaH = document.querySelector('.reticula-h');
const reticulaC = document.querySelector('.reticula-center'); const reticulaC = document.querySelector('.reticula-center');
// Hover en cuadrantes ilumina retícula // Hover en cuadrantes ilumina portada
document.querySelectorAll('.cuadrante').forEach(q => { document.querySelectorAll('.cuadrante').forEach(q => {
q.addEventListener('mouseenter', () => { q.addEventListener('mouseenter', () => {
reticulaV.classList.add('reticula-lit'); portada.classList.add('portada-hover');
reticulaH.classList.add('reticula-lit');
reticulaC.classList.add('reticula-lit');
}); });
q.addEventListener('mouseleave', () => { q.addEventListener('mouseleave', () => {
reticulaV.classList.remove('reticula-lit'); portada.classList.remove('portada-hover');
reticulaH.classList.remove('reticula-lit');
reticulaC.classList.remove('reticula-lit');
}); });
q.addEventListener('click', function(e) { q.addEventListener('click', function(e) {
const hex = this.dataset.q; const hex = this.dataset.q;
+36 -63
View File
@@ -17,11 +17,6 @@
--fg-dim: #666; --fg-dim: #666;
--fg-bright: #e0e0e0; --fg-bright: #e0e0e0;
--accent: #a0a0a0; --accent: #a0a0a0;
--accent-glow: #c0c0c0;
--reticula: #3a3a3a;
--reticula-hover: rgba(192, 192, 192, 0.15);
--border: #333;
--border-hover: #666;
--font: 'SF Mono', 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace; --font: 'SF Mono', 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
--font-ui: -apple-system, 'Inter', 'Segoe UI', sans-serif; --font-ui: -apple-system, 'Inter', 'Segoe UI', sans-serif;
} }
@@ -39,7 +34,7 @@ html, body {
} }
/* =================================================== /* ===================================================
PORTADA — retícula 2×2 PORTADA — grid 2×2
=================================================== */ =================================================== */
.portada { .portada {
@@ -52,54 +47,32 @@ html, body {
background: var(--bg); background: var(--bg);
} }
/* Líneas de retícula — sobre todo */ /* ===================================================
.reticula-v { RETÍCULA — pseudoelemento con líneas + círculo
=================================================== */
.portada::before {
content: '';
position: absolute; position: absolute;
top: 0; top: 0; left: 0; right: 0; bottom: 0;
left: 50%;
width: 3px;
height: 100%;
background: #777;
z-index: 30; z-index: 30;
pointer-events: none; pointer-events: none;
transform: translateX(-1.5px); transition: all 0.35s ease;
background:
/* línea vertical */
linear-gradient(90deg, transparent calc(50% - 1.5px), #666 calc(50% - 1.5px), #777 calc(50% + 1.5px), transparent calc(50% + 1.5px)),
/* línea horizontal */
linear-gradient(0deg, transparent calc(50% - 1.5px), #666 calc(50% - 1.5px), #777 calc(50% + 1.5px), transparent calc(50% + 1.5px)),
/* círculo centro */
radial-gradient(circle at 50% 50%, transparent calc(14px), #888 calc(14px), #888 calc(17px), transparent calc(17px));
} }
.reticula-h { .portada-hover::before {
position: absolute; background:
top: 50%; linear-gradient(90deg, transparent calc(50% - 1.5px), rgba(200,200,200,0.5) calc(50% - 1.5px), rgba(200,200,200,0.5) calc(50% + 1.5px), transparent calc(50% + 1.5px)),
left: 0; linear-gradient(0deg, transparent calc(50% - 1.5px), rgba(200,200,200,0.5) calc(50% - 1.5px), rgba(200,200,200,0.5) calc(50% + 1.5px), transparent calc(50% + 1.5px)),
width: 100%; radial-gradient(circle at 50% 50%, transparent calc(14px), rgba(200,200,200,0.6) calc(14px), rgba(200,200,200,0.6) calc(17px), transparent calc(17px)),
height: 3px; radial-gradient(circle at 50% 50%, rgba(200,200,200,0.06) 40%, transparent 70%);
background: #777;
z-index: 30;
pointer-events: none;
transform: translateY(-1.5px);
}
.reticula-center {
position: absolute;
top: calc(50% - 16px);
left: calc(50% - 16px);
width: 32px;
height: 32px;
border: 3px solid #777;
border-radius: 50%;
z-index: 30;
pointer-events: none;
background: transparent;
}
/* Iluminación en hover via JS */
.reticula-lit {
background: rgba(200, 200, 200, 0.5) !important;
box-shadow: 0 0 12px rgba(200, 200, 200, 0.3) !important;
}
.reticula-center.reticula-lit {
border-color: rgba(200, 200, 200, 0.6) !important;
box-shadow: 0 0 14px rgba(200, 200, 200, 0.35) !important;
background: rgba(200, 200, 200, 0.06) !important;
} }
/* =================================================== /* ===================================================
@@ -121,7 +94,7 @@ html, body {
} }
.cuadrante:hover { .cuadrante:hover {
background: var(--reticula-hover); background: rgba(192, 192, 192, 0.15);
} }
/* Borde iluminado en hover */ /* Borde iluminado en hover */
@@ -134,7 +107,7 @@ html, body {
} }
.cuadrante:hover .cuadrante-border { .cuadrante:hover .cuadrante-border {
border-color: var(--border-hover); border-color: #666;
} }
/* Contenido */ /* Contenido */
@@ -149,6 +122,10 @@ html, body {
transition: opacity 0.3s ease; transition: opacity 0.3s ease;
} }
.cuadrante:hover .cuadrante-content {
opacity: 1;
}
/* Alineación: izquierda mira a la derecha, derecha mira a la izquierda */ /* Alineación: izquierda mira a la derecha, derecha mira a la izquierda */
.cuadrante-01 .cuadrante-content, .cuadrante-01 .cuadrante-content,
.cuadrante-02 .cuadrante-content { .cuadrante-02 .cuadrante-content {
@@ -166,10 +143,6 @@ html, body {
padding-right: 20px; padding-right: 20px;
} }
.cuadrante:hover .cuadrante-content {
opacity: 1;
}
.cuadrante-hex { .cuadrante-hex {
font-size: 11px; font-size: 11px;
font-weight: 600; font-weight: 600;
@@ -230,14 +203,14 @@ html, body {
color: var(--accent); color: var(--accent);
font-family: var(--font); font-family: var(--font);
letter-spacing: 0.05em; letter-spacing: 0.05em;
border: 1px solid var(--border); border: 1px solid #333;
padding: 2px 8px; padding: 2px 8px;
border-radius: 2px; border-radius: 2px;
transition: border-color 0.3s ease, color 0.3s ease; transition: border-color 0.3s ease, color 0.3s ease;
} }
.cuadrante:hover .meta-cta { .cuadrante:hover .meta-cta {
border-color: var(--accent-glow); border-color: var(--fg-bright);
color: var(--fg-bright); color: var(--fg-bright);
} }
@@ -340,7 +313,7 @@ html, body {
width: 32px; width: 32px;
height: 32px; height: 32px;
background: rgba(255,255,255,0.04); background: rgba(255,255,255,0.04);
border: 1px solid var(--border); border: 1px solid #333;
border-radius: 4px; border-radius: 4px;
color: var(--fg); color: var(--fg);
cursor: pointer; cursor: pointer;
@@ -352,7 +325,7 @@ html, body {
.page-control-btn:hover { .page-control-btn:hover {
background: rgba(255,255,255,0.08); background: rgba(255,255,255,0.08);
border-color: var(--border-hover); border-color: #666;
} }
.page-close { .page-close {
@@ -372,7 +345,7 @@ html, body {
right: 0; right: 0;
height: 40px; height: 40px;
background: rgba(12, 12, 12, 0.92); background: rgba(12, 12, 12, 0.92);
border-top: 1px solid var(--border); border-top: 1px solid #333;
display: flex; display: flex;
align-items: center; align-items: center;
gap: 6px; gap: 6px;
@@ -419,7 +392,7 @@ html, body {
.taskbar-divider { .taskbar-divider {
width: 1px; width: 1px;
height: 20px; height: 20px;
background: var(--border); background: #333;
margin: 0 4px; margin: 0 4px;
} }
@@ -475,10 +448,10 @@ html, body {
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: var(--border); background: #333;
border-radius: 3px; border-radius: 3px;
} }
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background: var(--border-hover); background: #666;
} }