phronCare/phronCare.UIBlazor/Shared/LoginView.razor.css
Leandro Hernan Rojas e32cf49a85
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m27s
Ajuste Logout btn en UI v2
2025-02-01 14:35:13 -03:00

25 lines
803 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(39, 54, 97); /* Azul oscuro (igual al fondo) */
color: white;
padding: 8px 16px;
border: 2px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
border-radius: 10px;
cursor: pointer;
font-family: Arial, sans-serif;
font-size: 14px;
transition: all 0.3s ease;
}
.btn-logout:hover {
border-color: rgba(255, 255, 255, 0.5); /* Borde más visible al hacer hover */
background-color: rgba(255, 255, 255, 0.1); /* Fondo ligeramente más claro */
}