phronCare/phronCare.UIBlazor/Shared/LoginView.razor.css
Leandro Hernan Rojas 08a43455a6
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m19s
Ajuste Logout btn en UI
2025-02-01 14:26:52 -03:00

26 lines
776 B
CSS

/* .btn-logout {
text-decoration: none !important;
margin-left: 20px;
padding: 8px 8px 8px 8px;
background-image: linear-gradient(90deg, rgb(169, 15, 144) 0%, rgb(23, 25, 85) 90%);
border-radius: 4px 12px 12px 12px;
color: white;
cursor: pointer;
} */
.btn-logout {
background-color: rgb(0, 123, 255); /* Azul brillante */
color: white;
padding: 8px 16px;
border: none;
border-radius: 10px;
cursor: pointer;
font-family: Arial, sans-serif;
font-size: 14px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra ligera */
transition: all 0.3s ease;
}
.btn-logout:hover {
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Sombra más pronunciada */
transform: translateY(-2px); /* Efecto de levantar */
}