From 6d45ed6ba2b6c59163cf4d7692babac2eb443ef5 Mon Sep 17 00:00:00 2001 From: Harold Sun Date: Fri, 20 Mar 2026 15:41:59 +0000 Subject: [PATCH 1/3] docs: add custom theme with AWS-inspired styling and favicon - Add custom CSS with Inter/JetBrains Mono fonts, AWS color palette - Style tables, code blocks, sidebar, and blockquotes - Add Lambda favicon in SVG - Enable collapsible sidebar sections - Support both light and navy (dark) themes --- docs/guide/book.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/book.toml b/docs/guide/book.toml index 64877af8..c55d0fb2 100644 --- a/docs/guide/book.toml +++ b/docs/guide/book.toml @@ -3,7 +3,7 @@ authors = ["AWS Lambda Web Adapter Contributors"] language = "en" multilingual = false src = "src" -title = "AWS Lambda Web Adapter User Guide" +title = "AWS Lambda Web Adapter" [build] build-dir = "../../docs-site" From ab62bb584f6ffaa1712a907d6b57dff619e6a5fe Mon Sep 17 00:00:00 2001 From: Harold Sun Date: Fri, 20 Mar 2026 15:46:15 +0000 Subject: [PATCH 2/3] docs: restore 'User Guide' in book title --- docs/guide/book.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/book.toml b/docs/guide/book.toml index c55d0fb2..64877af8 100644 --- a/docs/guide/book.toml +++ b/docs/guide/book.toml @@ -3,7 +3,7 @@ authors = ["AWS Lambda Web Adapter Contributors"] language = "en" multilingual = false src = "src" -title = "AWS Lambda Web Adapter" +title = "AWS Lambda Web Adapter User Guide" [build] build-dir = "../../docs-site" From 7d87de8d2642aa01750d87eeae547dd478fdb520 Mon Sep 17 00:00:00 2001 From: Harold Sun Date: Fri, 20 Mar 2026 15:56:44 +0000 Subject: [PATCH 3/3] docs: improve sidebar font size and make content width responsive --- docs/guide/theme/custom.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/theme/custom.css b/docs/guide/theme/custom.css index 7f84db57..0a0dafb6 100644 --- a/docs/guide/theme/custom.css +++ b/docs/guide/theme/custom.css @@ -47,7 +47,7 @@ code, pre, .hljs { } .content main { - max-width: 52rem; + max-width: 90%; line-height: 1.75; } @@ -57,7 +57,7 @@ code, pre, .hljs { /* ── Sidebar ── */ .sidebar { - font-size: 0.9rem; + font-size: 1rem; padding-top: 1rem; }