<br />
<b>Deprecated</b>:  The each() function is deprecated. This message will be suppressed on further calls in <b>/home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php</b> on line <b>456</b><br />
:root {
    color-scheme: light dark;
}

/* Color Schemes */

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #16022f;
        --cb: #2f3140;
        --lt: #d4e1ff;
        --gr: #9a9ea7;
        --ac: #e6e4e1;
        --bl: #202651;
        --sc: #9f9684;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        --bg: #ffeade;
        --cb: #f2ddd0;
        --lt: #16022f;
        --gr: #3e3e52;
        --ac: #25034e;
        --bl: #f7f4ff;
        --bl2: #fbf0fd;
/* Potentially good colors */
    }
}

/* ---- */

body {
    background-color: var(--bg);
    color: var(--lt);
    margin: 3em auto;
    max-width: 40em;
    font-family: Arial, sans-serif;
    font-size: 1.25em;
}
h1 {
    margin: 1.5rem auto;
}
p {
    line-height: 2;
}

ul {
    margin: 0;
    padding-left: 1.5em;
}
ol {
    padding-left: 1.5em;
}
li {
    margin: 0.5em 0;
}
a {
    text-decoration: underline dotted var(--ac) 1px;
    color: inherit;
}
header h3 {
    margin: 0;
    max-width: 75%;
}
a[href^="/"], a[href^="./"] {
    text-decoration-style: dashed;
}
a[href^="/wiki"], a[href^="/en/wiki"] {
    color: var(--ac);
    text-decoration-thickness: 2px;
}
a[href^="/posts"], a[href^="/en/posts"] {
    text-decoration-color: var(--ac);
    text-decoration-thickness: 2px;
    background-color: var(--cb);
}
a:hover:link, a:focus:link {
    text-decoration: underline !important;
}
article {
    hyphens: auto;
}
article header {
    margin: 1em 0;
}
article h1 {
    color: var(--ac);
}
article a:visited {
    background-color: color-mix(in oklch, var(--cb), var(--bg) 33%);
    color: var(--gr);
    text-decoration-color: var(--gr);
}
table {
    table-layout: fixed;
    border-collapse: collapse;
    margin: 1em 0;
    border: var(--lt) 1px solid;
    padding: 1em;
    width: 100%;
    overflow: auto;
}
thead {
    border-bottom: var(--lt) 1px dashed;
}
th, td {
    padding: 0.333em 0.5em;
    border-right: var(--lt) 1px dashed;
}
.blogPostsList p {
    margin: 0;
    line-height: 1.5
}
.blogPostsList ol {
    list-style: upper-roman;
}
.article-title {
    color: var(--ac);
    text-decoration: none;
    text-align: center;
}

hr {
    color: var(--gr);
}

nav {
    margin: 1em auto;
}

.invalid-reference {
    text-decoration: underline dashed 1px var(--lt);
    cursor: help;
    opacity: 0.8;
    background-color: var(--cb);
}

#wikiList {
    background: var(--bl);
    border: var(--ac) 2px inset;
    padding: 1em;
}

#.wikiList > ul {
    margin: 0;
    list-style-type: disclosure-closed;
    padding: 0 0.7em;
}

.tag {
    text-transform: uppercase;
    max-height: 2em;
}

.tag a {
    text-decoration: none;
    margin: 0.1em;
    border: var(--gr) 1px solid;
    background: var(--cb);
    border-radius: 4px;
    padding: 0.25em;
}

#homeTagList {
    display: flex;
    flex-direction: column;
    flex-flow: wrap;
    justify-content: end;
    align-content: center;
}

#tagList {
    line-height: 2;
}

#wiki-title {
    display: inline-block;
    margin: 0 1rem 0 0;
}

#wiki-heading-block {
    align-content: baseline;
    margin-bottom: 1em;
}

#wiki-timestamps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}


#wiki-pages {
    margin-bottom: 1em;

    & header {
        margin-bottom: 0.333em;
    }

    li {
        background-color: var(--bl);
        padding: 1em 1em 0.5em 1em;
        border: var(--ac) 2px outset;
    }
}

.v-header {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

/* Code Blocks */

pre {
    padding: 1.5em;
    background-color: var(--cb);
    border: var(--lt) 1px solid;
    overflow-x: auto;
}

.highlight table pre {
    padding: 0;
    border: none;
}

.highlight table {
    background-color: var(--cb);
    width: inherit;
}

.highlight > pre.chroma {
    background-color: var(--cb);
    padding: 1em;
}

.lntd:last-child {
    width: 100%
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0.5em 0;
}
.post-header h3 {
    margin: 0.5em 0;
}

div.highlight {
    overflow: auto;
}

figure {
    margin: 1em;
    text-align: center;
}

figure img {
    max-width: 100%;
}

.figure-number {
    display: none;
}

blockquote {
    margin: 1em auto;
    padding: 0.75em 1em;
    border-left: 2px solid var(--ac);
    background-color: var(--cb);
}
.blog-post {
    margin: 0 auto;
}
.blog-post p {
    text-indent: 1em;
    margin: 0;
}

.blog-post figcaption p {
    text-indent: 0;
}

.blog-post li p {
    text-indent: 0;
}

.article-text {
    margin-top: 1em;
    margin-bottom: 1em;
}

.article-text > p:first-child {
    text-indent: 0;
}

blockquote > p:first-child {
    text-indent: 0;
}
blockquote p {
    margin: 0;
}

.article-text ol {
    line-height: 2;
    padding-left: 2em;
}

.article-text ul {
    line-height: 2;
    padding-left: 2em;
}

.article-timestamp {
    display: flex;
    justify-content: space-evenly;
}

.article-tags {
    text-align: center;
    margin: 1.3rem auto;
}

.footnotes p {
    text-indent: 0;
}

#header-links {
    display: flex;
    justify-content: space-between;
}

.linksList {
    margin: 1em;
    line-height: 2;
}

/* Chirps */

.chirpsList > ol {
    list-style: none;
    padding: 0;
}

.chirp {
    padding: 0 1em;
    margin: 1em auto;
    border: 2px solid var(--ac);
    border-radius: 10px;
    border-style: ridge;
}

.chirp p {
    line-height: 1.5;
}

.chirp-wd {
    color: var(--gr);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
}

.chirp-tags {
    margin: 1.3rem auto;
}

.chirp-title {
    text-decoration: none;
    margin: 0.5em 0;
    font-size: 2rem;
}

.chirp-body {
    overflow: hidden;
    line-height: 1.5;
}
}

/* ---- */

/* Utility Classes */

.gray {
    color: var(--gr);
}

.between {
    display: flex;
    justify-content: space-between;
}

.m1 {
    margin: 1em auto;
}

.smolfont {
    font-size: 0.75em;
}

.twoc {
    /* column-count: 2; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
}

.gappy {
    display: flex;
    gap: 1em;
}

.naked-list {
    list-style: none;
    padding: 0;

    li {
        margin: 0;
    }
}

/* ---- */

/* Mobile optimization */

@media screen and (max-width:900px) {
    body {
        margin: 3em 2em;
        padding: 0;
        font-size: 1.2em;
    }
    main > h1 {
        line-height: 1.7;
    }
    table {
        display: block;
        padding: 0;
    }
    .article-text ol {
        padding-left: 1.5em;
    }
    .article-text ul {
        padding-left: 1.5em;
    }
    .post-header {
        flex-direction: column;
    }
    figure {
        margin: 1em 0;
    }
    .twoc {
        grid-template-columns: 1fr;
    }
}

/* ---- */
