vaga / hugo-theme-m10c

A minimalistic (m10c) blog theme for Hugo
https://themes.gohugo.io/hugo-theme-m10c/
MIT License
455 stars 280 forks source link

Quotes block CSS style #76

Closed cr0cdev closed 1 year ago

cr0cdev commented 2 years ago

Hi!

I tried to add quote block into one of my posts and I found out that the theme does not have a quote block CSS style. I haven't done PR to this change, since I do not know if the style suits the developer. Anyway here is the idea for quote block style (I did change the code block as well so both of them look the same):

blockquote {
  border-left: 0.4em solid rgba($primary-color, .8);
  border-radius: 5px;
  padding: .5em 1em;
  color: rgba($light-color, .8);
  font-family: monospace,monospace;
  font-size: 1em;
  margin: 10px 0;
  background: #272822;
}

blockquote:before {
  color: rgba($light-color, .8);
  content: open-quote;
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.3em;
}

blockquote p {
  display: inline;
}

Preview: quote

Hopefully something similar gets added as it looks a bit better this way.