Created
July 24, 2012 17:06
-
-
Save HHRy/3171230 to your computer and use it in GitHub Desktop.
It's more CSS-like than actual CSS.
This file contains 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 through to h6 map to the Markdown heading attributes, p matches any paragraph, there | |
isn't any ID or class support (yet!). | |
All sizes should be in percentages or points. Everything is calculated relative to the page's | |
font-size. | |
*/ | |
page { | |
page-size: 'A4'; | |
page-orientation: landscape; | |
font-size: 12pt; | |
color: #000; | |
} | |
h1 { | |
font-face: 'Trebuchet MS', sans-serif; | |
font-size: 150%; | |
font-weight: bold; | |
} | |
p { | |
padding: 10pt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment