Added qualitative CSS class for post contents

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2019-06-08 14:00:55 +02:00
parent 85cf90776d
commit a308ddd3e8
4 changed files with 3 additions and 7 deletions

View File

@ -57,10 +57,6 @@ $navbarHeight: 58px;
background-color: $body-bg;
}
.post-content, p {
text-align: justify;
}
.post-title {
font-weight: $font-weight-normal;
}

View File

@ -36,5 +36,5 @@ layout: default
</li>
{% endif %}
</ul>
<div class="text-justify" itemprop="description">{{ content }}</div>
<div class="text-justify post-content" itemprop="description">{{ content }}</div>
</div>

View File

@ -7,7 +7,7 @@ layout: default
<h1 class="post-title">{{ page.title }}</h1>
</header>
<div class="text-justify">
<div class="text-justify post-content">
{{ content }}
</div>

View File

@ -24,7 +24,7 @@ layout: default
</div>
</header>
<div class="text-justify" itemprop="articleBody">
<div class="text-justify post-content" itemprop="articleBody">
{{ content|toc }}
</div>