﻿

/*通用hljs代码样式*/
pre {
    position: relative;
}

    pre code.hljs::before {
        font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
        position: absolute;
        top: 0;
        right: 0;
        color: #ccc;
        text-align: right;
        font-size: 0.6em;
        padding: 5px 10px 0;
        line-height: 15px;
        height: 15px;
        font-weight: 600;
    }

/*hljs powershell 样式*/
    pre code.hljs.powershell::before {
        content: "PowerShell";
    }



/*hljs xml 样式*/
    pre code.hljs.xml::before {
        content: "XML";
    }

    pre code.hljs.bash::before {
        content: "bash";
    }

    pre code.hljs.json::before {
        content: "JSON";
    }


/*基于bootcss的table样式修改*/
.table th {
    padding: .5rem;
}

.table td {
    padding: .5rem;
}

/*引用内容*/
.ref_content {
    border-left-color: #9366ff;
    padding: 12px 24px 12px 30px;
    margin: 2em 0;
    border-left-width: 4px;
    border-left-style: solid;
    background-color: #f8f8f8;
    position: relative;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}



    .ref_content:before {
        content: "参";
        position: absolute;
        top: 14px;
        left: -13px;
        color: #fff;
        background-color: #9366ff;
        width: 22px;
        height: 22px;
        border-radius: 100%;
        text-align: center;
        line-height: 22px;
        font-weight: bold;
        font-family: "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
        font-size: 14px;
    }

    .ref_content > .title {
        font-size: 18px;
        font-weight: bold;
    }

    .ref_content > .line {
        font-size: 18px;
    }
