invoice-generator / style.css
anuragshas's picture
fix: style
184fe1e
raw
history blame
1.67 kB
@import "tailwindcss";
.quotation-print {
max-width: 800px;
margin: auto;
border: 1px solid #000;
padding: 20px;
}
.quotation-print h2 {
text-align: center;
margin-bottom: 20px;
}
.quotation-print .section {
margin-bottom: 15px;
}
.totals table {
float: right;
border: none;
width: 100%;
border-collapse: collapse;
}
.totals td {
border: 1px solid #000;
padding: 8px;
}
.disclaimer {
color: #555;
margin-top: 20px;
font-size: 10px;
text-align: justify;
border-top: 1px solid #000;
padding-top: 10px;
}
.quote-meta {
text-align: right;
}
.header {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.company-details h1 {
margin: 0;
font-size: 24px;
color: #036;
font-family: Arial, Helvetica, sans-serif;
}
.quotation-title h1 {
margin: 0;
font-size: 24px;
color: #036;
text-align: right;
}
.quote-meta table {
border-collapse: collapse;
width: 100%;
}
.quote-meta td {
border: 1px solid #000;
padding: 5px;
}
.customer-info {
border: 1px solid #000;
padding: 10px;
margin-bottom: 20px;
}
.items-table-print {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.items-table-print th,
.items-table-print td {
border: 1px solid #000;
padding: 8px;
text-align: left;
}
.items-table-print thead th {
background-color: #e0f2f7;
}
.footer {
margin-top: 20px;
}
.notes-and-total {
display: flex;
justify-content: space-between;
}
.notes {
width: 60%;
font-size: 12px;
}
.totals {
width: 35%;
}
.totals td:first-child {
text-align: right;
}
.thank-you {
text-align: center;
margin-top: 20px;
font-weight: bold;
}