From bd33644523b5ec4375f720328da6cfcf9bb464fb Mon Sep 17 00:00:00 2001 From: chaanakyaaM Date: Wed, 2 Oct 2024 22:49:04 +0530 Subject: [PATCH 1/2] contact us section improved --- assets/css/style.css | 31 +++++++++++++++++++++++++++---- index.html | 2 +- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index 572522b2..3686c5f0 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1086,19 +1086,43 @@ body.dark-mode h1{ color: var(--oxford-blue); } -} + form { max-width: 400px; margin: auto; } input, textarea { - width: 100%; + min-width: 600px; padding: 10px; margin: 5px 0; border: 1px solid #ccc; border-radius: 5px; + font-family: var(--ff-gilroy); + outline: none; + background-color: rgba(228, 228, 228, 0.745); + font-size: 15px; +} + +input:focus, +textarea:focus{ + background-color: white; +} + +input{ + min-height: 50px; +} + +textarea{ + min-height: 150px; + max-width: 100%; } + +.submit{ + min-width: 600px; + width: 100%; +} + button { margin: auto; padding: 10px; @@ -1215,9 +1239,8 @@ button:hover { padding: 24px 46px 24px 26px; } -======= -} + @media(max-width:768px) { diff --git a/index.html b/index.html index 26a42dbd..81a397f8 100644 --- a/index.html +++ b/index.html @@ -1013,7 +1013,7 @@

- + From f9401e504705c7a3bcc670fa93016fa3e516532e Mon Sep 17 00:00:00 2001 From: chaanakyaaM Date: Fri, 4 Oct 2024 14:44:42 +0530 Subject: [PATCH 2/2] X icon fixed --- assets/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/css/style.css b/assets/css/style.css index 10b64f52..2bb6aa99 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -651,6 +651,10 @@ body.nav-active { overflow: hidden; } gap: 16px; } +.social-list li img{ + border-radius: 5px; +} + .footer-list-title { margin-block-end: 32px; } .footer-link { margin-block-start: 16px; }