SanYeCao-blog/src/styles/global.css

60 lines
870 B
CSS
Raw Normal View History

2026-03-24 19:32:44 +00:00
@font-face {
font-family: "Maple Mono";
src: url("/fonts/MapleMono-Regular.ttf.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Maple Mono";
src: url("/fonts/MapleMono-Bold.ttf.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: swap;
}
2026-03-24 17:33:01 +00:00
html {
/* background-color: #f1f5f9; */
2026-03-24 19:32:44 +00:00
font-family: "Maple Mono", monospace;
2026-03-24 17:33:01 +00:00
}
body {
margin: 0 auto;
width: 100%;
max-width: 80ch;
padding: 1rem;
line-height: 1.5;
}
* {
box-sizing: border-box;
}
h1 {
margin: 1rem 0;
font-size: 2.5rem;
2026-03-24 18:01:45 +00:00
}
html.dark {
background-color: #0d0950;
color: #fff;
}
.dark .menu {
background-color: #fff;
color: #000;
}
.dark .nav-links a:hover,
.dark .nav-links a:focus {
color: #0d0950;
}
.dark .nav-links a {
color: #fff;
}
.dark a {
color: #ff9776;
2026-03-24 17:33:01 +00:00
}