167 lines
2.6 KiB
SCSS
167 lines
2.6 KiB
SCSS
/* Contenedor principal del reporte */
|
|
.reporte-layout {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 50px;
|
|
padding: 20px;
|
|
max-width: 1400px;
|
|
margin: 0 20px;
|
|
|
|
@media (max-width: 768px) {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
/* Panel izquierdo */
|
|
.panel-izquierdo {
|
|
flex: 1;
|
|
min-width: 300px;
|
|
|
|
@media (max-width: 768px) {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
}
|
|
}
|
|
|
|
/* Panel derecho */
|
|
.panel-derecho {
|
|
width: 320px;
|
|
min-width: 280px;
|
|
|
|
@media (max-width: 768px) {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
}
|
|
}
|
|
|
|
.titulo-reporte {
|
|
font-weight: bold;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
margin-bottom: 15px;
|
|
color: #0056b3;
|
|
}
|
|
|
|
/* Buscador */
|
|
.formBuscar {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-bottom: 20px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
|
|
input {
|
|
padding: 8px 12px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
flex: 1;
|
|
min-width: 200px;
|
|
}
|
|
|
|
button {
|
|
background-color: #0056b3;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
|
|
&:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Tabla de reporte */
|
|
.tabla-rec {
|
|
border: 2px solid #0056b3;
|
|
border-radius: 10px;
|
|
padding: 15px;
|
|
background-color: #f9f9f9;
|
|
min-height: 400px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Filtro */
|
|
.filtro-rec {
|
|
border: 2px solid #0056b3;
|
|
border-radius: 10px;
|
|
padding: 15px;
|
|
background-color: #f9f9f9;
|
|
font-family: Arial, sans-serif;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
|
|
.titulo-rec {
|
|
font-weight: bold;
|
|
margin-top: 0;
|
|
margin-bottom: 10px;
|
|
color: #0056b3;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-top: 12px;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
}
|
|
|
|
select {
|
|
width: 100%;
|
|
padding: 8px;
|
|
margin-top: 4px;
|
|
border: 1px solid #0056b3;
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
/* Botones del filtro */
|
|
.botones-filtro {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-top: 20px;
|
|
|
|
.aplicar,
|
|
.limpiar {
|
|
flex: 1;
|
|
padding: 8px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
color: white;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.aplicar {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
.limpiar {
|
|
background-color: #ffb700;
|
|
color: #0056b3;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
/* Botón descargar */
|
|
.boton-descargar {
|
|
margin-top: 25px;
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
border: none;
|
|
background-color: #0056b3;
|
|
color: white;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
|
|
@media (max-width: 768px) {
|
|
max-width: 500px;
|
|
}
|
|
}
|