Skip to content

Commit

Permalink
Update principal.css
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelhOliveira authored Apr 5, 2024
1 parent 076384c commit f1dec26
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions principal.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ body {
padding: 30px 8%;
background: transparent;
display: flex;
justify-content: space-between;
justify-content: center;
align-items: center;
z-index: 100;
}
Expand Down Expand Up @@ -101,7 +101,7 @@ body {
justify-content: space-between;
align-items: center;
padding: 50px 8% 0;
overflow: hidden;
overflow: hidden;
}

/* Estilos do conteúdo da seção home */
Expand Down Expand Up @@ -208,24 +208,25 @@ body {
transform: translateX(-100px);
opacity: 0;
}

100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideDown {
from {
transform: translateY(0);
opacity: 1;
}

@keyframes slideDown {
from {
transform: translateY(0);
opacity: 1;
}
to {
transform: translateY(100%);
opacity: 0;
}
}
to {
transform: translateY(100%);
opacity: 0;
}
}

.slide-down {
animation: slideDown 1s ease forwards; /* Ajuste a duração para 1 segundo */
}
.slide-down {
animation: slideDown 1s ease forwards;
}

0 comments on commit f1dec26

Please sign in to comment.