Fixed some styles for hrs and visited footnotes

This commit is contained in:
Felipe M 2020-02-02 19:49:35 +01:00
parent 86f7671ff6
commit cda0d1c23b
Signed by: fmartingr
GPG key ID: 716BC147715E716F
5 changed files with 10 additions and 6 deletions

View file

@ -18,6 +18,10 @@ article.blog-post
img
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)
.footnotes
a:visited
color: lighten($highlight-color, 20%)
blockquote
display: block
background: #eee

View file

@ -14,7 +14,7 @@ a
&.no-underline
text-decoration: none
hr.light
hr
border: 0px
margin: 1em 0 1em 0
border-top: #CCC 1px solid

View file

@ -23,14 +23,14 @@
<header>
<h1>Felipe Martín</h1>
<img class="avatar" src="{{ '/static/images/avatar.jpg'|asseturl }}">
<hr class="light" />
<hr />
<nav>
<a {% if this.path == '/' %}class="text-bold"{% endif %} href="{{ '/'|url }}">/home</a>
{% for section in site.get('/').children %}
<a {% if this.is_child_of(section) %}class="text-bold"{% endif %} href="{{ section|url }}">{{ section.path }}</a>
{% endfor %}
</nav>
<hr class="light" />
<hr />
<ul class="social text-size-small">
<li>
<span class="title">E-mail</span>
@ -55,7 +55,7 @@
<a href="{{ '/about'|url }}">[+ more]</a>
</li>
</ul>
<hr class="light" />
<hr />
<ul class="social text-size-small">
<li>
<span class="title">Site created using</span>

View file

@ -11,7 +11,7 @@
<h3 class="title"><a href="{{ post|url }}">{{ post.title }}</a></h3>
<div class="info">{{ post.pub_date.strftime("%B %d, %Y") }}</div>
</article>
<hr class="light">
<hr />
{% endfor %}
{{ this.body }}
{% endblock %}

View file

@ -19,6 +19,6 @@
{{ post.edit_comment }}
{% endif %}
{% endif %}
<hr class="light">
<hr />
</article>
{% endmacro %}