- Backend Node.js/Express con PostgreSQL - Frontend React 19 con Vite - Docker Compose para orquestacion - Documentacion completa en README.md - Scripts SQL para base de datos - Configuracion de ejemplo (.env.example)
75 lines
1.2 KiB
CSS
75 lines
1.2 KiB
CSS
/* components/Modals/ConfirmationModal.css */
|
|
|
|
.modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(122, 0, 41, 0.6);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 999;
|
|
}
|
|
|
|
.modal {
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: 6px;
|
|
width: 450px;
|
|
max-width: 95%;
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
|
|
border: 5px solid #7a0029;
|
|
}
|
|
|
|
.modal-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: white;
|
|
background-color: #7a0029;
|
|
padding: 15px 20px;
|
|
border-radius: 5px 5px 0 0;
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 20px;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
.modal-buttons {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.modal-button {
|
|
padding: 10px 25px;
|
|
font-size: 18px;
|
|
border-radius: 30px;
|
|
border: 2px solid #7a0029;
|
|
cursor: pointer;
|
|
min-width: 100px;
|
|
}
|
|
|
|
.modal-button.yes {
|
|
color: green;
|
|
background-color: white;
|
|
}
|
|
|
|
.modal-button.no {
|
|
color: #7a0029;
|
|
background-color: white;
|
|
}
|
|
|
|
.close-button {
|
|
font-size: 24px;
|
|
color: white;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|