Last active
May 22, 2020 05:03
-
-
Save allenlsy/a4f62e8ab5ade3db489bb36ade2d7bf4 to your computer and use it in GitHub Desktop.
markdown css for vscode md preview
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
| h1, h2, h3, h4 { | |
| margin-top: 2.5em; | |
| } | |
| h1 { | |
| font-family: "Georgia", sans; | |
| font-size: 2.4em; | |
| text-transform: uppercase; | |
| font-weight: bold; | |
| } | |
| h2, h3, h4 { | |
| font-family: "SF UI Text", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; | |
| font-weight: bolder; | |
| } | |
| h2 { | |
| font-size: 2em; | |
| text-transform: uppercase; | |
| } | |
| h3 { | |
| font-size: 1.5em; | |
| } | |
| h4 { | |
| font-size: 1.2em; | |
| text-decoration: underline; | |
| } | |
| h5, h6 { | |
| margin-top: 1em; | |
| } | |
| h5 { | |
| font-size: 1.1em; | |
| font-weight: bolder; | |
| } | |
| h6 { | |
| font-size: 0.9em; | |
| font-style: italic; | |
| font-weight: bold; | |
| } | |
| code { | |
| font-size: 0.8em; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment