Skip to content

Commit a0808bb

Browse files
committed
updated hamburger menu items to darker navy
1 parent b804dc7 commit a0808bb

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/components/Header.astro

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,9 @@ const currentPath = Astro.url.pathname;
187187
right: 0;
188188
flex-direction: column;
189189
gap: 0;
190-
background: rgba(255, 255, 255, 0.9);
191-
backdrop-filter: blur(16px);
192-
-webkit-backdrop-filter: blur(16px);
193-
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
194-
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
190+
background: #0a2d54;
191+
border-bottom: none;
192+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
195193
}
196194

197195
nav.open {
@@ -206,16 +204,19 @@ const currentPath = Astro.url.pathname;
206204

207205
nav a {
208206
padding: 1rem 1.5rem;
209-
border-top: 1px solid var(--border);
207+
border-top: 1px solid rgba(255, 255, 255, 0.1);
210208
font-size: 0.95rem;
211209
letter-spacing: 0.06em;
210+
color: rgba(255, 255, 255, 0.85);
212211
}
213212

214213
nav a::after { display: none; }
215214

215+
nav a:hover { color: #ffffff; background: rgba(255, 255, 255, 0.08); }
216+
216217
nav a.active {
217218
color: var(--accent);
218-
background: rgba(0, 200, 150, 0.05);
219+
background: rgba(255, 255, 255, 0.06);
219220
}
220221

221222
.tag-badge { display: none; }

src/styles/global.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
--ink: #0d0f14;
33
--paper: #ffffff;
44
--accent: #469d9b;
5-
--accent2: #114c8b;
5+
--accent2: #0a2d54;
66
--muted: #8a8070;
77
--card: #ffffff;
88
--border: #d8d0c0;

0 commit comments

Comments
 (0)