body {
    color: silver;
    background-color: #0d1117;
    background-repeat: no-repeat;  
}
#main {
    background-color: #0d1117;
    /* font-family: KaiTi; */
}
span {
    color: #ffff00;
}
::selection {
    color: #00ff00;
    background-color: #012;
}
a:visited, a:active, a:link {
    color: cyan;
    text-decoration: none;
}
a {
    color: cyan;
    font-family: KaiTi;
}
a:hover {
    text-decoration: none;
    color: darkorange;
}
/* 滚动条 */
::-webkit-scrollbar {
    background: black;
    width: 10px;
}
::-webkit-scrollbar-track
{
    background-color:black;
    border-radius:10px;
    -webkit-box-shadow:inset 0 0 6px darkred;
}
::-webkit-scrollbar-thumb {
    background: red;
    border-radius:10px;
    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);
}
/* ::-webkit-scrollbar-thumb:window-inactive {
    background: darkred;
} */

/* 文章列表 */
.post {
    block-size:  ;
}
.postDesc {
    text-align: right;
    font-size: 12px;
    color: #A0A0A0;
    /* border-bottom: 1px double #ff00ff; */
}
/* 导航栏 */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #161b22;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 2px solid #0000ff;
    /* border-bottom: 1px dashed #00ff00; */
}
/* Markdown 相关配置 */
h1 {
    /* cursor: grab; */
    color: yellow;
    border-bottom: 1px dashed blue;
}
h2 {

}
h3 {
    color: white;
}
code {
    color: darkorange;
    background-color: #012;
}
blockquote {
    border-left: #ff00ff;
}
summary {
    color: red;
}
/* 页脚配置 */
#footer {
    color: silver;
    background-color: #0d1117;
    /* border: 2px;
    border-color: gray; */
    /* font-size: ; */
    text-align: center;
}
