Files
opensourcepos/public/css/receipt.css
BudsieBuds e83c23cf0c Improve code style and PSR-12 compliance (#4204)
* Improve code style and PSR-12 compliance
- refactored code formatting to adhere to PSR-12 guidelines
- standardized coding conventions across the codebase
- added missing framework files and reverted markup changes
- reformatted arrays for enhanced readability
- updated language files for consistent styling and clarity
- minor miscellaneous improvements
2025-05-02 19:37:06 +02:00

65 lines
817 B
CSS

#receipt_wrapper {
width: 100%;
}
#receipt_header {
text-align: center;
}
#company_name {
font-size: 150%;
font-weight: bold;
}
#company_name img {
max-width: 150px;
max-height: 150px;
}
#company_phone {
margin-bottom: 15px;
}
#sale_time {
margin-bottom: 5px;
}
#receipt_items {
position: relative;
border-collapse: collapse;
margin-top: 15px;
margin-bottom: 15px;
width: 100%;
}
#receipt_items td {
position: relative;
padding: 3px;
margin-bottom: 5px;
}
#receipt_items tr {
margin-bottom: 5px;
}
#sale_return_policy {
width: 80%;
margin: 0 auto;
text-align: center;
}
#receipt_wrapper #barcode {
margin-top: 10px;
text-align: center;
}
.total-value {
text-align: right;
}
.discount {
font-weight: bold;
}