pre.prettyprint {
    font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 14px;
    padding: 30px 20px 10px 0;
    line-height: 1.5;
    border-radius: 6px;
    background-color: var(--background-color);
    border: 1px solid var(--line-color);
    position: relative;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    white-space: pre-wrap;
}

pre.prettyprint.dark {
    background: #000;
}

pre.prettyprint .pre-expand {
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    z-index: 999;
    width: 100%;
    background: rgba(216, 216, 216, 0.2);
    backdrop-filter: blur(3px);
    padding: 10px 5px;
    box-sizing: border-box;
    text-align: center;
}

pre.prettyprint code {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    border-radius: 0;
}

pre.prettyprint .linenums {
    overflow-x: auto;
    padding-left: 60px;
}

pre.prettyprint li {
    line-height: 1.5;
}

.code {
    width: 90%;
    border: 1px solid #888;
}

.pln {
    color: #5a5858;
}

.str {
    color: #080
}

.kwd {
    color: #cc7832;
    font-weight: bold;
}

.com {
    color: #aaacb6
}

.typ {
    color: #a9b7c6;
}

.lit {
    color: #6897bb
}

.pun, .opn, .clo {
    color: #495057
}

.tag {
    color: #008
}

.atn {
    color: #606
}

.atv {
    color: #080
}

.dec, .var {
    color: #606
}

.fun {
    color: red
}