/* This is the overall wrapper, it should be treated as the `body` section. */.markdown-here-wrapper {font-size:14px;color:#595959;padding:16px;}
注释中说这个相当于 body,而我们的内容基本上都放在这里面,因此可以修改大部分统一的样式
这里将字体修改为 14 像素
字体颜色设置为 #595959,也就是稍微灰一点
向内缩进 16 像素
预格式文本及代码
pre,code {font-size:0.85em;font-family:Consolas, Inconsolata, Courier, monospace;color:#fff;}code {margin:0 0.15em;padding:0 0.3em;white-space:pre-wrap;border:1px solid #EAEAEA;background-color:black;border-radius:3px;display:inline; /* added to fix Yahoo block display of inline code */}pre {font-size:1em;line-height:1.2em;}precode {white-space:pre;overflow:auto; /* fixes issue #70: Firefox/Thunderbird: Code blocks with horizontal scroll would have bad background colour */border-radius:3px;border:1px solid #CCC;padding:0.5em 0.7em;display:block !important; /* added to counteract the Yahoo-specific `code` rule; without this, code blocks in Blogger are broken */}/* In edit mode, Wordpress uses a `* { font: ...;} rule+style that makes highlightedcode look non-monospace. This rule will override it. */.markdown-here-wrapper[data-md-url*="wordpress."] codespan {font:inherit;}/* Wordpress adds a grey background to `pre` elements that doesn't go well withour syntax highlighting. */.markdown-here-wrapper[data-md-url*="wordpress."] pre {background-color:transparent;}
段落
/* This spacing has been tweaked to closely match Gmail+Chrome "paragraph" (two line breaks) spacing.Note that we only use a top margin and not a bottom margin -- this prevents the"blank line" look at the top of the email (issue #243).*/p {/* !important is needed here because Hotmail/Outlook.com uses !important to kill the margin in <p>. We need this to win. */margin:0 0 1.2em 0 !important;}
每个段落在下方加外边距 1.2 个文字大小,即 1.2*14px
表格、引用、列表等
table,pre,dl,blockquote,q,ul,ol {margin:1.2em 0;}ul,ol {padding-left:2em;}li {margin:0.5em 0;}/* Space paragraphs in a list the same as the list itself. */lip {/* Needs !important to override rule above. */margin:0.5em 0 !important;}/* Smaller spacing for sub-lists */ulul,ulol,olul,olol {margin:0;padding-left:1em;}/* Use Roman numerals for sub-ordered-lists. (Like Github.) */olol,ulol {list-style-type:lower-roman;}/* Use letters for sub-sub-ordered lists. (Like Github.) */ululol,ulolol,olulol,ololol {list-style-type:lower-alpha;}dl {padding:0;}dldt {font-size:1em;font-weight:bold;font-style:italic;}dldd {margin:0 0 1em;padding:0 1em;}blockquote,q {border-left:4px solid #42b983;border-right:4px solid #42b983;padding:0 1em;background-color:#ecf8f2;color:#888;quotes:none;}/*blockquote::before, q::before { content: none;}blockquote::after, q::after{ position: relative; content: '\f10e' !important; font-size: 1rem; float: right; top: -1rem; margin-right: -10px; color: red; font-family: FontAwesome;} // emmmm,本来想加引号的,但是不支持*/table {padding:0;border-collapse:collapse;border-spacing:0;font-size:1em;font:inherit;border:0;}tbody {margin:0;padding:0;border:0;}tabletr {border:0;border-top:1px solid #CCC;background-color:white;margin:0;padding:0;}tabletr:nth-child(2n) {background-color:#F8F8F8;}tabletrth,tabletrtd {font-size:1em;border:1px solid #CCC;margin:0;padding:0.5em 1em;}tabletrth {font-weight:bold;color:white;background-color:#009688;}