From 14e0c529f91d8b68ea5f00ee321fb2ef75e149ad Mon Sep 17 00:00:00 2001
From: abdoul aziz diallo <abdoul-aziz.diallo@etu.unistra.fr>
Date: Tue, 14 Feb 2023 13:00:54 +0100
Subject: [PATCH] Work on submit button

---
 assets/css/contact.css | 48 ++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 46 insertions(+), 2 deletions(-)

diff --git a/assets/css/contact.css b/assets/css/contact.css
index 581b670..3ddd307 100644
--- a/assets/css/contact.css
+++ b/assets/css/contact.css
@@ -24,13 +24,57 @@ input,
 textarea {
   width: 100%;
   display: block;
-  padding: 0.25rem;
+  /* height: 34px; */
+  padding: 6px 12px;
+  font-size: 14px;
+  line-height: 1.42857143;
   margin-bottom: 1rem;
   box-sizing: border-box; /* Pour avoir les mêmes espaces entre les deux bords */
   font: inherit;
-  color: rgb(61, 58, 58);
+  color: #555;
+  background-color: #fff;
+  background-image: none;
+  border: 1px solid #ccc;
+  border-radius: 4px;
+  border-radius: 4px;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  -webkit-transition: border-color ease-in-out 0.15s,
+    -webkit-box-shadow ease-in-out 0.15s;
+  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
+  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
+}
+
+input {
+  height: 34px;
+}
+
+input:focus,
+textarea:focus {
+  /* border-color: #66afe9; */
+  border-color: #66afe9;
+  outline: 0;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
+    0 0 8px rgba(102, 175, 233, 0.6);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
+    0 0 8px rgba(102, 175, 233, 0.6);
 }
 
 button {
   font: inherit;
+  font-size: 16px;
+  font-family: Arial;
+  width: 113px;
+  height: 37px;
+  border-width: 0px;
+  color: #fff;
+  border-color: rgba(0, 98, 204, 1);
+  font-weight: bold;
+  border-radius: 10px;
+  text-shadow: 1px 1px 0px #2f6627;
+  background: rgba(0, 123, 255, 1);
+}
+
+button:hover {
+  background: rgba(0, 105, 217, 1);
 }
-- 
GitLab