shenliyang / hexo-theme-snippet

Snippet 简洁而不简单,也许是一款你寻找已久的hexo主题
https://snippet.shenliyang.com/
MIT License
1.09k stars 208 forks source link

点击分类或者标签时,顶端的分类和标签的样式 #120

Closed nygula closed 5 years ago

nygula commented 5 years ago

\themes\hexo-theme-snippet\source\css\less 增加如下样式 .main-content{

.title {
    margin-top: 0;
    padding-bottom: 12px;
    margin-bottom: 1px;
    position: relative;
    background: white;
    padding-top: 10px;
    padding-left: 10px;
    &:after {
        content: "";
        width: 90px;
        height: 1px;
        background: @theme_color;
        position: absolute;
        left: 0;
        bottom: -1px;
    }
}

}

\themes\hexo-theme-snippet\layout_partial\archive.ejs <% if(page.tag) { %>

<%= page.tag %>

<% } if(page.category) { %>

<%= page.category %>

<% } else { %> <% } %>

shenliyang commented 5 years ago

谢谢,收到