From d84cda5d91805c3be6e550de57d0a197d3d11dbe Mon Sep 17 00:00:00 2001 From: Paul Hibbitts Date: Fri, 25 Aug 2023 09:15:31 -0700 Subject: [PATCH] Update README.md --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index c270dd0..189fe9f 100644 --- a/README.md +++ b/README.md @@ -342,6 +342,33 @@ Automatically added to all iFrames with the source domains 'youtube.com' or 'doc
``` +🎨 Visual Customization +--- + +A Docsify Open Course Starter Kit site can be visually customized using CSS within the `custom.css` file located in the folder `docs/assets/css`. Using this file, [Docsify Themeable CSS settings](https://jhildenbiddle.github.io/docsify-themeable/#/customization?id=base) can also be configured, as seen in the examples provided in the default `custom.css` file. + +Example of custom.css file: + +```css +:root { + --link-color: #0F6CBF!important; +} +*/ +``` + +It is also possible for dual CSS styling to be configured, with CSS applied to when viewing the site (with overriding custom CSS included in a `STYLE` tag in the `_sidebar.md` file) and then other CSS settings within the `custom.css` file applied to when viewing standalone pages (i.e. `?embedded=true&`) + +Example of CSS included within Sidebar file (`_sidebar.md`): + +```css + + 🌐 Using MAMP to View Docsify Sites Locally ---