Create readme.md

This commit is contained in:
Sindre Sorhus 2017-06-15 12:42:55 +02:00 committed by GitHub
parent 6ef6435700
commit 7811a7b836

View File

@ -21,8 +21,8 @@ $ npm install --save github-markdown-css
Import the `github-markdown.css` file and add a `markdown-body` class to the container of your rendered Markdown and set a width for it. GitHub uses `980px` width and `45px` padding, and `15px` padding for mobile.
```html
<link rel="stylesheet" href="github-markdown.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="github-markdown.css">
<style>
.markdown-body {
box-sizing: border-box;
@ -31,7 +31,8 @@ Import the `github-markdown.css` file and add a `markdown-body` class to the con
margin: 0 auto;
padding: 45px;
}
@media (max-width:767px) {
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}