This commit is contained in:
Oliver
2025-07-29 12:04:48 -03:00
parent d20d5706aa
commit c73d566c25

View File

@@ -162,25 +162,27 @@
.button { .button {
display: inline-block; display: inline-block;
padding: 12px 24px; padding: 12px 24px;
background-color: #4CAF50; /* Green */ background-color: transparent;
color: white; color: inherit;
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
border-radius: 8px; border-radius: 0px;
font-size: 16px; font-size: 16px;
font-weight: bold; font-weight: bold;
transition: background-color 0.3s ease, box-shadow 0.3s ease; transition: background-color 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%)
} }
.button:hover { .button:hover {
background-color: #45a049; opacity: 0.8;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
} }
.button:active { .button:active {
background-color: #3e8e41; opacity: 0.6;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
} }