- vault → notes (PKM-exported content) - posts → articles (short-form, no TOC) - papers → essays (long-form, with TOC) - type: post → type: article (posts are just short articles) - layouts/paper → layouts/essay - 08a-paper.css → 08a-essay.css - CSS: fix redundant li resets, remove role="main" from article, replace <small> prev/next labels, add console layout - Update hugo.toml menus, internal URLs, front matter throughout - Add docs/context.md, docs/css-refactor-plan.md
24 lines
785 B
CSS
24 lines
785 B
CSS
/* ASW — Agentic Semantic Web Framework
|
|
* Entry point: Open Props foundation + ASW layer stack
|
|
* PostCSS-import resolves all @imports at build time
|
|
*
|
|
* NOTE: ALL @import statements must come first.
|
|
* postcss-import drops any @import that follows a rule.
|
|
*/
|
|
|
|
/* 1. Open Props foundation */
|
|
@import "open-props/open-props.min.css";
|
|
@import "open-props/media.min.css";
|
|
|
|
/* 2. Framework layers */
|
|
@import "./layers/00-reset.css";
|
|
@import "./layers/01-asw.css";
|
|
@import "./layers/02-semantic.css";
|
|
@import "./layers/03-components.css";
|
|
@import "./layers/04-data-attrs.css";
|
|
@import "./layers/05-utilities.css";
|
|
@import "./layers/06-charts.css";
|
|
@import "./layers/07-chroma.css";
|
|
@import "./layers/08-layout.css";
|
|
@import "./layers/08a-essay.css";
|
|
@import "./layers/09-landing.css";
|