Skip to content

Commit

Permalink
Make some room between posts
Browse files Browse the repository at this point in the history
  • Loading branch information
spudooli committed Jul 2, 2022
1 parent a7715ac commit 8a307fe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -49,4 +49,6 @@ Type "help", "copyright", "credits" or "license" for more information.
pbkdf2:sha256:260000$kXmxLUtv1C1Zgitf$0812cee3b3a08957c395bba2bcbd71a0dd3884b47ca4dcc2867d989853ec6197
>>>
```
Copy the password output to the database table users in the right column and Bob's your uncle.
Copy the password output to the database table users in the right column and Bob's your uncle.

I need this for later `convert 3.ico -thumbnail 64x64 -flatten 3.gif`
5 changes: 5 additions & 0 deletions reader/static/style.css
Expand Up @@ -85,4 +85,9 @@ text-decoration: underline;
.faviconimg {
display: flex;
align-items: center;
}

.makesomeroom {
margin-bottom: 40px;
margin-top: 30px;
}
4 changes: 2 additions & 2 deletions reader/templates/index.html
Expand Up @@ -28,7 +28,7 @@ <h2>Feeds</h2>
<div class="col-sm-9">
<div class="postitem" style="overflow:hidden">
{% for item in newsitems %}
<div id="skiddly-{{ item[0] }}" tabindex="{{ item[0] }}">
<div id="skiddly-{{ item[0] }}" tabindex="{{ item[0] }}" class="itembody">
<small>
<div style="float:right;">{{item[6].strftime('%A, %-d %B, %Y %-H:%M')}} </div>
</small>
Expand All @@ -45,7 +45,7 @@ <h4><div class="star" onclick="setstar({{ item[0] }})">
<div onclick="getfocus({{ item[0] }},{{ item[7] }})">
{{item[3] | replace("<hr>", "") | safe}}
</div>
<hr>
<hr class="makesomeroom">
</div>
{% endfor %}

Expand Down

0 comments on commit 8a307fe

Please sign in to comment.