Blockquote 引用效果
由于博客是通过 org mode 生成的,很多效果都没有,比如 blockquote。例如经常看到下面这样的效果:
为了让自己的博客显的不那么老土,我终于忍不住要改改了。做起来非常简单,只需要在 css 文件中加几句就可以了。
blockquote::before {
font-family: Arial;
content: "\201C";
color: #999;
font-size: 2em;
position: absolute;
left: 10px;
top: -10px;
}
blockquote {
margin: 1em auto;
color: #555;
border-left: 4px solid #999;
position: relative;
line-height: 1.6;
padding-left: 30px;
}
效果类似这样:
对我来说,这样已经非常好了。