Unique Post Styling via Custom CSS

By on

This is an example how to change your post styling via CSS. You can simply add the css option to your post front-matter field:

scheme-text: "rgba(100, 16, 0, .5)"
scheme-code: "#fff"
css: |
  body {
    font-size: 3vw; /* This scales up the whole page */
    background-image: linear-gradient(to bottom, #fff500, #ff8f00);
  }