Subir archivos a "Interfaz/estilos"

This commit is contained in:
bruno.martinez 2025-03-10 05:26:25 +00:00
parent fe771121ec
commit 28c158e8a2
2 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,46 @@
/* Estilos para el modal */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border: 1px solid #ccc;
width: 80%;
max-width: 500px;
}
.close {
float: right;
cursor: pointer;
}
.botones {
margin-top: 20px;
text-align: center;
}
.confirmar {
background-color: green;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}
.rechazar {
background-color: red;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}

View File

@ -0,0 +1,32 @@
/* Estilos para el reporte de ventas */
#formReporte {
margin-bottom: 20px;
}
#formReporte label {
margin-right: 10px;
}
#formReporte input {
margin-right: 20px;
}
#resultadoReporte {
margin-top: 20px;
}
#tablaVentas {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}
#tablaVentas th, #tablaVentas td {
border: 1px solid #ccc;
padding: 8px;
text-align: left;
}
#tablaVentas th {
background-color: #f2f2f2;
}