diff --git a/websiteapp/static/css/styles.css b/websiteapp/static/css/styles.css index 80ad4c6..d683306 100644 --- a/websiteapp/static/css/styles.css +++ b/websiteapp/static/css/styles.css @@ -17,9 +17,9 @@ } @font-face { - font-family: 'CynthoExtraBold'; + font-family: 'CynthoExtraLight'; src: - url('/static/font/CynthoNextExtraBold.otf') format('opentype'); + url('/static/font/CynthoNextExtraLight.otf') format('opentype'); font-weight: 900; font-style: normal; @@ -82,3 +82,10 @@ img { align-items: center; width: 650px; } + +.container { +display: flex; /* places items in a row */ +align-items: center; /* vertically centers image and text */ +justify-content: center; /* centers the whole thing horizontally */ +gap: 10px; /* space between image and text */ +} \ No newline at end of file diff --git a/websiteapp/static/img/logo_1.png b/websiteapp/static/img/logo_1.png new file mode 100644 index 0000000..de1fdb6 Binary files /dev/null and b/websiteapp/static/img/logo_1.png differ diff --git a/websiteapp/templates/websiteapp/base.html b/websiteapp/templates/websiteapp/base.html index dfe3ad9..e9d94b5 100644 --- a/websiteapp/templates/websiteapp/base.html +++ b/websiteapp/templates/websiteapp/base.html @@ -6,7 +6,7 @@ - + GREGGORDINATES @@ -17,10 +17,20 @@

-

- GREGGordinates -

+ +
+
+ cute logo +
+
+

+ GREGGordinates +

+
+
+ +

"Everything is relative to greggs, and only that is absolute."

{% block content %} diff --git a/websiteapp/templates/websiteapp/decode_result.html b/websiteapp/templates/websiteapp/decode_result.html index 0b863cc..6631287 100644 --- a/websiteapp/templates/websiteapp/decode_result.html +++ b/websiteapp/templates/websiteapp/decode_result.html @@ -35,4 +35,10 @@ document.addEventListener("DOMContentLoaded", function () { }); + + + + {% endblock %} diff --git a/websiteapp/templates/websiteapp/encode_result.html b/websiteapp/templates/websiteapp/encode_result.html index db93180..ba6abad 100644 --- a/websiteapp/templates/websiteapp/encode_result.html +++ b/websiteapp/templates/websiteapp/encode_result.html @@ -3,7 +3,13 @@ {% block content %}
-

{{ result }}

+

{{ result }}

+ + + + {% endblock %}