diff options
author | lxf <sng@luxagraf.net> | 2020-12-21 10:21:39 -0500 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2020-12-21 10:21:39 -0500 |
commit | a0c15b93aecb8e9b0ccb6223817c22be6d53d730 (patch) | |
tree | 0cafb3ac3cc53a37fa54a335ba96c8af444b7bd2 | |
parent | 7fffc511632977dada424c496d67edf9f600dbba (diff) |
fixed some small tweaks in stylesheet and lttr template
-rw-r--r-- | app/lttr/templates/lttr/friends_detail.html | 8 | ||||
-rw-r--r-- | design/sass/_lttr.scss | 7 |
2 files changed, 8 insertions, 7 deletions
diff --git a/app/lttr/templates/lttr/friends_detail.html b/app/lttr/templates/lttr/friends_detail.html index eb3e81b..087c4a4 100644 --- a/app/lttr/templates/lttr/friends_detail.html +++ b/app/lttr/templates/lttr/friends_detail.html @@ -84,7 +84,7 @@ <header id="header" class="post-header {% with object.get_template_name_display as t %}{%if t == "double" or t == "double-dark" %}post--header--double{%endif%}{%endwith%}"> <h1 class="p-name entry-title" itemprop="headline">{{object.title|smartypants|safe}}</h1> <div class="post-linewrapper"> - <time class="dt-published published dt-updated post-date lttr-box" datetime="{{object.pub_date|date:'c'}}" itemprop="datePublished">Transmission {{object.get_issue_str}} – {{object.pub_date|date:"M 'y"}}</span></time> + <time class="dt-published published dt-updated post-date lttr-box" datetime="{{object.pub_date|date:'c'}}" itemprop="datePublished">Transmission {{object.get_issue_str}} – {{object.pub_date|date:"F, Y"}}</span></time> <span class="hide" itemprop="author" itemscope itemtype="http://schema.org/Person">by <a class="p-author h-card" href="/about"><span itemprop="name">Scott Gilbertson</span></a></span> </div> </header> @@ -136,13 +136,13 @@ <div class="nav-wrapper"> <nav id="page-navigation" class="page-nav-photo{%if wildlife or object.field_notes.all or object.books.all %}{%else%} page-border-top"{%endif%}> <h4>Next / Previous</h4> - <ul>{% if next %} + <ul> <li id="next"> <a href="{{ next.get_absolute_url }}" rel="next" title=" {{next.title}}"> - <img class="prev-next-img" src="{%get_image_by_size next.featured_image "navigation_thumb"%}" alt="{{next.featured_image.alt}}" /> + <img class="prev-next-img" src="{% get_image_by_size next.featured_image "navigation_thumb"%}" alt="{{next.featured_image.alt}}" /> <div class="nav-title">{{next.get_issue_str}} – {{next.title|safe}}</div> </a> - </li>{%endif%}{% if prev%} + </li>{% if prev%} <li id="prev"> <a href="{{ prev.get_absolute_url }}" rel="prev" title=" {{prev.title}}"> <img src="{%get_image_by_size prev.featured_image "navigation_thumb"%}" /> diff --git a/design/sass/_lttr.scss b/design/sass/_lttr.scss index 4ce9f13..46abc21 100644 --- a/design/sass/_lttr.scss +++ b/design/sass/_lttr.scss @@ -1,5 +1,5 @@ .large-top-image{ - background: #faf7f5; + background: #f7f7f7; img { max-width: 94%; margin: 4rem 0; @@ -14,10 +14,11 @@ } } .lttr-box { - background: #faf7f5; + //background: #faf7f5; + text-align: center; padding: .5rem; display: inline-block; - border: 1px #e0dedc solid; + //border: 1px #e0dedc solid; } .lttr-cover { margin-right: 1.2rem; |