minimal主题添加hot小图标

在theme.scss.liquid末尾空白处添上.如果你有两个以上的标签想要变红,把下面的代码复制一次,然后把4改成要加的链接的索引即可。



 .site-nav>li:nth-of-type(4)>a{color:red;font-weight:bold;position:relative}


.chicv-relative{
  position:relative;
}

.hotTag::after {
    position: absolute;
    top: 95%;
    left: 5px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #f35b6e transparent transparent transparent;
}
.hotTag {
    position: absolute;
    padding: 0 6px .5px;
    left: 15px;
    top: -20px;
    color: #fff;
    background-color: #f35b6e;
    line-height: 15px;
    height: 15px;
    font-size: 10px;
    white-space: nowrap;

}

然后再site-nav.liquid文件{{- link.title | escape -}},大概在237行左右添加下面的代码。并且在 hot {%- endif -%}

image.png

你可能感兴趣的:(minimal主题添加hot小图标)