Skip to content

Commit

Permalink
Update styles & images
Browse files Browse the repository at this point in the history
  • Loading branch information
guicheffer committed Sep 25, 2024
1 parent f324818 commit 1243b34
Showing 1 changed file with 1 addition and 68 deletions.
69 changes: 1 addition & 68 deletions src/para-fran/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ body {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
max-width: 350px;
margin: 0 auto;
animation: fadeIn 1.5s ease-out;
position: relative;
z-index: -50;
}
Expand All @@ -49,14 +48,12 @@ h1 {
color: #e91e63;
font-size: 26px;
margin-bottom: 15px;
animation: slideInFromLeft 1s ease-out;
}

.intro-text {
color: #333;
font-size: 18px;
margin-bottom: 20px;
animation: slideInFromRight 1.5s ease-out;
text-align: left;
}

Expand All @@ -70,76 +67,12 @@ a.btn {
font-size: 16px;
transition: background-color 0.3s ease, transform 0.3s ease;
margin-top: 20px;
animation: buttonAppear 2.5s ease-out;
}

a.btn:hover {
background-color: #d81b60;
transform: scale(1.05);
}

/* Animações de texto */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes slideInFromLeft {
from {
transform: translateX(-50px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideInFromRight {
from {
transform: translateX(50px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideUp {
from {
transform: translateY(50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

@keyframes blink {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}

@keyframes buttonAppear {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
}@

/* Responsividade para iPhone 12 Pro (menor) */
@media (max-width: 390px) {
Expand Down

0 comments on commit 1243b34

Please sign in to comment.