Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Commit

Permalink
Added specific epub stylesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-PK committed Aug 16, 2012
1 parent 5e06963 commit ace7233
Show file tree
Hide file tree
Showing 2 changed files with 158 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.sh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
pandoc -s ../index.md -o ../index.html -c style.css --include-before-body=author.html --include-before-body=share.html --title-prefix='Developing Backbone.js Applications' pandoc -s ../index.md -o ../index.html -c style.css --include-before-body=author.html --include-before-body=share.html --title-prefix='Developing Backbone.js Applications'


#epub #epub
pandoc -s ../index.md -t epub --epub-metadata=metadata.xml -o ../backbone-fundamentals.epub --epub-stylesheet=../style.css --title-prefix='Developing Backbone.js Applications' --epub-cover-image=../img/cover.jpg pandoc -s -S ../index.md -t epub --epub-metadata=metadata.xml -o ../backbone-fundamentals.epub --epub-stylesheet=../epub.css --title-prefix='Developing Backbone.js Applications' --epub-cover-image=../img/cover.jpg


#rtf #rtf
pandoc -s title.txt -S ../index.md -o ../backbone-fundamentals.rtf pandoc -s title.txt -S ../index.md -o ../backbone-fundamentals.rtf
157 changes: 157 additions & 0 deletions epub.css
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,157 @@
html, body, div, span,
h1, h2, h3, h4, h5, h6,
p, a, em, strong, b, u, i, pre, code, del, strike,
abbr, acronym, address, q, cite, blockquote,
big, small, sub, sup, tt, var, center,
img, dfn, ins, kbd, s, samp,
dl, dt, dd, ol, ul, li,
fieldset, legend, label,
table, caption, tbody, tfoot, thead, tr, th, td
{
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}

@page {
margin: 5px;
}

p {
margin-bottom: 9px;
line-height: 1.4;
}

a {
color: #0069d6;
}

a:hover {
color: #0050a3;
text-decoration: none;
}

a img {
border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
color: #404040;
line-height: 1.5;
margin: 1em 0 0.5em;
-webkit-hyphens: none;
hyphens: none;
adobe-hyphenate: none;
}

h1 {
font-size: 220%;
margin-bottom: 1.5em;
}

h2 {
font-size: 190%;
}

h3 {
font-size: 160%;
}

h4 {
font-size: 140%;
}

h5 {
font-size: 130%;
}

h6 {
font-size: 120%;
}

hr {
margin: 0 0 19px;
border: 0;
border-bottom: 1px solid #ccc;
}

blockquote {
padding: 13px 13px 21px 15px;
margin-bottom: 18px;
font-family:georgia,serif;
font-style: italic;
}

blockquote:before {
content: "\201C";
font-size: 300%;
margin-left: -10px;
font-family: serif;
color: #eee;
}

blockquote p {
font-size: 120%;
margin-bottom: 0;
font-style: italic;
}

code, pre {
font-family: monospace;
}

code {
background-color: #fee9cc;
color: rgba(0, 0, 0, 0.75);
padding: 1px 3px;
-webkit-border-radius: 5px;
border-radius: 5px;
font-size: 85%;
}

pre {
display: block;
padding: 14px;
margin: 0 0 18px;
font-size: 85%;
line-height: 16px;
border: 1px solid #d9d9d9;
white-space: pre-wrap;
word-wrap: break-word;
-webkit-hyphens: none;
hyphens: none;
adobe-hyphenate: none;
}

pre code {
background-color: #fff;
color: #737373;
padding: 0;
}

code.sourceCode span.kw { color: #007020; font-weight: bold; }
code.sourceCode span.dt { color: #902000; }
code.sourceCode span.dv { color: #40a070; }
code.sourceCode span.bn { color: #40a070; }
code.sourceCode span.fl { color: #40a070; }
code.sourceCode span.ch { color: #4070a0; }
code.sourceCode span.st { color: #4070a0; }
code.sourceCode span.co { color: #60a0b0; font-style: italic; }
code.sourceCode span.ot { color: #007020; }
code.sourceCode span.al { color: red; font-weight: bold; }
code.sourceCode span.fu { color: #06287e; }
code.sourceCode span.re { }
code.sourceCode span.er { color: red; font-weight: bold; }

body {
font-family: serif;
}

0 comments on commit ace7233

Please sign in to comment.