add page class to doctitle for more accurate styling
authorDan Allen <dan@opendevise.com>
Wed, 17 Jul 2019 07:34:32 +0000 (01:34 -0600)
committerDan Allen <dan@opendevise.com>
Wed, 17 Jul 2019 07:34:32 +0000 (01:34 -0600)
src/css/doc.css
src/partials/article.hbs

index 648e14c..c91937b 100644 (file)
   max-width: 100%;
 }
 
-.doc > h1 {
+.doc > h1.page:first-child {
   font-size: 2rem;
   margin: 2rem 0 1.5rem;
 }
index 01df513..11a5117 100644 (file)
@@ -1,6 +1,6 @@
 <article class="doc">
 {{#if (eq page.layout '404')}}
-<h1>{{{or page.title 'Page Not Found'}}}</h1>
+<h1 class="page">{{{or page.title 'Page Not Found'}}}</h1>
 <div class="paragraph">
 <p>The page you&#8217;re looking for does not exist. It may have been moved.</p>
 </div>
@@ -10,7 +10,7 @@ If you typed the URL of this page manually, please double check that you entered
 </div>
 {{else}}
 {{#if page.title}}
-<h1>{{{page.title}}}</h1>
+<h1 class="page">{{{page.title}}}</h1>
 {{/if}}
 {{{page.contents}}}
 {{/if}}