69 lines
1.2 KiB
CSS
69 lines
1.2 KiB
CSS
.modal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.modal-contenido {
|
|
background: #25253e;
|
|
width: 300px;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.modal-contenido p {
|
|
color: #ffffff;
|
|
font-size: 16px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
|
|
.btn-modal {
|
|
margin-top: 10px;
|
|
padding: 10px 20px;
|
|
background: #1c1b2b;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
transition: background 0.3s ease-in-out;
|
|
}
|
|
|
|
.btn-modal:hover {
|
|
background: #0056b3;
|
|
}
|
|
|
|
.modal-confirmacion {
|
|
background: #2b2b3a;
|
|
width: 320px;
|
|
padding: 25px;
|
|
border-radius: 12px;
|
|
text-align: center;
|
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
#btnCancelarEliminar {
|
|
background: #5a6268;
|
|
}
|
|
|
|
#btnCancelarEliminar:hover {
|
|
background: #444b50;
|
|
}
|
|
|
|
#btnConfirmarEliminar{
|
|
background-color: #f5524c;
|
|
}
|
|
|
|
#btnConfirmarEliminar:hover{
|
|
background: #c9302c;
|
|
} |