Carpeta css
This commit is contained in:
@@ -0,0 +1,268 @@
|
||||
/* BODY */
|
||||
|
||||
body {
|
||||
font-family: DejaVu Sans, sans-serif;
|
||||
font-size: 12px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* HEADER REMITO */
|
||||
|
||||
.header-left {
|
||||
width: 65%;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.header-center {
|
||||
width: 10%;
|
||||
vertical-align: top;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.header-right {
|
||||
width: 25%;
|
||||
vertical-align: top;
|
||||
text-align: right;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.header-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.header-table td {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* LETRA REMITO */
|
||||
|
||||
.remito-letra-box {
|
||||
display: inline-block;
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
border: 2px solid #000;
|
||||
background-color: #f2f2f2;
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
font-family: DejaVu Sans, sans-serif;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* TABLA INTERNA EMPRESA */
|
||||
|
||||
.empresa-header {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.empresa-left {
|
||||
width: 65%;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.empresa-right {
|
||||
width: 35%;
|
||||
vertical-align: top;
|
||||
font-size: 11px;
|
||||
line-height: 1.3;
|
||||
padding-left: 12px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* LOGO + MARCA */
|
||||
|
||||
.logo-marca {
|
||||
width: 250px;
|
||||
height: auto;
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* DATOS EMPRESA */
|
||||
|
||||
.empresa-datos {
|
||||
font-size: 11px;
|
||||
line-height: 1.1;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* REMITO */
|
||||
|
||||
.remito-titulo {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 0.5px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.remito-datos {
|
||||
font-size: 12px;
|
||||
line-height: 1.2;
|
||||
text-align: right;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.datos-fiscales {
|
||||
font-size: 11px;
|
||||
line-height: 1.2;
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* CAJA */
|
||||
|
||||
.box-proveedor {
|
||||
width: 100%;
|
||||
border: 1px solid #000;
|
||||
border-radius: 10px;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
margin-top: 15px;
|
||||
font-size: 11px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Celda contenedora general */
|
||||
|
||||
.box-proveedor td {
|
||||
padding: 2px 6px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* Layout interno en dos columnas */
|
||||
|
||||
.box-proveedor-contenido {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.box-proveedor-left {
|
||||
width: 60%;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.box-proveedor-right {
|
||||
width: 40%;
|
||||
padding-left: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* PRODUCTOS */
|
||||
|
||||
.tabla-productos {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-top: 15px;
|
||||
font-size: 11px;
|
||||
border-bottom: 1px solid #000;
|
||||
}
|
||||
|
||||
.tabla-productos th {
|
||||
border-bottom: 1px solid #000;
|
||||
border: 1px solid #000;
|
||||
padding: 6px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tabla-productos td {
|
||||
padding: 6px;
|
||||
border: none
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* FOOTER */
|
||||
|
||||
.espacio-footer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.footer-fixed {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
left: 30px;
|
||||
width: calc(100% - 60px);
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
/* linea superior */
|
||||
|
||||
.footer-line {
|
||||
border-top: 1px solid #000;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
/* Bytecenter */
|
||||
|
||||
.footer-brand {
|
||||
text-align: left;
|
||||
margin-bottom: 5px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* layout */
|
||||
|
||||
.footer-content {
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.footer-left,
|
||||
.footer-right {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.footer-left {
|
||||
width: 60%;
|
||||
font-style: italic;
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.footer-right {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
/* firma */
|
||||
|
||||
.firma-row {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.firma-row span {
|
||||
display: inline-block;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.firma-line {
|
||||
display: inline-block;
|
||||
width: calc(100% - 90px);
|
||||
border-bottom: 1px solid #000;
|
||||
height: 18px;
|
||||
}
|
||||
Reference in New Issue
Block a user