Skip to content

Commit 6b824c7

Browse files
committed
Separate paragraphs with a blank line
1 parent 9590ce9 commit 6b824c7

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

static/style.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ h2 {
8282
div.point-logo+h2 {
8383
padding-top: 3rem;
8484
}
85-
section.point p.link a {
85+
section.point p+p {
86+
margin-top: 1rem;
87+
margin-bottom: 1rem;
88+
}
89+
section.point div.link a {
8690
color: #ffffff;
8791
text-decoration: none;
8892
display: block;

templates/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1>Fedora Loves Python</h1>
2323
{% endif %}
2424
<h2>{{ point.name }}</h2>
2525
{{ point.content | markdown }}
26-
<p class="link">
26+
<div class="link">
2727
<a href="{{ point.link.href }}">{{ point.link.caption }}</a>
28-
</p>
28+
</div>
2929
</section>
3030
{% endfor %}
3131
</div>

0 commit comments

Comments
 (0)