lostkeys / Bits-and-Pieces-Theme-for-Pico

A personal wiki/knowledge base theme for Pico CMS
MIT License
47 stars 13 forks source link

Blockquotes #12

Open mac586 opened 1 year ago

mac586 commented 1 year ago

I want to modify how block quotes are presented with this theme. Just a grey vertical bar, and maybe the same background color as the code blocks. When I add this to the main.css file, nothing changes:

blockquote {
    font-style: italic;
    margin-left: 1em;
    padding-left: 1em;
    border-left: 0.5em solid #f5f5f5;
}

What am I missing?

mac586 commented 1 year ago

Resolved. I created a blockquote.css file in the /styles directory; and then included this line in the index.twigfile at line 14:

<link rel="stylesheet" href="{{ theme_url }}/styles/blockquote.css" type="text/css" />

block quote.css:

/**
 * Simple Blockquote Styling
 */

blockquote {
  background: #fffff;
  border-left: 4px solid #ccc;
  margin: .6em 10px;
  padding: .3em 10px;
}
blockquote p {
  display: inline;
}