CoolFace
Apppublic

alpha1989/printperfect-client-printer-pro

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css30 linesDownload Raw Back to root
1/* Print-specific styles */2@media print {3    button {4        display: none !important;5    }6    7    body {8        font-size: 12pt;9        line-height: 1.5;10    }11    12    .no-print {13        display: none !important;14    }15}16 17/* General styles */18body {19    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;20}21.client-row:hover {22    background-color: #f8fafc;23}24 25@media print {26    .no-print, .no-print * {27        display: none !important;28    }29}30