2024-12-23 21:18:55 +00:00
|
|
|
@import "@fontsource-variable/red-hat-mono";
|
2025-01-05 18:49:48 +00:00
|
|
|
@import "@fontsource-variable/outfit";
|
2025-02-12 13:03:43 +00:00
|
|
|
@import "@fontsource/instrument-serif";
|
2024-12-23 21:18:55 +00:00
|
|
|
|
2025-01-23 18:48:20 +00:00
|
|
|
@import "tailwindcss";
|
|
|
|
@plugin "@tailwindcss/typography";
|
2024-12-23 21:18:55 +00:00
|
|
|
|
2025-01-23 18:48:20 +00:00
|
|
|
@theme inline {
|
|
|
|
--color-primary: var(--primary);
|
|
|
|
--color-secondary: var(--secondary);
|
|
|
|
--color-tertiary: var(--tertiary);
|
|
|
|
--color-accent: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@theme {
|
|
|
|
--font-sans: "Outfit Variable", "sans-serif";
|
2025-02-12 13:03:43 +00:00
|
|
|
--font-serif: "Instrument Serif", "serif";
|
2025-01-23 18:48:20 +00:00
|
|
|
--font-mono: "Red Hat Mono Variable", "monospace";
|
|
|
|
|
|
|
|
--animate-reveal: reveal 0.3s forwards ease-in-out;
|
2025-01-27 11:44:27 +00:00
|
|
|
|
2025-01-23 18:48:20 +00:00
|
|
|
@keyframes reveal {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(20px);
|
|
|
|
filter: blur(4px);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateY(0px);
|
|
|
|
filter: blur(0px);
|
|
|
|
}
|
2024-12-23 21:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
2025-01-11 14:03:13 +00:00
|
|
|
|
2025-01-23 18:48:20 +00:00
|
|
|
:root {
|
2025-02-07 10:42:51 +00:00
|
|
|
color-scheme: light dark;
|
|
|
|
--primary: light-dark(var(--color-neutral-50), var(--color-black));
|
|
|
|
--secondary: light-dark(var(--color-neutral-950), var(--color-neutral-50));
|
|
|
|
--tertiary: light-dark(var(--color-neutral-500), var(--color-neutral-500));
|
|
|
|
--accent: light-dark(var(--color-neutral-700), var(--color-neutral-300));
|
2025-01-23 18:48:20 +00:00
|
|
|
}
|
|
|
|
|
2025-01-18 21:50:40 +00:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
.astro-code,
|
|
|
|
.astro-code span {
|
|
|
|
color: var(--shiki-dark) !important;
|
|
|
|
background-color: var(--shiki-dark-bg) !important;
|
|
|
|
font-style: var(--shiki-dark-font-style) !important;
|
|
|
|
font-weight: var(--shiki-dark-font-weight) !important;
|
|
|
|
text-decoration: var(--shiki-dark-text-decoration) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-12 13:03:43 +00:00
|
|
|
@utility container {
|
|
|
|
margin-inline: auto;
|
|
|
|
padding-inline: 2rem;
|
|
|
|
margin-inline: auto;
|
|
|
|
}
|
|
|
|
|
2025-01-17 22:16:14 +00:00
|
|
|
@media print {
|
|
|
|
body {
|
2025-01-18 15:52:48 +00:00
|
|
|
background: none;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
header,
|
|
|
|
footer,
|
|
|
|
main {
|
|
|
|
max-width: unset !important;
|
|
|
|
}
|
|
|
|
header,
|
|
|
|
footer {
|
|
|
|
display: none;
|
2025-01-17 22:16:14 +00:00
|
|
|
}
|
|
|
|
}
|
2025-02-12 13:03:43 +00:00
|
|
|
|
|
|
|
[x-cloak] {
|
|
|
|
display: none !important;
|
|
|
|
}
|