h1{
    color: #141414;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
h2{
    border-bottom: 1px solid #ddd;
    color: #141414;
    font-size: 24px;
    margin: 20px 0;
    padding-bottom: 14px;
}
h3{
    color: #141414;
    font-size: 20px;
    margin: 20px 0;
    padding-left: 16px;
    position: relative;
    font-weight: 400;
    
}
h3:before {
    background: #1677ff;
    border-radius: 3px;
        box-shadow: 3px 0 6px -1px #1677ff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 5px;
}
h4{
    color: #141414;
    font-size: 18px;
    margin: 20px 0;
    padding-left: 22px;
    position: relative;
}
h4:before{
    border: 2px solid #06f;
    border-radius: 12px;
    box-shadow: 3px 0 6px -1px #06f;
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
}
.public-doc-content ul li:before{
    background: #06f; 
     border-radius: 4px; 
     content: ""; 
     height: 4px; 
     left: 0; 
     position: absolute; 
     top: 50%; 
     transform: translateY(-50%); 
     width: 4px;
}
pre{
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    font-size: 14px;
    margin: 0 0 12px;
    padding: 0;
    max-height: unset;
}
code{
    position: relative;
    max-height: 500px;
    overflow: auto;
    margin-left: 2px;
    margin-bottom: 2px;
    border-radius: 4px;
    display: block;
    overflow-x: auto;
    background: #2d3748;
    padding: 0.5em;
}