improve fonts and UI
This commit is contained in:
@@ -33,7 +33,7 @@ html {
|
||||
body {
|
||||
background: #07080a;
|
||||
color: #e2e4e9;
|
||||
font-family: var(--font-lora), Georgia, serif;
|
||||
font-family: var(--font-jetbrains), monospace;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
@@ -351,6 +351,43 @@ body {
|
||||
|
||||
nav a:hover .nav-underline { transform: scaleX(1) !important; }
|
||||
|
||||
/* ── Hero creative bento grid ───────────────────────────────── */
|
||||
.creative-bento-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 1.25rem;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.bento-span-2x2 { grid-column: span 2; grid-row: span 2; }
|
||||
.bento-span-2x1 { grid-column: span 2; grid-row: span 1; }
|
||||
.bento-span-1x1 { grid-column: span 1; grid-row: span 1; }
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.creative-bento-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.bento-span-2x2 { grid-column: span 2; grid-row: span 2; }
|
||||
.bento-span-2x1 { grid-column: span 2; grid-row: span 1; }
|
||||
.bento-span-1x1 { grid-column: span 1; grid-row: span 1; }
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.creative-bento-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 1rem;
|
||||
}
|
||||
.bento-span-2x2, .bento-span-2x1, .bento-span-1x1 {
|
||||
grid-column: span 1;
|
||||
grid-row: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.glow-text {
|
||||
text-shadow: 0 0 24px rgba(200, 169, 110, 0.4);
|
||||
}
|
||||
|
||||
.headline-cursor {
|
||||
display: inline-block;
|
||||
width: 3px;
|
||||
|
||||
Reference in New Issue
Block a user