fix UL in posts

This commit is contained in:
Set Hallstrom 2020-10-23 15:19:39 +02:00
parent 680915bf86
commit 74a7ba3c4e
2 changed files with 24 additions and 17 deletions

View file

@ -326,8 +326,9 @@ layout: default
<section class="info" id="read"> <section class="info" id="read">
<div class="info-pages"> <div class="info-pages">
<div class="container">
{{ content }} {{ content }}
</div>
{% if page.link.url %} {% if page.link.url %}
<p class="center"> <p class="center">

View file

@ -188,22 +188,28 @@ a:hover {
padding-top: 40px; padding-top: 40px;
max-width: var(--max-width); max-width: var(--max-width);
margin: auto; margin: auto;
img { .container {
margin-left: auto; img {
margin-right: auto; margin-left: auto;
width: 100%; margin-right: auto;
max-width: 600px; width: 100%;
height: auto; max-width: 600px;
display: block; height: auto;
} display: block;
h6 { }
font-size: 0.8em; h6 {
text-align: center; font-size: 0.8em;
} text-align: center;
blockquote { }
font-weight: 700; blockquote {
border-left: 3px dotted var(--fg); font-weight: 700;
padding-left: 40px; border-left: 3px dotted var(--fg);
padding-left: 40px;
}
ul {
list-style-type:circle;
padding-left:80px;
}
} }
} }