summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2021-01-06 16:56:20 -0800
committerGitHub <noreply@github.com>2021-01-07 01:56:20 +0100
commit3d55375f618594d62707eab18b98d32c52b4c9b7 (patch)
tree73406a3aec224aa1de986d844a4b853f46efd8ee
parent77e7cfd22bda843e00f851c4cf8a2eed5bd190f0 (diff)
Update theme CSS docs. (#1431)
-rw-r--r--guide/src/format/theme/README.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/guide/src/format/theme/README.md b/guide/src/format/theme/README.md
index d27a1fc7..b327b1d4 100644
--- a/guide/src/format/theme/README.md
+++ b/guide/src/format/theme/README.md
@@ -14,9 +14,11 @@ Here are the files you can override:
- **_index.hbs_** is the handlebars template.
- **_head.hbs_** is appended to the HTML `<head>` section.
- **_header.hbs_** content is appended on top of every book page.
-- **_book.css_** is the style used in the output. If you want to change the
- design of your book, this is probably the file you want to modify. Sometimes
- in conjunction with `index.hbs` when you want to radically change the layout.
+- **_css/_** contains the CSS files for styling the book.
+ - **_css/chrome.css_** is for UI elements.
+ - **_css/general.css_** is the base styles.
+ - **_css/print.css_** is the style for printer output.
+ - **_css/variables.css_** contains variables used in other CSS files.
- **_book.js_** is mostly used to add client side functionality, like hiding /
un-hiding the sidebar, changing the theme, ...
- **_highlight.js_** is the JavaScript that is used to highlight code snippets,