diff options
author | luxagraf <sng@luxagraf.net> | 2019-02-25 08:23:02 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-02-25 08:23:02 -0600 |
commit | f57e7fc6845d5c0a5065df8aa3656951a321d165 (patch) | |
tree | 80fc042d2fa51fe4527db4b3fbdd77358f50ace5 /design | |
parent | 8751f40ce6fd5531b58ab95cd347c87c59ffcadc (diff) |
changed styles and intro to SRC section
Diffstat (limited to 'design')
-rw-r--r-- | design/sass/_archives.scss | 7 | ||||
-rw-r--r-- | design/sass/_details.scss | 2 | ||||
-rw-r--r-- | design/templates/archives/src_home.html | 5 |
3 files changed, 11 insertions, 3 deletions
diff --git a/design/sass/_archives.scss b/design/sass/_archives.scss index a8c41a4..8e6b739 100644 --- a/design/sass/_archives.scss +++ b/design/sass/_archives.scss @@ -396,3 +396,10 @@ margin-bottom: 2.8rem; } } +.fancy-archive-list { + p { + line-height: 1.3; + margin-top: 8px; + } + +} diff --git a/design/sass/_details.scss b/design/sass/_details.scss index 9958971..2ddcc85 100644 --- a/design/sass/_details.scss +++ b/design/sass/_details.scss @@ -23,7 +23,7 @@ .post-subtitle { font-style: italic; font-size: 1.5rem; - line-height: 1; + line-height: 1.25; margin-top: .5rem; } .post-subtitle-segundo { diff --git a/design/templates/archives/src_home.html b/design/templates/archives/src_home.html index 23a572b..173596d 100644 --- a/design/templates/archives/src_home.html +++ b/design/templates/archives/src_home.html @@ -15,10 +15,11 @@ <div class="essay-intro"> <h2>Tutorials and how-tos for web developers.</h2> <p>Topics include Linux, Nginx, Python, Postgresql, free software, HTML, and once, Google AMP.</p> - <p>Some of the articles below were previously published in: <em><a href="https://arstechnica.com/">Ars Technica</a></em>, <em><a href="https://www.wired.com/author/scott-gilbertson/">Wired</a></em>, and <em><a href="https://www.theregister.co.uk/Author/Scott-Gilbertson/">The Register</a></em></p> + <p>These tutorials are most often things I needed to do, and then I needed to do them again, but didnt remembered how. If you want to commit something to memory, write it down. Write it on the web and not only does your memory improve, but you have a URL you can consult later as well. </p> + <p>A few of the articles below were previously published in: <em><a href="https://arstechnica.com/">Ars Technica</a></em>, <em><a href="https://www.wired.com/author/scott-gilbertson/">Wired</a></em>, and <em><a href="https://www.theregister.co.uk/Author/Scott-Gilbertson/">The Register</a></em></p> </div> <h1 class="topic-hed">Articles</h1> - <ul>{% for object in object_list %}{% if object.slug != 'about' %} + <ul class="fancy-archive-list">{% for object in object_list %}{% if object.slug != 'about' %} <li class="h-entry hentry" itemscope itemType="http://schema.org/Article"> <span class="date dt-published">{{object.pub_date|date:"F Y"}}</span> <a href="{{object.get_absolute_url}}"> |