Spaces:
Running
Running
File size: 850 Bytes
b62701c cdc35f5 b62701c cdc35f5 b62701c cdc35f5 b62701c cdc35f5 b62701c cdc35f5 b62701c cdc35f5 b62701c |
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 |
/* Base styles */
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
}
/* Receipt styling */
#receiptPreview {
font-family: 'Courier New', monospace;
max-width: 350px;
margin: 0 auto;
background-color: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* Custom item row styling */
.item-row {
display: flex;
gap: 10px;
margin-bottom: 10px;
}
.item-row input {
flex: 1;
}
/* Animation for receipt update */
@keyframes receiptUpdate {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}
.receipt-update {
animation: receiptUpdate 0.3s ease;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.grid-cols-1 {
grid-template-columns: 1fr;
}
#receiptPreview {
max-width: 100%;
}
} |