Skip to content

Commit

Permalink
Update contato.css
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelhOliveira authored Mar 27, 2024
1 parent 1bd34ad commit 652d38c
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions contato.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,18 @@ textarea::-webkit-scrollbar-thumb {
}
#thankYouMessage {
display: none; /* Inicialmente oculto */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black; /* Alterado para preto */
color: white;
font-size: 24px;
display: flex;
justify-content: center;
align-items: center;
color: green; /* Cor do texto */
font-size: 18px; /* Tamanho da fonte */
margin-top: 10px; /* Espaçamento superior */
animation: fadeIn 1s ease-in-out; /* Animação de fadeIn */
}

/* Animação de fadeIn */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

0 comments on commit 652d38c

Please sign in to comment.