mirror of
https://github.com/svemagie/blog-eleventy-indiekit.git
synced 2026-04-02 16:44:56 +02:00
Add Pagefind indexing after each Eleventy build with a search page at /search/. Indexes main content only (sidebars excluded), supports dark mode theming and URL query parameters (?q=). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
509 lines
12 KiB
CSS
509 lines
12 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* Accessibility utilities */
|
|
@layer utilities {
|
|
.visually-hidden {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
.skip-link {
|
|
@apply absolute -top-full left-0 z-50 bg-primary-600 text-white px-4 py-2;
|
|
}
|
|
|
|
.skip-link:focus {
|
|
@apply top-0;
|
|
}
|
|
}
|
|
|
|
/* Reduce motion for accessibility */
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
scroll-behavior: auto !important;
|
|
}
|
|
}
|
|
|
|
/* Dark mode body background */
|
|
@layer base {
|
|
body {
|
|
@apply bg-white dark:bg-surface-950 text-surface-900 dark:text-surface-100;
|
|
}
|
|
}
|
|
|
|
/* Layout styles */
|
|
@layer components {
|
|
/* Site header */
|
|
.site-header {
|
|
@apply bg-white dark:bg-surface-900 border-b border-surface-200 dark:border-surface-700 py-4 sticky top-0 z-50;
|
|
}
|
|
|
|
.header-container {
|
|
@apply flex items-center justify-between;
|
|
}
|
|
|
|
.site-title {
|
|
@apply text-xl font-bold text-surface-900 dark:text-white no-underline hover:text-primary-600 dark:hover:text-primary-400 transition-colors;
|
|
}
|
|
|
|
/* Header actions (nav + theme toggle) */
|
|
.header-actions {
|
|
@apply hidden md:flex items-center gap-4;
|
|
}
|
|
|
|
.site-nav {
|
|
@apply flex items-center gap-4;
|
|
}
|
|
|
|
.site-nav > a,
|
|
.site-nav .nav-dropdown-trigger {
|
|
@apply text-surface-600 dark:text-surface-400 hover:text-primary-600 dark:hover:text-primary-400 no-underline transition-colors py-2;
|
|
}
|
|
|
|
/* Navigation dropdown */
|
|
.nav-dropdown {
|
|
@apply relative;
|
|
}
|
|
|
|
.nav-dropdown-trigger {
|
|
@apply flex items-center gap-1 cursor-pointer bg-transparent border-none text-base;
|
|
}
|
|
|
|
.nav-dropdown-menu {
|
|
@apply absolute top-full left-0 mt-1 py-2 bg-white dark:bg-surface-800 border border-surface-200 dark:border-surface-700 rounded-lg shadow-lg min-w-[160px] z-50;
|
|
}
|
|
|
|
.nav-dropdown-menu a {
|
|
@apply block px-4 py-2 text-sm text-surface-600 dark:text-surface-400 hover:bg-surface-100 dark:hover:bg-surface-700 hover:text-primary-600 dark:hover:text-primary-400 no-underline;
|
|
}
|
|
|
|
.nav-dropdown-divider {
|
|
@apply my-2 border-t border-surface-200 dark:border-surface-700;
|
|
}
|
|
|
|
/* Mobile menu toggle button */
|
|
.menu-toggle {
|
|
@apply md:hidden p-2 rounded-lg text-surface-600 dark:text-surface-400 hover:bg-surface-100 dark:hover:bg-surface-800 transition-colors;
|
|
}
|
|
|
|
/* Mobile navigation dropdown */
|
|
.mobile-nav {
|
|
@apply md:hidden border-t border-surface-200 dark:border-surface-700 bg-white dark:bg-surface-900;
|
|
}
|
|
|
|
.mobile-nav a {
|
|
@apply block px-4 py-3 text-surface-600 dark:text-surface-400 hover:bg-surface-100 dark:hover:bg-surface-800 hover:text-primary-600 dark:hover:text-primary-400 no-underline transition-colors border-b border-surface-100 dark:border-surface-800 last:border-b-0;
|
|
}
|
|
|
|
/* Mobile nav collapsible sections */
|
|
.mobile-nav-section {
|
|
@apply border-b border-surface-100 dark:border-surface-800;
|
|
}
|
|
|
|
.mobile-nav-toggle {
|
|
@apply flex items-center justify-between w-full px-4 py-3 text-surface-600 dark:text-surface-400 hover:bg-surface-100 dark:hover:bg-surface-800 hover:text-primary-600 dark:hover:text-primary-400 transition-colors bg-transparent border-none text-base text-left cursor-pointer;
|
|
}
|
|
|
|
.mobile-nav-submenu {
|
|
@apply bg-surface-50 dark:bg-surface-800;
|
|
}
|
|
|
|
.mobile-nav-submenu a {
|
|
@apply pl-8 py-2 text-sm border-b-0;
|
|
}
|
|
|
|
.mobile-nav-divider {
|
|
@apply my-2 mx-4 border-t border-surface-200 dark:border-surface-700;
|
|
}
|
|
|
|
/* Theme toggle button */
|
|
.theme-toggle {
|
|
@apply p-2 rounded-lg text-surface-600 dark:text-surface-400 hover:bg-surface-100 dark:hover:bg-surface-800 transition-colors;
|
|
}
|
|
|
|
.theme-toggle .sun-icon {
|
|
@apply hidden;
|
|
}
|
|
|
|
.theme-toggle .moon-icon {
|
|
@apply block;
|
|
}
|
|
|
|
.dark .theme-toggle .sun-icon {
|
|
@apply block;
|
|
}
|
|
|
|
.dark .theme-toggle .moon-icon {
|
|
@apply hidden;
|
|
}
|
|
|
|
/* Mobile theme toggle */
|
|
.mobile-theme-toggle {
|
|
@apply flex items-center justify-between w-full px-4 py-3 text-surface-600 dark:text-surface-400 hover:bg-surface-100 dark:hover:bg-surface-800 hover:text-primary-600 dark:hover:text-primary-400 transition-colors bg-transparent border-none text-base text-left cursor-pointer border-t border-surface-200 dark:border-surface-700;
|
|
}
|
|
|
|
.mobile-theme-toggle .theme-label {
|
|
@apply font-normal;
|
|
}
|
|
|
|
.mobile-theme-toggle .theme-icons {
|
|
@apply flex items-center;
|
|
}
|
|
|
|
.mobile-theme-toggle .sun-icon {
|
|
@apply hidden;
|
|
}
|
|
|
|
.mobile-theme-toggle .moon-icon {
|
|
@apply block;
|
|
}
|
|
|
|
.dark .mobile-theme-toggle .sun-icon {
|
|
@apply block;
|
|
}
|
|
|
|
.dark .mobile-theme-toggle .moon-icon {
|
|
@apply hidden;
|
|
}
|
|
|
|
/* Container */
|
|
.container {
|
|
@apply max-w-5xl mx-auto px-4;
|
|
}
|
|
|
|
/* Site footer */
|
|
.site-footer {
|
|
@apply mt-12 py-8 border-t border-surface-200 dark:border-surface-700 text-center text-sm text-surface-500;
|
|
}
|
|
|
|
.site-footer a {
|
|
@apply text-primary-600 dark:text-primary-400 hover:underline;
|
|
}
|
|
|
|
/* Layout with sidebar - mobile-first with responsive grid */
|
|
.layout-with-sidebar {
|
|
@apply grid grid-cols-1 gap-6 md:gap-8 lg:grid-cols-3;
|
|
}
|
|
|
|
.main-content {
|
|
@apply lg:col-span-2 min-w-0 overflow-x-hidden; /* min-w-0 + overflow-x-hidden prevents layout breaking */
|
|
}
|
|
|
|
.sidebar {
|
|
@apply space-y-6 lg:sticky lg:top-24 lg:self-start overflow-hidden;
|
|
}
|
|
|
|
/* Main content area - adjust padding for mobile */
|
|
main.container {
|
|
@apply py-6 md:py-8;
|
|
}
|
|
}
|
|
|
|
/* Custom component styles */
|
|
@layer components {
|
|
/* Post list */
|
|
.post-list {
|
|
@apply list-none p-0 m-0 space-y-6;
|
|
}
|
|
|
|
.post-list li {
|
|
@apply pb-6 border-b border-surface-200 dark:border-surface-700 last:border-0;
|
|
}
|
|
|
|
/* Post meta */
|
|
.post-meta {
|
|
@apply text-sm text-surface-600 dark:text-surface-400 flex flex-wrap gap-2 items-center;
|
|
}
|
|
|
|
/* Category tags */
|
|
.p-category {
|
|
@apply inline-block px-2 py-0.5 text-xs bg-primary-100 dark:bg-primary-900 text-primary-800 dark:text-primary-200 rounded;
|
|
}
|
|
|
|
/* Webmention styles */
|
|
.webmention-likes .avatar-row {
|
|
@apply flex flex-wrap gap-1;
|
|
}
|
|
|
|
.webmention-likes img {
|
|
@apply w-8 h-8 rounded-full;
|
|
}
|
|
|
|
/* GitHub components */
|
|
.repo-card {
|
|
@apply p-4 border border-surface-200 dark:border-surface-700 rounded-lg;
|
|
}
|
|
|
|
.repo-meta {
|
|
@apply flex gap-4 text-sm text-surface-600 dark:text-surface-400 mt-2;
|
|
}
|
|
|
|
/* Timeline for CV */
|
|
.timeline {
|
|
@apply relative pl-6 border-l-2 border-primary-500;
|
|
}
|
|
|
|
.timeline-item {
|
|
@apply relative pb-6 last:pb-0;
|
|
}
|
|
|
|
.timeline-item::before {
|
|
content: '';
|
|
@apply absolute -left-[calc(1.5rem+5px)] top-1.5 w-3 h-3 bg-primary-500 rounded-full;
|
|
}
|
|
|
|
/* Skills badges */
|
|
.skill-badge {
|
|
@apply inline-block px-3 py-1 text-sm bg-surface-100 dark:bg-surface-800 rounded-full;
|
|
}
|
|
|
|
/* Widget cards */
|
|
.widget {
|
|
@apply p-4 bg-surface-100 dark:bg-surface-800 rounded-lg overflow-hidden;
|
|
}
|
|
|
|
.widget-title {
|
|
@apply font-bold text-lg mb-4;
|
|
}
|
|
|
|
/* Post cards */
|
|
.post-card {
|
|
@apply p-5 bg-white dark:bg-surface-800 rounded-lg border border-surface-200 dark:border-surface-700 shadow-sm overflow-hidden;
|
|
}
|
|
|
|
.post-header {
|
|
@apply flex flex-wrap items-center gap-2;
|
|
}
|
|
|
|
.post-footer {
|
|
@apply pt-3 border-t border-surface-100 dark:border-surface-700;
|
|
}
|
|
|
|
/* Photo gallery on listing pages */
|
|
.photo-list li {
|
|
@apply pb-8;
|
|
}
|
|
|
|
.photo-gallery {
|
|
@apply my-4 grid gap-2;
|
|
}
|
|
|
|
.photo-gallery img {
|
|
@apply w-full max-h-[500px] object-cover rounded-lg;
|
|
}
|
|
|
|
.photo-link {
|
|
@apply block;
|
|
}
|
|
|
|
.photo-caption {
|
|
@apply mt-3 text-surface-600 dark:text-surface-400;
|
|
}
|
|
|
|
/* Multi-photo grid */
|
|
.photo-gallery:has(img:nth-child(2)) {
|
|
@apply grid-cols-2;
|
|
}
|
|
|
|
.photo-gallery:has(img:nth-child(3)) {
|
|
@apply grid-cols-2;
|
|
}
|
|
|
|
.photo-gallery:has(img:nth-child(4)) {
|
|
@apply grid-cols-2;
|
|
}
|
|
|
|
/* Pagination */
|
|
.pagination {
|
|
@apply mt-12 pt-8 border-t border-surface-200 dark:border-surface-700 flex flex-col sm:flex-row items-center justify-between gap-4;
|
|
}
|
|
|
|
.pagination-info {
|
|
@apply text-sm text-surface-600 dark:text-surface-400;
|
|
}
|
|
|
|
.pagination-links {
|
|
@apply flex items-center gap-2;
|
|
}
|
|
|
|
.pagination-link {
|
|
@apply inline-flex items-center gap-1 px-4 py-2 text-sm font-medium bg-surface-100 dark:bg-surface-800 rounded-lg hover:bg-surface-200 dark:hover:bg-surface-700 transition-colors;
|
|
}
|
|
|
|
.pagination-link.disabled {
|
|
@apply opacity-50 cursor-not-allowed hover:bg-surface-100 dark:hover:bg-surface-800;
|
|
}
|
|
}
|
|
|
|
/* Focus states */
|
|
@layer base {
|
|
a:focus-visible,
|
|
button:focus-visible,
|
|
input:focus-visible,
|
|
textarea:focus-visible,
|
|
select:focus-visible {
|
|
@apply outline-2 outline-offset-2 outline-primary-500;
|
|
}
|
|
}
|
|
|
|
/* Video embeds */
|
|
@layer components {
|
|
.video-embed {
|
|
@apply relative w-full aspect-video my-4;
|
|
}
|
|
|
|
.video-embed iframe {
|
|
@apply absolute inset-0 w-full h-full rounded-lg;
|
|
}
|
|
}
|
|
|
|
/* Performance: content-visibility for off-screen rendering optimization */
|
|
@layer utilities {
|
|
.content-auto {
|
|
content-visibility: auto;
|
|
contain-intrinsic-size: auto 500px;
|
|
}
|
|
}
|
|
|
|
/* Apply content-visibility to images and post items for performance */
|
|
@layer base {
|
|
/* Responsive typography */
|
|
html {
|
|
@apply text-base md:text-lg;
|
|
}
|
|
|
|
/* Prevent horizontal overflow */
|
|
body {
|
|
@apply overflow-x-hidden;
|
|
}
|
|
|
|
/* Images - prevent overflow and add content-visibility */
|
|
img {
|
|
@apply max-w-full h-auto;
|
|
content-visibility: auto;
|
|
}
|
|
|
|
/* Pre/code blocks - prevent overflow on mobile */
|
|
pre {
|
|
@apply overflow-x-auto max-w-full;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
code {
|
|
@apply break-words;
|
|
}
|
|
|
|
/* Links in content - break long URLs */
|
|
.e-content a,
|
|
.prose a {
|
|
@apply break-words;
|
|
word-break: break-word;
|
|
}
|
|
|
|
/* Content containers - prevent horizontal overflow */
|
|
.e-content,
|
|
.prose {
|
|
@apply overflow-x-hidden;
|
|
max-width: 100%;
|
|
}
|
|
|
|
article {
|
|
scroll-margin-top: 80px; /* Prevent header overlap when scrolling to anchors */
|
|
}
|
|
|
|
.post-list li {
|
|
content-visibility: auto;
|
|
contain-intrinsic-size: auto 200px;
|
|
}
|
|
|
|
/* Tables - responsive handling */
|
|
table {
|
|
@apply w-full;
|
|
display: block;
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* Ensure truncate works properly in flex containers */
|
|
.truncate {
|
|
@apply overflow-hidden text-ellipsis whitespace-nowrap;
|
|
}
|
|
|
|
/* Video embeds - maintain aspect ratio */
|
|
lite-youtube,
|
|
iframe[src*="youtube"],
|
|
iframe[src*="vimeo"] {
|
|
@apply max-w-full;
|
|
}
|
|
}
|
|
|
|
/* Pagefind UI theme overrides */
|
|
@layer components {
|
|
.pagefind-ui-container {
|
|
--pagefind-ui-scale: 1;
|
|
--pagefind-ui-primary: #2563eb;
|
|
--pagefind-ui-text: #18181b;
|
|
--pagefind-ui-background: #ffffff;
|
|
--pagefind-ui-border: #e4e4e7;
|
|
--pagefind-ui-tag: #f4f4f5;
|
|
--pagefind-ui-border-width: 1px;
|
|
--pagefind-ui-border-radius: 8px;
|
|
--pagefind-ui-font: inherit;
|
|
}
|
|
|
|
.dark .pagefind-ui-container {
|
|
--pagefind-ui-primary: #60a5fa;
|
|
--pagefind-ui-text: #f4f4f5;
|
|
--pagefind-ui-background: #09090b;
|
|
--pagefind-ui-border: #3f3f46;
|
|
--pagefind-ui-tag: #27272a;
|
|
}
|
|
|
|
.pagefind-ui-container .pagefind-ui__search-input {
|
|
@apply bg-white dark:bg-surface-900 text-surface-900 dark:text-surface-100;
|
|
}
|
|
|
|
.pagefind-ui-container .pagefind-ui__result-link {
|
|
@apply text-primary-600 dark:text-primary-400 hover:underline;
|
|
}
|
|
|
|
.pagefind-ui-container .pagefind-ui__result-excerpt {
|
|
@apply text-surface-600 dark:text-surface-400;
|
|
}
|
|
|
|
.pagefind-ui-container .pagefind-ui__message {
|
|
@apply text-surface-600 dark:text-surface-400;
|
|
}
|
|
}
|
|
|
|
/* Mobile-specific improvements */
|
|
@layer utilities {
|
|
/* Ensure proper touch scrolling on overflow containers */
|
|
.overflow-x-auto {
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* Hide scrollbar but allow scrolling */
|
|
.scrollbar-hide {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.scrollbar-hide::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|