Changed header elements. Also added top margin for H3 element.
This commit is contained in:
@@ -28,7 +28,7 @@
|
|||||||
body { font-size: 14px; }
|
body { font-size: 14px; }
|
||||||
p { font-size: 15px; line-height: 1.6em; margin-top: 0.8em; margin-bottom: 0.8em; }
|
p { font-size: 15px; line-height: 1.6em; margin-top: 0.8em; margin-bottom: 0.8em; }
|
||||||
li { line-height: 1.6em; }
|
li { line-height: 1.6em; }
|
||||||
|
h3 { margin-top: 2.5em; }
|
||||||
|
|
||||||
/* Styling for articles */
|
/* Styling for articles */
|
||||||
.article { padding-bottom:20px; padding-right: 40px; }
|
.article { padding-bottom:20px; padding-right: 40px; }
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<div class='article'>
|
<div class='article'>
|
||||||
<div class="content-title">
|
<div class="content-title">
|
||||||
<h2>{{ article.title }}</h2>
|
<h1>{{ article.title }}</h1>
|
||||||
{% include "metadata.html" %}
|
{% include "metadata.html" %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<div class='article'>
|
<div class='article'>
|
||||||
<div class="content-title">
|
<div class="content-title">
|
||||||
<a href="{{ SITEURL }}/{{ article.url }}"><h2>{{ article.title }}</h2></a>
|
<a href="{{ SITEURL }}/{{ article.url }}"><h1>{{ article.title }}</h1></a>
|
||||||
{% include "metadata.html" %}
|
{% include "metadata.html" %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -23,14 +23,14 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if loop.length > 1 %}
|
{% if loop.length > 1 %}
|
||||||
<h2>Other Entries</h2>
|
<h1>Other Entries</h1>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{# other items #}
|
{# other items #}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
||||||
<div class='article'>
|
<div class='article'>
|
||||||
<a href="{{ SITEURL }}/{{ article.url }}"><h3>{{ article.title }}</h3></a>
|
<a href="{{ SITEURL }}/{{ article.url }}"><h1>{{ article.title }}</h1></a>
|
||||||
<div class= "well small"> {% include "metadata.html" %} </div>
|
<div class= "well small"> {% include "metadata.html" %} </div>
|
||||||
<div class="summary">{{ article.summary }} <a class="btn btn-info xsmall" href="{{ SITEURL }}/{{ article.url }}">read more</a></div>
|
<div class="summary">{{ article.summary }} <a class="btn btn-info xsmall" href="{{ SITEURL }}/{{ article.url }}">read more</a></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user