auto commit

This commit is contained in:
CyC2018 2019-06-19 21:11:06 +08:00
parent 10af2cb714
commit c5487ce829

View File

@ -12,7 +12,8 @@
<!-- 将自定义样式放在 Github 上会导致加载速度变得非常慢,所以采取直接内嵌的方式 --> <!-- 将自定义样式放在 Github 上会导致加载速度变得非常慢,所以采取直接内嵌的方式 -->
<style type="text/css"> <style type="text/css">
/* 隐藏头部的目录 */
/* 隐藏头部的目录 */
#main>ul:nth-child(1) { #main>ul:nth-child(1) {
display: none; display: none;
} }
@ -35,7 +36,7 @@
img, img,
pre { pre {
border-radius: 8px; border-radius: 5px;
} }
.content, .content,
@ -61,6 +62,10 @@
/*font-family: Microsoft YaHei, Source Sans Pro, Helvetica Neue, Arial, sans-serif !important;*/ /*font-family: Microsoft YaHei, Source Sans Pro, Helvetica Neue, Arial, sans-serif !important;*/
} }
.markdown-section pre>code {
font-size: 13px;
}
.markdown-section>p { .markdown-section>p {
font-size: 16px !important; font-size: 16px !important;
} }
@ -69,6 +74,14 @@
font-family: Consolas, Roboto Mono, Monaco, courier, monospace !important; font-family: Consolas, Roboto Mono, Monaco, courier, monospace !important;
} }
p, h1, h2, h3, h4, ol, ul {
letter-spacing: 3px !important;
}
p, ol, ul {
line-height: 30px !important;
}
@media (min-width:600px) { @media (min-width:600px) {
.markdown-section pre>code { .markdown-section pre>code {
font-size: .9rem !important; font-size: .9rem !important;
@ -101,7 +114,7 @@
.markdown-section > div > img, .markdown-section > div > img,
.markdown-section pre { .markdown-section pre {
box-shadow: 2px 2px 20px 6px #ddd !important; box-shadow: 0px 0px 20px 11px #eaeaea;
} }
pre { pre {
@ -118,10 +131,14 @@
@media (max-width:600px) { @media (max-width:600px) {
pre { pre {
padding-left: 0px !important; padding-left: 3px !important;
padding-right: 0px !important; padding-right: 3px !important;
margin-left: -20px !important;
margin-right: -20px !important;
box-shadow: 0px 0px 20px 0px #eee !important;
} }
.docsify-copy-code-button { .docsify-copy-code-button {
display: none; display: none;
} }
@ -248,8 +265,8 @@
/*深蓝加粗*/ /*深蓝加粗*/
.token.keyword { .token.keyword {
color: #124363; color: #333;
font-weight: bold; font-weight: 700;
} }