* feat: archives page * fix: empty archive show 'no posts found' message * Add ToC partials for structural consistency * Fix empty archive showing blank page * fix: rename archive to archives * chore: enhance archives and additional pages support - Updated the menu structure in hugo.yaml to include new sections for 'About', 'Archives', and 'Glossary' under 'More'. - Added new archive index files for multiple languages (Farsi, Japanese, Simplified Chinese) to support multilingual content. - Created additional pages documentation for glossary and archives in multiple languages. - Updated references in existing documentation to point to the new additional pages structure. - Improved the archives layout to display a user-friendly message when no posts are found. * fix: update date format in archives layout - Changed the date format in the archives layout from a partial to a direct format for improved readability, displaying dates as "Jan 02". * feat: add archive date format customization - Introduced a new parameter in hugo.yaml for customizing the date format of archive items, defaulting to "Jan 02". - Updated documentation in multiple languages to reflect the new optional date format feature for archives. --------- Co-authored-by: Xin <xin@imfing.com>
67 lines
2.6 KiB
CSS
67 lines
2.6 KiB
CSS
@import "tailwindcss" prefix(hx);
|
|
|
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
|
|
@theme {
|
|
--color-primary-50: hsl(var(--primary-hue) var(--primary-saturation) calc(var(--primary-lightness) + calc(calc(100% - var(--primary-lightness)) / 50) * 47));
|
|
--color-primary-100: hsl(var(--primary-hue) var(--primary-saturation) calc(var(--primary-lightness) + calc(calc(100% - var(--primary-lightness)) / 50) * 44));
|
|
--color-primary-200: hsl(var(--primary-hue) var(--primary-saturation) calc(var(--primary-lightness) + calc(calc(100% - var(--primary-lightness)) / 50) * 36));
|
|
--color-primary-300: hsl(var(--primary-hue) var(--primary-saturation) calc(var(--primary-lightness) + calc(calc(100% - var(--primary-lightness)) / 50) * 27));
|
|
--color-primary-400: hsl(var(--primary-hue) var(--primary-saturation) calc(var(--primary-lightness) + calc(calc(100% - var(--primary-lightness)) / 50) * 16));
|
|
--color-primary-500: hsl(var(--primary-hue) var(--primary-saturation) var(--primary-lightness));
|
|
--color-primary-600: hsl(var(--primary-hue) var(--primary-saturation) calc(calc(var(--primary-lightness) / 50) * 45));
|
|
--color-primary-700: hsl(var(--primary-hue) var(--primary-saturation) calc(calc(var(--primary-lightness) / 50) * 39));
|
|
--color-primary-800: hsl(var(--primary-hue) var(--primary-saturation) calc(calc(var(--primary-lightness) / 50) * 32));
|
|
--color-primary-900: hsl(var(--primary-hue) var(--primary-saturation) calc(calc(var(--primary-lightness) / 50) * 24));
|
|
--color-dark: #111;
|
|
}
|
|
|
|
html {
|
|
@apply hx:text-base hx:antialiased;
|
|
}
|
|
|
|
body {
|
|
@apply hx:w-full hx:bg-white hx:dark:bg-dark hx:dark:text-gray-100;
|
|
}
|
|
|
|
:root {
|
|
--primary-hue: 212deg;
|
|
--primary-saturation: 100%;
|
|
--primary-lightness: 50%;
|
|
--navbar-height: 4rem;
|
|
--hextra-banner-height: 2rem;
|
|
--menu-height: 3.75rem; /* 60px */
|
|
}
|
|
|
|
.dark {
|
|
--primary-hue: 204deg;
|
|
--primary-saturation: 100%;
|
|
--primary-lightness: 50%;
|
|
}
|
|
|
|
@utility hextra-focus {
|
|
@apply hx:outline-none hx:ring-2 hx:ring-primary-200 hx:ring-offset-1 hx:ring-offset-primary-300 hx:dark:ring-primary-800 hx:dark:ring-offset-primary-700;
|
|
}
|
|
|
|
@layer base {
|
|
abbr:where([title]) {
|
|
cursor: help;
|
|
}
|
|
}
|
|
|
|
@import "./typography.css";
|
|
@import "./highlight.css";
|
|
@import "./components/cards.css";
|
|
@import "./components/steps.css";
|
|
@import "./components/search.css";
|
|
@import "./components/sidebar.css";
|
|
@import "./components/banner.css";
|
|
@import "./components/navbar.css";
|
|
@import "./components/scrollbar.css";
|
|
@import "./components/code-copy.css";
|
|
@import "./components/hextra/feature-grid.css";
|
|
@import "./components/jupyter.css";
|
|
@import "./components/badge.css";
|
|
@import "./components/toc.css";
|
|
@import "./components/archives.css";
|