mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-14 02:18:25 +00:00
45 lines
908 B
SCSS
45 lines
908 B
SCSS
.body-copy {
|
|
blockquote {
|
|
position: relative;
|
|
display:block;
|
|
margin:0px;
|
|
// border-left:2px solid $base-font-color;
|
|
font-style: italic;
|
|
background-color: $hugo-gray-ultra-light;
|
|
padding: 16px;
|
|
margin-bottom:1em;
|
|
p {
|
|
margin-bottom:0px;
|
|
margin-top:16px;
|
|
}
|
|
p:first-child {
|
|
margin-top:8px;
|
|
}
|
|
&:before {
|
|
font-family: 'fontello';
|
|
display: block;
|
|
@include size(1em);
|
|
position: absolute;
|
|
content: '\e809';
|
|
color:$hugo-gray-light;
|
|
top: -3px;
|
|
left: 4px;
|
|
font-size: 1.2em;
|
|
// background-color: $body-bg-color;
|
|
font-style: normal;
|
|
}
|
|
code,pre {
|
|
font-style:normal;
|
|
}
|
|
cite.blockquote-citation {
|
|
position: relative;
|
|
display:block;
|
|
clear:both;
|
|
text-align:right;
|
|
line-height:2;
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
}
|
|
}
|
|
}
|