Spaces:
Running
Running
File size: 2,130 Bytes
87f947c 8c356fe 87f947c 8c356fe 87f947c 8c356fe 87f947c b00561d 87f947c c628e9a 8c356fe b00561d c628e9a 8c356fe b00561d 8c356fe b00561d 8c356fe b00561d 8c356fe 87f947c 8c356fe 87f947c 8c356fe 87f947c 8c356fe 87f947c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
/* Thermal receipt styling */
.receipt-font {
font-family: 'Courier New', Courier, monospace;
font-size: 10px;
line-height: 1.1;
width: 80mm;
height: auto;
min-height: 297mm;
margin: 0 auto;
padding: 5mm;
white-space: pre;
overflow: hidden;
background-color: white;
color: black;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
word-wrap: break-word;
}
.receipt-font:hover {
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.receipt-font .header {
text-align: center;
margin-bottom: 1em;
}
.receipt-font .logo-container {
text-align: center;
margin-bottom: 10px;
}
.receipt-font .logo {
max-width: 60mm;
max-height: 20mm;
object-fit: contain;
}
.receipt-font .divider {
border-top: 1px dashed #000;
margin: 0.5em 0;
}
.receipt-font .item-row {
display: flex;
justify-content: space-between;
}
.receipt-font .item-name {
flex: 2;
overflow: hidden;
text-overflow: ellipsis;
}
.receipt-font .item-price {
flex: 1;
text-align: right;
}
.receipt-font .total-row {
font-weight: bold;
margin-top: 0.5em;
}
.receipt-font .footer {
margin-top: 1em;
text-align: center;
font-size: 9pt;
}
/* Form styling */
#productList {
border: 1px solid #e2e8f0;
border-radius: 0.375rem;
padding: 1rem;
margin-bottom: 1rem;
}
.product-item {
display: flex;
gap: 1rem;
margin-bottom: 0.5rem;
align-items: center;
}
.product-item input {
flex: 1;
}
.remove-product {
color: #ef4444;
cursor: pointer;
}
/* Responsive adjustments */
@media print {
body * {
display: none;
}
#receiptPreview {
display: block !important;
position: fixed;
left: 0;
top: 0;
width: 80mm;
height: auto;
min-height: 297mm;
margin: 0;
padding: 5mm;
background: white;
color: black;
font-family: 'Courier New', Courier, monospace;
font-size: 10px;
line-height: 1.1;
box-shadow: none;
}
@page {
size: 80mm 297mm;
margin: 0;
}
}
|