Skip to content

Commit

Permalink
🐎 otimização da pagina contato
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriAlves5 committed Oct 25, 2023
1 parent e20f2e1 commit 72365be
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 26 deletions.
4 changes: 2 additions & 2 deletions src/pages/Contato.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ export default function Contato() {
<Input
label="Nome"
placeholder="Digite seu nome"
className="input"
className="input-contato-form"
value={nome}
onChange={(e) => setNome(e.target.value)}
/>
<Input
label="E-mail"
placeholder="Digite seu email"
className="input"
className="input-contato-form"
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
Expand Down
5 changes: 3 additions & 2 deletions src/style/components/input.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@


.Input label {
color: #036;;
font-size: 14px;
color: #036;
font-size: 1rem;
font-style: normal;
font-weight: bold;
line-height: normal;
letter-spacing: 0.8px;
padding-bottom: 0.5rem;
}

39 changes: 17 additions & 22 deletions src/style/pages/contato.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
flex-direction: column;
justify-content: space-around;
position: fixed;
width: 50vw;
height: 78vh;
width: 30vw;
height: 60vh;
box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.12), 0px 1px 1px 0px rgba(0, 0, 0, 0.12), 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

Expand All @@ -63,14 +63,23 @@


}

.input-contato-form{
height: 3vh !important;
width: 11vw !important;
}




.Enviar-button{

color: #fff;
border-radius: 50px;
box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.25);
width: 12rem;
width: 12vw;
border: none;
height: 1.8rem;
height: 3.5vh;
letter-spacing: 0.08rem;
font-weight: bold;
background-color: #006633;
Expand All @@ -91,26 +100,12 @@
align-items: flex-start;

}

.input{
height: 2.1875rem;
border: 0.063rem solid #003366;
border-radius: 0.625rem;
text-indent: 0.75rem;
letter-spacing: 0.05rem;
}

.input::placeholder {
color: #6C6C6C;
font-size: 1rem;
letter-spacing: 0.05rem;
}




.Assunto-input label{
color: #036;
font-size: 14px;
font-size: 1rem;
font-style: normal;
font-weight: bold;
line-height: normal;
Expand All @@ -119,8 +114,8 @@
}

.Larger-input{
width: 28rem;
height: 12rem;
width: 25vw;
height: 18vh;
border: 1px solid #036;
border-color: #036;
border-radius: 7.5px;
Expand Down

0 comments on commit 72365be

Please sign in to comment.