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
target
book-test
book-example/book

View File

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

View File

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

View File

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