Last active
June 28, 2019 06:51
-
-
Save pcrockett/ae7d01fa8088269a82b4093a4b9b65c7 to your computer and use it in GitHub Desktop.
My preferred Markdown style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Inspired by https://github.com/raycon/vscode-markdown-style | |
| */ | |
| body { | |
| color: #d2d2d2; | |
| background-color: #2e2e2e; | |
| max-width: 50em; | |
| margin-left: auto; | |
| margin-right: auto; | |
| padding-left: 0.3em; | |
| padding-right: 0.3em; | |
| line-height: 1.5; | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
| font-size: 18px; | |
| } | |
| a { | |
| color: #61AFEF; | |
| } | |
| h1, | |
| h2, | |
| h3, | |
| h4, | |
| h5, | |
| h6 { | |
| font-weight: 600; | |
| color: #cbcbcb; | |
| } | |
| code { | |
| color: #C3A278; | |
| background-color: #2C323C; | |
| padding-left: 0.2em; | |
| padding-right: 0.2em; | |
| border-radius: 0.1em; | |
| } | |
| pre { | |
| background-color: #2C323C; | |
| padding: 0.5em; | |
| border-radius: 0.1em; | |
| } | |
| table>thead>tr>th { | |
| border-color: #2C323C; | |
| } | |
| h1, | |
| hr, | |
| table>tbody>tr+tr>td { | |
| border-color: #2C323C; | |
| } | |
| blockquote { | |
| color: #8F8F8F; | |
| font-style: italic; | |
| background: transparent; | |
| border-color: #2C323C; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment