diff --git a/css/code_fixer.css b/css/code_fixer.css index 3730201..b7106bb 100644 --- a/css/code_fixer.css +++ b/css/code_fixer.css @@ -1,14 +1,53 @@ +.wy-nav-content { + max-width: 1200px; +} + +body { + font-family: "微软雅黑", "宋体", "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif; +} + +h1, h2, h3, h4, h5, h6 { + margin-bottom: 10px; + margin-top: 20px; +} + +h1, h2 { + margin-top: 25px; + border-bottom: 1px solid #e1e4e5; + padding-bottom: 10px; +} + +.wy-nav-content p, .wy-nav-content ol, .wy-nav-content ul, .wy-nav-content dl { + margin-bottom: 10px !important; +} + +table td, table th { + font-size: 100% !important; +} + code,.rst-content tt { font-size: 100%; - background: #F8F8F8 + background: #F8F8F8; } p code { - font-size: 80% + font-size: 80%; + word-wrap: normal; + font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; } div.admonition code { + display: inline-block; + overflow-x: visible; + line-height: 18px; color: #404040; border: 1px solid rgba(0, 0, 0, 0.2); background: rgba(255, 255, 255, 0.7); -} \ No newline at end of file + font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; +} + +@media screen and (max-width: 800px) { + p, ol, ul { + text-align: left; + } +}