-
-
Save sevenbest/ff42226d25156fc9b156 to your computer and use it in GitHub Desktop.
A default stylesheet based on GitHub’s Markdown formatting for use with BBEdit’s Preview CSS feature.
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
| body { | |
| background-color: #FFF; | |
| color: #333; | |
| font: 15px Helvetica, arial, freesans, clean, sans-serif; | |
| word-wrap: break-word; | |
| line-height: 1.7; | |
| padding: 0 20px 20px 20px; | |
| max-width: 722px; | |
| margin: auto; | |
| -webkit-font-smoothing: antialiased; | |
| } | |
| img { | |
| width: 100%; | |
| } | |
| a { | |
| color: #4183c4; | |
| text-decoration: none; | |
| } | |
| a:hover { | |
| text-decoration: underline; | |
| } | |
| p, blockquote, ul, ol, dl, table, pre { | |
| margin: 15px 0; | |
| } | |
| ul, ol { | |
| padding-left: 30px; | |
| } | |
| h1 { | |
| border-bottom: 1px solid #ddd; | |
| color: #000; | |
| font-size: 2.5em; | |
| } | |
| h2 { | |
| border-bottom: 1px solid #eee; | |
| color: #000; | |
| font-size: 2.0em; | |
| } | |
| h3 { | |
| font-size: 1.5em; | |
| } | |
| h4 { | |
| font-size: 1.2em; | |
| } | |
| h5 { | |
| font-size: 1.0em; | |
| } | |
| h6 { | |
| color: #777; | |
| font-size: 1.0em; | |
| } | |
| h1, h2, h3, h4, h5, h6 { | |
| font-weight: bold; | |
| line-height: 1.7; | |
| margin: 1em 0 15px 0; | |
| } | |
| h1 + p, h2 + p, h3 + p { | |
| margin-top: 10px; | |
| } | |
| code { | |
| background-color: #F8F8F8; | |
| border-radius: 3px; | |
| border: 1px solid #DDD; | |
| font-family: Consolas, "Liberation Mono", Courier, monospace; | |
| font-size: 12px; | |
| margin: 0 2px; | |
| padding: 0 5px; | |
| white-space: pre; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment