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