From f3fe5acad9ad4c3d70b5b8a896ef4d43925ac74d Mon Sep 17 00:00:00 2001 From: Raniere Silva Date: Fri, 13 Jun 2014 14:15:42 -0300 Subject: [PATCH] Update template for book to rely on CSS Use h2 tag for "subtitle" will break any tool used to convert HTML for another format. This commit replace h2 with span and rely on CSS for have the same look. --- book.css | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 book.css diff --git a/book.css b/book.css new file mode 100644 index 0000000..a291e02 --- /dev/null +++ b/book.css @@ -0,0 +1,10 @@ +span.subtitle { + color: #030303; + display: block; + font-family: inherit; + font-size: 31.5px; + font-weight: bold; + line-height: 40px; + margin: 40px 0px 10px 0px; + text-rendering: optimizelegibility; +}