Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ajustes estilos #78

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 41 additions & 18 deletions public/assets/css/Admin/modules/Factures/factures.css
Original file line number Diff line number Diff line change
@@ -1,38 +1,61 @@
/* Contenedor Buscar factura */
.cont-busqueda{
/* Filtros de búsqueda */
.filtros-busqueda{
display: flex;
width: 100%;
height: 35px;
margin: 3.5rem 0 2rem;
justify-content: end;
height: 30px;
justify-content: space-between;
margin-top: 25px;
}

#buscarFactura{
/* Ordenar por */
.ordenar_por{
display: flex;
width: 35%;
height: auto;
border-radius: 7px;
width: 45%;
height: 100%;
}

#ordenar_por{ /* Input */
border-radius: 0;
width: 60%;
font-size: 14px;
border: 1px solid black;
padding: 0 10px 0;
padding: 0 7px 0;
}

/* Barra búsqueda */
.barra_busqueda{
display: flex;
width: 55%;
height: 100%;
justify-content: end;
border-radius: 5px;
}

#barra_busqueda{
border-radius: 5px;
width: 50%;
font-size: 14px;
margin: 0;
border: 1px solid black;
padding: 10px;
}

/* Contenedor Facturas */
.cont-facturas{
display: flex;
width: 100%;
height: auto;
justify-content: space-between;
margin: 2.5rem 0 0;
}

/* Contenedor lista de facturas */
.cont-lista-facturas{
width: 72.5%;
width: 70%;
}

/* Contenedor Opciones de facturas */
.cont-opciones-factura{
width: 27.5%;
width: 30.5%;
}

.cont-facturas, .cont-opciones-factura{
Expand All @@ -55,7 +78,7 @@
.cont-opcion-factura{
display: flex;
width: 100%;
height: 120px;
height: 150px;
background-color: #D9D9D9;
border: 1px solid black;
margin: 0 0 1rem;
Expand All @@ -70,13 +93,13 @@
}

.link-sect-fact{
font-size: 20px;
font-size: 22px;
}

.cont-opcion-factura img{
width: 67.5px;
height: 67.5px;
margin-right: 1rem;
width: 70px;
height: 70px;
margin-left: 10px;
}

/* Tabla Facturas */
Expand Down
12 changes: 5 additions & 7 deletions public/assets/css/Admin/modules/Inventories/form-inventories.css
Original file line number Diff line number Diff line change
Expand Up @@ -145,20 +145,20 @@
/* Botón: Registrar inventario */
.bott-guardar-cambios{
display: flex;
width: 200px;
width: auto;
background-color: #2121E3;
border: 1px solid black;
border-radius: 7px;
justify-content: center;
align-items: center;
padding: 10px 2rem 10px;
}

.bott-guardar-cambios a h2{
color: white;
font-size: 17px;
font-size: 18px;
}


/* @media */
/* @media 1024px */
@media(max-width: 1024px){
Expand All @@ -179,8 +179,7 @@
}

.bott-guardar-cambios{
width: 180px;
height: 30px;
padding: 10px 2rem 10px;
}

.bott-guardar-cambios a h2{
Expand All @@ -207,7 +206,6 @@
}

.bott-guardar-cambios{
width: 160px;
height: 27.5px;
}

Expand Down Expand Up @@ -236,8 +234,8 @@


.bott-guardar-cambios{
width: 150px;
height: 25px;
padding: 10px 1.5rem 10px;
}

.bott-guardar-cambios a h2{
Expand Down
Loading