Changing font size of text in code blocks of my ghost blog

This piece of CSS should reduce the font size within your code blocks:

<style>
  pre[class*="language-"] {
      font-size: 0.75em;
  }
</style>

Drop that into your site header code injection area :+1: