Merge pull request 'fix blockquote' (#3) from dev into stable

Reviewed-on: #3
This commit is contained in:
hexlocation 2024-11-18 13:55:35 +01:00
commit 41cfc9d1ce

View file

@ -12,12 +12,30 @@
margin: auto; margin: auto;
width: 50%; width: 50%;
} }
blockquote {
margin-left: 0;
padding-left: 5px;
margin-right: 0px;
color: gray;
}
blockquote p {
padding-left: 5px;
<% if(config.hasOwnProperty("themeOpts") && config.themeOpts.hasOwnProperty("accentColor")) { %>
border-left: 3px solid <%= config.themeOpts.accentColor %>;
<% } else { %>
border-left: 3px solid white;
<% } %>
}
blockquote p {
display: inline;
}
code { code {
font-family: "Source Code Pro"; font-family: "Source Code Pro";
padding-left: 2px; padding-left: 2px;
padding-right: 2px; padding-right: 2px;
border: 1px #2e2e2e solid; border: 1px #111111 solid;
background-color: #2e2e2e; background-color: #111111;
border-radius: 5px; border-radius: 5px;
} }
hr { hr {