Touch up page layout

This commit is contained in:
Daniel Markstedt 2023-11-09 07:18:37 +09:00
parent 630678ceda
commit 55d36af25d
10 changed files with 23 additions and 1 deletions

View File

@ -21,6 +21,11 @@ td {
margin: none;
}
th {
color: white;
background-color: black;
}
h1 {
color: white;
font-size: 20px;

View File

@ -1062,3 +1062,7 @@ a.back {
font-weight: bold;
background: url("icons/chevrons-left.svg") no-repeat left center;
}
a.back span.separator {
display: none;
}

View File

@ -189,4 +189,5 @@
</div>
</section>
<hr/>
{% endblock content %}

View File

@ -107,7 +107,7 @@
</div>
{% if not is_root_page %}
<div class="content">
<a class="back" href="/">{{ _("Go to Home") }}</a>
<a class="back" href="/"><span class="separator">&lt;&lt; </span>{{ _("Go to Home") }}</a>
</div>
{% endif %}
<div align="center" class="footer">

View File

@ -52,4 +52,6 @@
</table>
</p>
{% endfor %}
<hr/>
{% endblock content %}

View File

@ -3,4 +3,6 @@
{% block content %}
<h2>{{ _("Disk Image Details: %(file_name)s", file_name=file_name) }}</h2>
<p><pre>{{ diskinfo }}</pre></p>
<hr/>
{% endblock content %}

View File

@ -112,4 +112,6 @@
</tbody>
</table>
<p><small>{{ _("%(disk_space)s MiB disk space remaining on the Pi", disk_space=env["free_disk_space"]) }}</small></p>
<hr/>
{% endblock content %}

View File

@ -667,4 +667,6 @@
{% endfor %}
</table>
</section>
<hr/>
{% endblock content %}

View File

@ -28,4 +28,6 @@
</form>
</div>
<p><pre>{{ logs }}</pre></p>
<hr/>
{% endblock content %}

View File

@ -6,4 +6,6 @@
<div id="manpage-content">
{{ manpage | safe }}
</div>
<hr/>
{% endblock content %}