reduce size of icons in blog main feed

This commit is contained in:
cube
2026-03-19 02:31:54 +00:00
parent 4b46685eaa
commit 8f11e5fb6b
3 changed files with 17 additions and 2 deletions

View File

@@ -176,6 +176,10 @@ form textarea{
border-style:solid;
margin:20px;
}
.post .icon{
width:60px;
height:60px;
}
.imgbullet{
margin-right:10px;

View File

@@ -14,10 +14,10 @@
{% else %}
<img src="{{ url_for('static', filename='any.jpg') }}" class="icon">
{% endif %}
<div class="title">{{post[3]}}</div>
<div class="title">{{post[3]|safe}}</div>
<div class="timestamp">{{post[2]}} - <a href="{{ url_for('home.page', mid=post[1]) }}">{{op[3]}}</a></div>
<div class="content">
{{post[4]}}
{{post[4]|safe}}
</div>
<br class="clear" />
</div>