Last active
October 10, 2015 07:28
-
-
Save djGrill/3655455 to your computer and use it in GitHub Desktop.
Custom CSS for blog posts
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
<style> | |
h1, h2, h3, p, span, i, a { | |
font-family: Helvetica Neue, Arial, Helvetica, sans-serif; | |
font-weight: normal; | |
margin-bottom: 12px; | |
} | |
h1, h2, h3 { | |
margin-top: 12px; | |
margin-bottom: 2px; | |
} | |
h3 { | |
font-weight: bold; | |
} | |
p { | |
margin-top: 0px; | |
margin-bottom: 16px; | |
} | |
b { | |
font-weight: bold !important; | |
} | |
pre { | |
color: #333; | |
margin-bottom: 20px; | |
border: 1px solid #ccc; | |
background-color: #f8f8f8; | |
padding: 6px 6px 3px; | |
font: 12px Monaco, "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment