SanYeCao-blog/src/components/Header.astro

71 lines
1.4 KiB
Text
Raw Normal View History

2026-03-24 18:01:45 +00:00
---
import Navigation from "./Navigation.astro";
import ThemeIcon from "./ThemeIcon.astro";
2026-03-24 22:28:23 +00:00
import { getLangFromUrl, getTranslations } from "@/i18n";
const lang = getLangFromUrl(Astro.url);
const t = getTranslations(lang);
2026-03-24 18:01:45 +00:00
---
2026-03-24 22:28:23 +00:00
<header class="site-header">
<div class="theme-icon-wrap">
<ThemeIcon />
</div>
<nav class="header-nav">
2026-03-25 15:34:38 +00:00
<h1>
<a href="/" data-astro-reload>{t.banner.title}</a>
</h1>
2026-03-24 18:01:45 +00:00
<Navigation />
</nav>
</header>
<style>
2026-03-25 15:34:38 +00:00
.header-nav h1 a {
color: inherit;
text-decoration: none;
2026-03-25 18:51:38 +00:00
display: block;
2026-03-25 15:34:38 +00:00
}
2026-03-24 22:28:23 +00:00
.site-header {
position: relative;
padding-top: 0.5rem;
}
.theme-icon-wrap {
position: absolute;
top: 0;
right: 0;
2026-03-25 18:51:38 +00:00
z-index: 2;
2026-03-24 22:28:23 +00:00
}
.header-nav {
2026-03-24 18:01:45 +00:00
display: flex;
2026-03-24 22:28:23 +00:00
flex-direction: column;
gap: 1rem;
}
.header-nav h1 {
margin: 0;
font-style: italic;
2026-03-25 18:51:38 +00:00
line-height: 1.1;
/* 给右上角 ThemeIcon 留空间 */
max-width: calc(100% - 4rem);
/* 桌面正常,手机自动缩小 */
font-size: clamp(1.6rem, 6vw, 2.5rem);
}
@media (max-width: 768px) {
.site-header {
padding-top: 0.25rem;
}
.header-nav h1 {
max-width: calc(100% - 3.5rem);
font-size: clamp(1.25rem, 7vw, 2rem);
}
2026-03-24 18:01:45 +00:00
}
</style>