Merge branch 'master' into watch-command
This commit is contained in:
commit
22b6448381
|
@ -1,5 +1,5 @@
|
||||||
target
|
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
target
|
||||||
|
|
||||||
book-test
|
book-test
|
||||||
book-example/book
|
book-example/book
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 }
|
||||||
|
|
Loading…
Reference in New Issue