由于之前的主题,每次更新都会导致部分样式不兼容(点了一下备份还原,丢了1年多的文章,心态崩了),所以决定重新选择使用其他主题,这次的主题颜色为红色。

/*滚动条使用与代码风格相似的蓝色,使用更细的样式*/
::-webkit-scrollbar {width: 2px;height: 2px;}
::-webkit-scrollbar-thumb {border-radius: 1px;-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.2);background: #358ccb;}
::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.06);border-radius: 1px;background: #EDEDED;}

/*目录颜色同步*/
.lwptoc a{
    color:#e91e63!important;
}
/*超链接鼠标hover显示下划线,更加醒目*/
.entry-content a{
    position: relative;
    text-decoration: none;
}
.entry-content a:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: all .18s;
}
.entry-content a:hover:before{
    width: 100%;
    left: 0;
    right: 0;
}
/*文本选择颜色同步*/
::selection{
    color:#ffffff;
    background:#e91e63;
}
分类: 随笔