1
0

Add logo with text "The Original"

This commit is contained in:
Marcel Schwarz 2022-08-06 19:16:22 +02:00
parent ab04c6025f
commit 2d60da90b0
3 changed files with 18 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 179 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 151 KiB

View File

@ -4,7 +4,7 @@
{% block extra_header_block %} {% block extra_header_block %}
<style> <style>
.bg-logo { .bg-logo {
background-image: url("{% static 'homepage/logo.svg' %}"); background-image: url("{% static 'homepage/logo-with-text.svg' %}");
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center; background-position: center;
background-size: contain; background-size: contain;
@ -13,8 +13,7 @@
{% endblock %} {% endblock %}
{% block main %} {% block main %}
<div class="d-flex flex-column h-100 mx-3"> <main class="d-flex flex-column h-100 mx-5">
<main class="d-flex row flex-grow-1 w-100 mt-5 mb-4 mx-auto bg-logo" style="max-width: 42rem"></main> <div class="d-flex row flex-grow-1 w-100 mt-5 mb-4 mx-auto bg-logo" style="max-width: 42rem"></div>
<div class="d-flex mb-3 mt-0 mx-auto flex-column text-white text-center display-3 font-milestone user-select-none">The Original</div> </main>
</div>
{% endblock %} {% endblock %}