From 1a70958fc39a942f7244109b8d8d745dab0f82a6 Mon Sep 17 00:00:00 2001 From: Mike Smith <89040888+smiggiddy@users.noreply.github.com> Date: Mon, 6 Nov 2023 10:03:59 -0500 Subject: [PATCH] feat: add logo + transparent box --- signup_form/css/style.css | 20 ++++++++++++++++++++ signup_form/index.html | 12 ++++++++---- signup_form/static/logo.png | Bin 0 -> 267353 bytes 3 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 signup_form/static/logo.png diff --git a/signup_form/css/style.css b/signup_form/css/style.css index 68f061b..aab9256 100644 --- a/signup_form/css/style.css +++ b/signup_form/css/style.css @@ -7,6 +7,12 @@ margin: 0; } +/* .sidebar { + position: relative; +} */ + + + .form { width: 60vw; } @@ -72,9 +78,23 @@ background-repeat: no-repeat; height: 100%; } + .logo { + position: relative; + background-color: rgb(22, 72, 99, 0.7); + top: 35vh; + height: 400px; + display: flex; + align-items: center; + justify-content: center; + } + + .logo img { + height: 14vh; + } } body { margin: 0; padding: 0; + font-family: 'Montserrat', sans-serif; } diff --git a/signup_form/index.html b/signup_form/index.html index dd4fd36..fca54f5 100644 --- a/signup_form/index.html +++ b/signup_form/index.html @@ -5,18 +5,22 @@