Merge branch 'master' into watch-command
This commit is contained in:
commit
22b6448381
|
@ -1,5 +1,5 @@
|
|||
target
|
||||
Cargo.lock
|
||||
target
|
||||
|
||||
book-test
|
||||
book-example/book
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -9,6 +9,10 @@ body {
|
|||
.right {
|
||||
float: right;
|
||||
}
|
||||
h2,
|
||||
h3 {
|
||||
margin-top: 2.5em;
|
||||
}
|
||||
.sidebar {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Reference in New Issue