From af9a74b469efd8b0cb234e2bcf2d9d344137cc37 Mon Sep 17 00:00:00 2001 From: tenkyuu Date: Thu, 15 Aug 2024 08:16:15 +0800 Subject: [PATCH] minor css update --- css/projects/survey-form.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/css/projects/survey-form.css b/css/projects/survey-form.css index 88ec569..44904d5 100644 --- a/css/projects/survey-form.css +++ b/css/projects/survey-form.css @@ -10,23 +10,28 @@ html { } body { font-family: "Raleway", sans-serif; + background-color: #22243e; } main { display: flex; justify-content: center; align-items: center; - background-color: #22243e; height: 100vh; } .form-container { width: 90%; max-width: 45rem; - height: 80%; + height: fit-content; padding: 4rem 2rem; + margin: 5rem auto; background-color: #e5e5e5; border: 0.2rem solid #000; border-radius: 1.4rem; box-shadow: #000 0.7rem 1rem 0.7rem; + display: flex; + flex-direction: column; + justify-content: center; + vertical-align: center; } .header-container, .footer-container { text-align: center; -- 2.39.5