fix blockquote
This commit is contained in:
parent
d15c5557aa
commit
73b44bf5e9
1 changed files with 20 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
Reference in a new issue