wip: minor tweaks

This commit is contained in:
2026-01-10 23:58:24 +00:00
parent d55ead82d7
commit f47ea792aa
11 changed files with 22 additions and 22 deletions

View File

@@ -3,7 +3,7 @@ import { config } from "../config";
---
<footer
class="py-8 text-center text-sm
class="pt-12 pb-6 my-28 text-center text-sm
text-gray-500 dark:text-neutral-500
border-t border-gray-200 dark:border-neutral-800"
>

View File

@@ -4,9 +4,9 @@
@custom-variant dark (&:where(.dark, .dark *));
@theme {
/* Accent colors - keep for brand consistency */
--color-accent: #1f8dd6;
--color-accent-light: #4da6e8;
/* Accent colors - using Tailwind sky palette */
--color-accent: theme(colors.sky.500);
--color-accent-light: theme(colors.sky.400);
/* Fonts - distinctive choices */
--font-display: "Bricolage Grotesque", system-ui, sans-serif;
@@ -30,7 +30,7 @@
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
--shadow-glow: 0 0 40px rgba(31, 141, 214, 0.15);
--shadow-glow: 0 0 40px theme(colors.sky.500 / 15%);
}
/* Smooth scroll */
@@ -129,11 +129,11 @@ html {
font-size: 0.875em;
border-radius: 4px;
padding: 0.2em 0.4em;
background-color: rgba(0, 0, 0, 0.05);
background-color: theme(colors.slate.950 / 5%);
}
.dark code {
background-color: rgba(163, 163, 163, 0.15);
background-color: theme(colors.neutral.400 / 15%);
}
pre {
@@ -440,7 +440,7 @@ html {
.dark .nav-link.active {
color: theme(colors.sky.400) !important;
background-color: theme(colors.sky.700 / 20%) !important;
background-color: theme(colors.sky.600 / 20%) !important;
}
/* Sidebar link active state (toggled by JavaScript) */