Merge pull request #215 from mouse-reeve/logo

Adds better logo
This commit is contained in:
Mouse Reeve 2020-10-01 13:55:48 -07:00 committed by GitHub
commit f8f4d09ede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 7 deletions

View file

@ -1,4 +1,7 @@
/* --- ICONS --- */
/* --- --- */
.navbar .logo {
max-height: 50px;
}
/* --- TOGGLES --- */
input.toggle-control {
display: none;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 106 KiB

View file

@ -3,10 +3,7 @@
<div class="columns">
<div class="column block">
<h2 class="title">About {{ site_settings.name }}</h2>
<p>
{{ site_settings.instance_description }}
</p>
{% include 'snippets/about.html' with site_settings=site_settings %}
</div>
<div class="column block">
@ -14,7 +11,6 @@
<p>
{{ site_settings.code_of_conduct }}
</p>
</div>
</div>
{% endblock %}

View file

@ -23,7 +23,7 @@
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img src="/static/images/logo-small.png" alt="BookWyrm" width="112" height="28">
<img class="image logo" src="/static/images/logo-small.png" alt="BookWyrm">
</a>
<form class="navbar-item" action="/search/">
<div class="field is-grouped">

View file

@ -1,4 +1,7 @@
<h2 class="title">About {{ site_settings.name }}</h2>
<div class="block">
<img src="/static/images/logo.png" alt="BookWyrm">
</div>
<p class="block">
{{ site_settings.instance_description }}
</p>