Merge branch 'master' into watch-command

This commit is contained in:
Mathieu David 2015-11-10 16:33:25 +01:00
commit 22b6448381
4 changed files with 12 additions and 6 deletions

2
.gitignore vendored
View File

@ -1,5 +1,5 @@
target
Cargo.lock Cargo.lock
target
book-test book-test
book-example/book book-example/book

View File

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook" name = "mdbook"
version = "0.0.2" version = "0.0.3"
authors = ["Mathieu David <mathieudavid@mathieudavid.org>"] authors = ["Mathieu David <mathieudavid@mathieudavid.org>"]
description = "create books from markdown files (like Gitbook)" description = "create books from markdown files (like Gitbook)"
documentation = "http://azerupi.github.io/mdBook/index.html" documentation = "http://azerupi.github.io/mdBook/index.html"

View File

@ -9,6 +9,10 @@ body {
.right { .right {
float: right; float: right;
} }
h2,
h3 {
margin-top: 2.5em;
}
.sidebar { .sidebar {
position: absolute; position: absolute;
left: 0; left: 0;

View File

@ -1,12 +1,14 @@
html, body { html, body {
font-family: "Open Sans", sans-serif; font-family: "Open Sans", sans-serif
color: #333; color: #333
} }
.left { .left {
float: left; float: left
} }
.right { .right {
float: right; float: right
} }
h2, h3 { margin-top: 2.5em }