@font-face {
    font-family: "Cascadia Code";
    font-style: normal;
    font-weight: 400;
    src: url(/font/CascadiaCode.woff2) format('woff2');
}

.footer-content {
    display: none;
}

.markdown-body code,
.markdown-body pre {
    font-family: "Cascadia Code";
}

.code-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 6px 6px 0px rgba(0, 0, 0, 0.3);
    margin: 30px 0;
}

.code-wrapper ::-webkit-scrollbar {
    height: 10px;
}

.code-wrapper ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.code-wrapper ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.code-wrapper::before {
    color: #fff;
    content: attr(data-rel);
    height: 30px;
    line-height: 30px;
    background: #282c34;
    color: #fff;
    font-size: 16px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
    padding: 0px 80px;
    text-indent: 15px;
    float: left;
}

.code-wrapper::after {
    content: ' ';
    position: absolute;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fc625d;
    width: 12px;
    height: 12px;
    top: 0;
    left: 20px;
    margin-top: 13px;
    -webkit-box-shadow: 20px 0px #fdbc40, 40px 0px #35cd4b;
    box-shadow: 20px 0px #fdbc40, 40px 0px #35cd4b;
    z-index: 3;
}

.code-wrapper>pre {
    margin-bottom: 0;
}