Layout Preview

vkei

Author: vampzkr_
Category: ¿?
Created: August 12, 2026
Downloads: 1
Log in to Apply

Live Preview

Comments (0)

No comments yet. Be the first!

Log in to leave a comment.

Layout CSS

:root {
  --color-principal: #102a43;    /* Azul oscuro para encabezados */
  --color-acento: #335eea;       /* Azul vibrante para enlaces/botones */
  --color-fondo: #f8fafc;        /* Fondo claro y descansado */
  --color-tarjeta: #ffffff;      /* Fondo de los artículos */
  --color-texto: #334155;        /* Texto principal */
  --fuente-base: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--color-fondo);
  color: var(--color-texto);
  font-family: var(--fuente-base);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}