Skip to content

Commit a2bb9cc

Browse files
IntellyCodeclaude
andcommitted
Restyle hero eyebrow as 3-column card grid
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 81ecaf5 commit a2bb9cc

1 file changed

Lines changed: 16 additions & 17 deletions

File tree

index.html

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -120,22 +120,23 @@
120120
.hero { padding: 5rem 0 2rem; }
121121

122122
.eyebrow {
123-
display: flex;
124-
align-items: center;
123+
display: grid;
124+
grid-template-columns: repeat(3, 1fr);
125125
gap: .5rem;
126-
font-size: .8rem;
126+
margin-bottom: 1.5rem;
127+
}
128+
129+
.eyebrow-item {
130+
text-align: center;
131+
font-size: .75rem;
127132
font-weight: 600;
128-
letter-spacing: .08em;
133+
letter-spacing: .07em;
129134
text-transform: uppercase;
130135
color: var(--muted);
131-
margin-bottom: 1.25rem;
132-
}
133-
134-
.eyebrow-dot {
135-
width: 4px;
136-
height: 4px;
137-
border-radius: 50%;
138-
background: var(--line);
136+
padding: .6rem .5rem;
137+
border: 1px solid var(--line);
138+
border-radius: 6px;
139+
background: var(--white);
139140
}
140141

141142
.hero-tagline {
@@ -421,11 +422,9 @@
421422
<section class="hero flush-bottom">
422423
<div class="container">
423424
<div class="eyebrow">
424-
<span>Freelance Software Engineer</span>
425-
<span class="eyebrow-dot"></span>
426-
<span>Research Assistant</span>
427-
<span class="eyebrow-dot"></span>
428-
<span>Physics Student, TU Munich</span>
425+
<div class="eyebrow-item">Freelance Software Engineer</div>
426+
<div class="eyebrow-item">Research Assistant</div>
427+
<div class="eyebrow-item">Physics Student, TU Munich</div>
429428
</div>
430429

431430
<h1 class="display-name">Denis Zenios</h1>

0 commit comments

Comments
 (0)