
/*************************************************************************
    Description: Remove hyperlink underline.
    Author: wowpH
    Date: 2019-11-11 18:12:17
*************************************************************************/
.postBody a:link, .postBody a:visited, .postBody a:active {
    text-decoration: none;
}

/*************************************************************************
    @Description: Code copy button.
    @Date: 2019-11-9 23:25:10
*************************************************************************/
/*添加按钮*/
.cnblogs-markdown pre {
    position: relative;
}
.cnblogs-markdown pre > span {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
}
.cnblogs-markdown pre > .copyed {
    background: #67c23a;
}

/*************************************************************************
    @Description: Home top margin.
    @Date: 2019-11-9 09:03:25
*************************************************************************/
/*
#home {
    margin-top: 5px;
}
*/

/*************************************************************************
    @Description: Comment box width.
    @default: 435px
    @Date: 2019-11-9 09:03:25
*************************************************************************/
#comment_form_container .comment_textarea {
    width: 700px;
}

/*************************************************************************
    @Description: Turn the avatar into a circle.
    @From: https://www.cnblogs.com/real-me/p/8336741.html
    @Date: 2019-11-9 00:06:58
*************************************************************************/
#blog-news > img {
    display: block;
    margin: auto;
    border-radius: 50%;
}

/*************************************************************************
    @Description: Single line of code.
    @Date: 2019-11-8 23:12:43
*************************************************************************/
.cnblogs-markdown code {
    font-family: Consolas, "Microsoft YaHei", monospace !important;
    font-size: 16px!important;
    line-height: 20px;
    background-color: #f5f5f5!important;
    border: 0.5px solid #ccc!important;
    padding: 0 5px!important;
    border-radius: 4px!important;
    line-height: 1.4;
    margin: 1px 5px;
    vertical-align: middle;
    display: inline-block;
    /* box-shadow: 3px 3px 5px #888888; */
}

/*************************************************************************
    @Description: Multi-line code, reference.
    @Date: 2019-11-8 23:11:39
*************************************************************************/
.cnblogs-markdown .hljs {
    font-family: Consolas, "Microsoft YaHei", monospace !important;
    font-size: 16px!important;
    line-height: 1.5!important;
    padding: 5px!important;
}