From 2404156e91186d80ec4e9d01643219f7a9d9465f Mon Sep 17 00:00:00 2001 From: Melora Hugues Date: Sat, 21 Oct 2023 23:46:06 +0200 Subject: [PATCH] feat #6: Add logo to all page headers --- polyculeconnect/static/style/index.css | 14 ++++++++++++++ polyculeconnect/templates/header.html | 11 ++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 polyculeconnect/static/style/index.css diff --git a/polyculeconnect/static/style/index.css b/polyculeconnect/static/style/index.css new file mode 100644 index 0000000..461d07c --- /dev/null +++ b/polyculeconnect/static/style/index.css @@ -0,0 +1,14 @@ +body { + margin: 0; +} + +.site-header { + width: 100%; + display: flex; + padding: 10px; + margin-bottom: 40px; + + .site-logo img { + height: 100px; + } +} diff --git a/polyculeconnect/templates/header.html b/polyculeconnect/templates/header.html index b1d2e1d..a1b9f04 100644 --- a/polyculeconnect/templates/header.html +++ b/polyculeconnect/templates/header.html @@ -7,6 +7,8 @@ PolyculeConnect + + @@ -16,4 +18,11 @@ - \ No newline at end of file + + + \ No newline at end of file