You can create a styles that apply to only one page by doing the following. Here's an example of making the body text red for one particular page.
- Add the style to
.vuepress/override.styl. For example:
/* Make all the body text red. */
.theme-container.badidea { color: red; }- Add
pageClass:to the YAML front mattter for that page.
pageClass: badidea- VuePress offical Custom Page Classs documentation