58 lines
830 B
CSS
58 lines
830 B
CSS
|
html {
|
||
|
height: 100%;
|
||
|
margin-top: -6px;
|
||
|
}
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||
|
font-size: 28px;
|
||
|
}
|
||
|
table {
|
||
|
border: 1px solid;
|
||
|
width: 100%;
|
||
|
font-size: inherit;
|
||
|
}
|
||
|
td {
|
||
|
border: 1px solid;
|
||
|
padding: 5px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
#barcode {
|
||
|
text-align: center;
|
||
|
}
|
||
|
span {
|
||
|
font-size: 48px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
.lbl {
|
||
|
color: gray;
|
||
|
font-weight: lighter;
|
||
|
font-size: 18px;
|
||
|
display: block;
|
||
|
}
|
||
|
.flex-container {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.flex-item {
|
||
|
flex: 1;
|
||
|
}
|
||
|
.section {
|
||
|
height: 50px;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
#variant {
|
||
|
width: 314px;
|
||
|
}
|
||
|
#producer {
|
||
|
width: 471px;
|
||
|
}
|
||
|
.cell {
|
||
|
width: 157px;
|
||
|
}
|
||
|
|
||
|
#leftBox {
|
||
|
border-right: 1px solid;
|
||
|
}
|