WordPress 代码块添加 mac 风格样式

这个代码直接插入代码即可实现美化代码块,css 代码如下:

.post-content-post pre::before {
    content: "";
    display: block;
    background: #fc625d;
    top: 9px;
    left: 15px;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    box-shadow: 16px 0 #fdbc40, 32px 0 #35cd4b;
    margin: 0px 2px -7px;
    z-index: 1000;
    position: absolute;
}

.post-content-post pre {
    max-height: unset;
    padding: 0 0.5em 0 0.5em;
    background: #2d3748;
}

.post-content-post pre code {
    margin-top: 16px;
}
正文完
 0
admin
版权声明:本站原创文章,由 admin 2023-02-07发表,共计403字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处:https://www.mlzj.net。