about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2015-03-10 11:15:12 -0700
committerCase Duckworth2015-03-10 11:15:12 -0700
commite47698d313ce29bd7e1628161e86e8a05ac1cd4c (patch)
treee24f204767aa5cdd8ca2e6ddef623300ecf845fd
parentHTML compile 2015-03-09 (diff)
downloadautocento-e47698d313ce29bd7e1628161e86e8a05ac1cd4c.tar.gz
autocento-e47698d313ce29bd7e1628161e86e8a05ac1cd4c.zip
Fix alignment bugs with template, .prose, .verse
-rw-r--r--.template.html2
-rw-r--r--css/prose.css1
-rw-r--r--css/verse.css3
3 files changed, 4 insertions, 2 deletions
diff --git a/.template.html b/.template.html index e3b33e7..09ac2a5 100644 --- a/.template.html +++ b/.template.html
@@ -31,7 +31,7 @@
31</head> 31</head>
32<body> 32<body>
33$for(include-before)$ $include-before$ $endfor$ 33$for(include-before)$ $include-before$ $endfor$
34<article id="header"> 34<article id="container">
35 <header> 35 <header>
36 <!-- title --> 36 <!-- title -->
37 $if(title)$<h1 class="title">$title$</h1>$endif$ 37 $if(title)$<h1 class="title">$title$</h1>$endif$
diff --git a/css/prose.css b/css/prose.css index 575278f..28b2db2 100644 --- a/css/prose.css +++ b/css/prose.css
@@ -8,6 +8,7 @@
8.prose { 8.prose {
9 text-align: justify; 9 text-align: justify;
10 max-width: 39em; 10 max-width: 39em;
11 margin: auto;
11 hyphens: auto; 12 hyphens: auto;
12 -moz-hyphens: auto; 13 -moz-hyphens: auto;
13} 14}
diff --git a/css/verse.css b/css/verse.css index 1e04654..b76ff2c 100644 --- a/css/verse.css +++ b/css/verse.css
@@ -10,5 +10,6 @@
10} 10}
11 11
12.verse { 12.verse {
13 display: inline-box; 13 display: inline-block;
14 text-align: left;
14} 15}