Skip to content

Commit

Permalink
Merge pull request #357 from Lemoncode/feature/#235-image-button
Browse files Browse the repository at this point in the history
changed image button colors
  • Loading branch information
brauliodiez authored Sep 11, 2024
2 parents b4ae83d + f7ffb9a commit 30d1272
Showing 1 changed file with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,23 @@
}

.uploadButton {
background-color: #4caf50; /* Verde */
background-color: #2d9a8b;
border: none;
color: white;
padding: 15px 32px;
padding: 12px var(--space-lg);
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
display: block;
font-size: var(--fs-s);
cursor: pointer;
border-radius: 8px;
transition: background-color 0.3s ease;
border-radius: var(--border-radius-m);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
transition: all 0.3s ease;
}

.uploadButton:hover {
background-color: #45a049; /* Verde más oscuro cuando se pasa el ratón por encima */
background-color: #257f72;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.uploadButton:active {
background-color: #1d6359;
}

0 comments on commit 30d1272

Please sign in to comment.