Add elite.html
This commit is contained in:
parent
a7f0ac0d1d
commit
2cab515ee9
631
elite.html
Normal file
631
elite.html
Normal file
@ -0,0 +1,631 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Invoice {{invoiceNumber}}</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@page {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
color: #1a1a2e;
|
||||
line-height: 1.6;
|
||||
background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.page-container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
background: white;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
.top-accent {
|
||||
height: 8px;
|
||||
background: linear-gradient(90deg, {{highlightColor}} 0%, {{highlightColor}}dd 100%);
|
||||
}
|
||||
|
||||
.header-section {
|
||||
background: linear-gradient(135deg, {{highlightColor}}15 0%, {{highlightColorLight}} 100%);
|
||||
padding: 48px 56px 40px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.header-section::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
right: -10%;
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
background: radial-gradient(circle, {{highlightColor}}20 0%, transparent 70%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.header-section::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -30%;
|
||||
left: -5%;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
background: radial-gradient(circle, {{highlightColor}}15 0%, transparent 70%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.company-branding {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.company-logo-text {
|
||||
font-size: 32px;
|
||||
font-weight: 800;
|
||||
background: linear-gradient(135deg, {{highlightColor}} 0%, {{highlightColor}}cc 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
margin-bottom: 12px;
|
||||
letter-spacing: -0.5px;
|
||||
}
|
||||
|
||||
.company-tagline {
|
||||
font-size: 13px;
|
||||
color: #64748b;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.company-contact {
|
||||
font-size: 13px;
|
||||
color: #475569;
|
||||
line-height: 1.9;
|
||||
}
|
||||
|
||||
.company-contact div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.invoice-badge {
|
||||
text-align: right;
|
||||
background: white;
|
||||
padding: 24px 28px;
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
||||
border: 1px solid rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.invoice-label {
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2.5px;
|
||||
color: #94a3b8;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.invoice-number {
|
||||
font-size: 28px;
|
||||
font-weight: 800;
|
||||
color: {{highlightColor}};
|
||||
margin-bottom: 16px;
|
||||
letter-spacing: -0.5px;
|
||||
}
|
||||
|
||||
.invoice-status {
|
||||
display: inline-block;
|
||||
padding: 6px 16px;
|
||||
background: linear-gradient(135deg, {{highlightColor}}20 0%, {{highlightColor}}10 100%);
|
||||
color: {{highlightColor}};
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid {{highlightColor}}40;
|
||||
}
|
||||
|
||||
.details-section {
|
||||
padding: 48px 56px;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.info-grid {
|
||||
display: flex;
|
||||
gap: 48px;
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.info-card {
|
||||
flex: 1;
|
||||
padding: 28px;
|
||||
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
|
||||
border-radius: 12px;
|
||||
border-left: 4px solid {{highlightColor}};
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.info-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background: radial-gradient(circle, {{highlightColor}}08 0%, transparent 70%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.info-card-title {
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
color: #64748b;
|
||||
font-weight: 700;
|
||||
margin-bottom: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.info-card-title::before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
background: {{highlightColor}};
|
||||
border-radius: 50%;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.info-card-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.client-name {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
color: #1e293b;
|
||||
margin-bottom: 12px;
|
||||
letter-spacing: -0.3px;
|
||||
}
|
||||
|
||||
.info-detail {
|
||||
font-size: 14px;
|
||||
color: #475569;
|
||||
margin-bottom: 6px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.date-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 12px;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.date-item {
|
||||
background: white;
|
||||
padding: 12px 16px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #e2e8f0;
|
||||
}
|
||||
|
||||
.date-label {
|
||||
font-size: 10px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1.5px;
|
||||
color: #94a3b8;
|
||||
font-weight: 600;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.date-value {
|
||||
font-size: 14px;
|
||||
color: #1e293b;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.items-section {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
color: #64748b;
|
||||
font-weight: 700;
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 12px;
|
||||
border-bottom: 2px solid {{highlightColor}}30;
|
||||
}
|
||||
|
||||
.items-table {
|
||||
width: 100%;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
|
||||
.items-table thead {
|
||||
background: linear-gradient(135deg, {{highlightColor}} 0%, {{highlightColor}}dd 100%);
|
||||
}
|
||||
|
||||
.items-table th {
|
||||
padding: 18px 20px;
|
||||
text-align: left;
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1.5px;
|
||||
color: white;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.items-table th:last-child {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.items-table tbody tr {
|
||||
background: white;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.items-table tbody tr:nth-child(even) {
|
||||
background: #f8fafc;
|
||||
}
|
||||
|
||||
.items-table tbody tr:hover {
|
||||
background: {{highlightColorLight}};
|
||||
transform: scale(1.01);
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
.items-table td {
|
||||
padding: 20px;
|
||||
font-size: 14px;
|
||||
color: #334155;
|
||||
border-bottom: 1px solid #e2e8f0;
|
||||
}
|
||||
|
||||
.items-table tbody tr:last-child td {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.items-table td:last-child {
|
||||
text-align: right;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.item-description {
|
||||
font-weight: 600;
|
||||
color: #1e293b;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.summary-section {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.totals-card {
|
||||
width: 420px;
|
||||
background: linear-gradient(135deg, #f8fafc 0%, white 100%);
|
||||
border-radius: 16px;
|
||||
padding: 32px;
|
||||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
|
||||
border: 1px solid #e2e8f0;
|
||||
}
|
||||
|
||||
.total-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 14px 0;
|
||||
font-size: 15px;
|
||||
color: #475569;
|
||||
}
|
||||
|
||||
.total-row.subtotal {
|
||||
padding-bottom: 16px;
|
||||
border-bottom: 2px solid #e2e8f0;
|
||||
}
|
||||
|
||||
.total-row span:last-child {
|
||||
font-weight: 600;
|
||||
color: #1e293b;
|
||||
}
|
||||
|
||||
.total-row.tax {
|
||||
color: #64748b;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.total-row.grand-total {
|
||||
margin-top: 16px;
|
||||
padding-top: 20px;
|
||||
border-top: 3px solid {{highlightColor}};
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.total-row.grand-total span:first-child {
|
||||
color: #1e293b;
|
||||
}
|
||||
|
||||
.total-row.grand-total span:last-child {
|
||||
background: linear-gradient(135deg, {{highlightColor}} 0%, {{highlightColor}}cc 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
.notes-container {
|
||||
margin-top: 48px;
|
||||
padding: 28px;
|
||||
background: linear-gradient(135deg, {{highlightColorLight}} 0%, {{highlightColor}}08 100%);
|
||||
border-radius: 12px;
|
||||
border-left: 4px solid {{highlightColor}};
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.notes-container::before {
|
||||
content: '❝';
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 20px;
|
||||
font-size: 80px;
|
||||
color: {{highlightColor}}15;
|
||||
font-family: Georgia, serif;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.notes-title {
|
||||
font-size: 12px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
color: #64748b;
|
||||
font-weight: 700;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.notes-content {
|
||||
font-size: 14px;
|
||||
color: #475569;
|
||||
line-height: 1.8;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.footer-section {
|
||||
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
|
||||
padding: 40px 56px;
|
||||
color: white;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.footer-section::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
right: -20%;
|
||||
width: 500px;
|
||||
height: 500px;
|
||||
background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.thank-you {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 12px;
|
||||
letter-spacing: -0.3px;
|
||||
}
|
||||
|
||||
.footer-details {
|
||||
font-size: 13px;
|
||||
color: #94a3b8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.footer-tagline {
|
||||
margin-top: 20px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
font-size: 12px;
|
||||
color: #64748b;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.page-container {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.items-table tbody tr:hover {
|
||||
background: inherit;
|
||||
transform: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="page-container">
|
||||
<div class="top-accent"></div>
|
||||
|
||||
<div class="header-section">
|
||||
<div class="header-content">
|
||||
<div class="company-branding">
|
||||
<div class="company-logo-text">{{companyName}}</div>
|
||||
<div class="company-tagline">Professional Services</div>
|
||||
<div class="company-contact">
|
||||
{{#companyAddress}}
|
||||
<div>📍 {{companyAddress}}</div>
|
||||
{{/companyAddress}}
|
||||
{{#companyEmail}}
|
||||
<div>✉ {{companyEmail}}</div>
|
||||
{{/companyEmail}}
|
||||
{{#companyPhone}}
|
||||
<div>📞 {{companyPhone}}</div>
|
||||
{{/companyPhone}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="invoice-badge">
|
||||
<div class="invoice-label">Invoice</div>
|
||||
<div class="invoice-number">#{{invoiceNumber}}</div>
|
||||
{{#status}}
|
||||
<div class="invoice-status">{{status}}</div>
|
||||
{{/status}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="details-section">
|
||||
<div class="info-grid">
|
||||
<div class="info-card">
|
||||
<div class="info-card-title">Billed To</div>
|
||||
<div class="info-card-content">
|
||||
<div class="client-name">{{customerName}}</div>
|
||||
{{#customerAddress}}
|
||||
<div class="info-detail">{{customerAddress}}</div>
|
||||
{{/customerAddress}}
|
||||
{{#customerEmail}}
|
||||
<div class="info-detail">{{customerEmail}}</div>
|
||||
{{/customerEmail}}
|
||||
{{#customerPhone}}
|
||||
<div class="info-detail">{{customerPhone}}</div>
|
||||
{{/customerPhone}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="info-card">
|
||||
<div class="info-card-title">Payment Details</div>
|
||||
<div class="info-card-content">
|
||||
<div class="date-grid">
|
||||
<div class="date-item">
|
||||
<div class="date-label">Issued</div>
|
||||
<div class="date-value">{{issueDate}}</div>
|
||||
</div>
|
||||
{{#dueDate}}
|
||||
<div class="date-item">
|
||||
<div class="date-label">Due</div>
|
||||
<div class="date-value">{{dueDate}}</div>
|
||||
</div>
|
||||
{{/dueDate}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="items-section">
|
||||
<div class="section-title">Items & Services</div>
|
||||
<table class="items-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Description</th>
|
||||
<th>Qty</th>
|
||||
<th>Rate</th>
|
||||
<th>Amount</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#items}}
|
||||
<tr>
|
||||
<td class="item-description">{{description}}</td>
|
||||
<td>{{quantity}}</td>
|
||||
<td>{{unitPrice}}</td>
|
||||
<td>{{lineTotal}}</td>
|
||||
</tr>
|
||||
{{/items}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="summary-section">
|
||||
<div class="totals-card">
|
||||
{{#subtotal}}
|
||||
<div class="total-row subtotal">
|
||||
<span>Subtotal</span>
|
||||
<span>{{subtotal}}</span>
|
||||
</div>
|
||||
{{/subtotal}}
|
||||
{{#tax}}
|
||||
<div class="total-row tax">
|
||||
<span>Tax</span>
|
||||
<span>{{tax}}</span>
|
||||
</div>
|
||||
{{/tax}}
|
||||
{{#discount}}
|
||||
<div class="total-row tax">
|
||||
<span>Discount</span>
|
||||
<span>-{{discount}}</span>
|
||||
</div>
|
||||
{{/discount}}
|
||||
<div class="total-row grand-total">
|
||||
<span>Total Due</span>
|
||||
<span>{{total}} {{currency}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{#notes}}
|
||||
<div class="notes-container">
|
||||
<div class="notes-title">Additional Notes</div>
|
||||
<div class="notes-content">{{notes}}</div>
|
||||
</div>
|
||||
{{/notes}}
|
||||
</div>
|
||||
|
||||
<div class="footer-section">
|
||||
<div class="footer-content">
|
||||
<div class="thank-you">Thank You For Your Business!</div>
|
||||
<div class="footer-details">
|
||||
{{companyName}}<br>
|
||||
If you have any questions, please contact us
|
||||
</div>
|
||||
<div class="footer-tagline">
|
||||
Invoice generated on {{issueDate}} • Powered by Excellence
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user