Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
g-birocci committed Aug 8, 2024
1 parent c3cc12e commit 38af330
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 25 deletions.
41 changes: 21 additions & 20 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,6 @@ <h3>Prego no Pão com Queijo da Serra</h3>
</section>

<section id="contact">
<h3 class="title">Contato</h3>
<div class="containercont">
<iframe
class="map"
Expand All @@ -440,25 +439,27 @@ <h3 class="title">Contato</h3>
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
<form>
<h3>Entrar em Contato</h3>
<div class="inputform">
<span><ion-icon name="person"></ion-icon></span>
<input type="text" placeholder="Nome">
</div><!--inputform-->

<div class="inputform">
<span><ion-icon name="paper-plane"></ion-icon></span>
<input type="email" placeholder="Email">
</div><!--inputform-->

<div class="inputform">
<span><ion-icon name="call"></ion-icon></span>
<input type="tel" placeholder="Número">
</div><!--inputform-->

<button type="submit">Enviar Pedido</button>
</form>

<form action="https://formsubmit.co/[email protected]" method="POST">
<h3>Entrar em Contato</h3>
<div class="inputform">
<span><ion-icon name="person"></ion-icon></span>
<input type="text" name="Nome" placeholder="Digite seu nome:" required>
</div>
<div class="inputform">
<span><ion-icon name="paper-plane"></ion-icon></span>
<input type="email" name="Email" placeholder="Digite o seu email:" required>
</div>
<div class="inputform">
<textarea name="Escreva a sua mensagem:" id="" cols="30" rows="10" required></textarea>
</div>
<button class="botonform" type="submit">Enviar Mensagem</button>

<input type="hidden" name="_subject" value="Novo contato!">
<input type="text" name="_honey" style="display:none">
<input type="hidden" name="_captcha" value="false">
</form>

</div>
</section>

Expand Down
17 changes: 12 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -299,15 +299,22 @@ form > h3 {
width: 100%;
padding: 1.5rem;
background-color: var(--preto);
border: none; /* Adicionei esta linha para remover a borda padrão */
color: var(--branco); /* Adicionei esta linha para a cor do texto */
border: none;
color: var(--branco);
}

.inputform button {
.inputform > textarea {
width: 100%;
padding: 1.5rem;
background-color: var(--preto);
border: none;
color: var(--branco);
}
.botonform {
margin-top: 2rem;
background-color: var(--vermelho);
background-color: var(--vermelho-escuro);
font-size: 1.2rem;
padding: 1rem 1.5rem; /* Corrigido para tamanhos apropriados */
padding: 1rem 1.5rem;
cursor: pointer;
text-align: center;
color: var(--branco);
Expand Down

0 comments on commit 38af330

Please sign in to comment.