Skip to content

Commit

Permalink
Bumped version that was still set to 0.0.1 + added a bigger top margi…
Browse files Browse the repository at this point in the history
…n for h2 and h3 elements
  • Loading branch information
azerupi committed Nov 10, 2015
1 parent aae23f4 commit 6dcb411
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 172 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Cargo.lock
target

book-test
Expand Down
167 changes: 0 additions & 167 deletions Cargo.lock

This file was deleted.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook"
version = "0.0.1"
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"
Expand Down
4 changes: 4 additions & 0 deletions src/theme/book.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ body {
.right {
float: right;
}
h2,
h3 {
margin-top: 2.5em;
}
.sidebar {
position: absolute;
left: 0;
Expand Down
10 changes: 6 additions & 4 deletions src/theme/stylus/general.styl
Original file line number Diff line number Diff line change
@@ -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 }

0 comments on commit 6dcb411

Please sign in to comment.