mirror of
https://github.com/WarlockFish/WarlockFish.github.io.git
synced 2026-02-07 20:34:18 +08:00
27 lines
500 B
Stylus
27 lines
500 B
Stylus
// Custom styles.
|
|
|
|
// 主页文章添加阴影效果
|
|
.post {
|
|
margin-top: 60px;
|
|
margin-bottom: 60px;
|
|
padding: 25px;
|
|
-webkit-box-shadow: 0 0 5px rgba(202, 203, 203, .5);
|
|
-moz-box-shadow: 0 0 5px rgba(202, 203, 204, .5);
|
|
}
|
|
|
|
// Custom styles.
|
|
code {
|
|
color: #ef2929;
|
|
background: #fbf7f8;
|
|
margin: 2px;
|
|
}
|
|
// 大代码块的自定义样式
|
|
.highlight, pre {
|
|
margin: 5px 0;
|
|
padding: 5px;
|
|
border-radius: 3px;
|
|
}
|
|
.highlight, code, pre {
|
|
border: 1px solid #d6d6d6;
|
|
}
|