-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinvoice-2.html
More file actions
426 lines (409 loc) · 12.5 KB
/
Copy pathinvoice-2.html
File metadata and controls
426 lines (409 loc) · 12.5 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<!DOCTYPE html>
<html>
<head>
<title>Invoice</title>
<link rel="stylesheet" type="text/css" href="fonts/fonts.css">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta http-equiv="content-type" content="text-html; charset=utf-8">
<style type="text/css">
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font: inherit;
font-size: 100%;
vertical-align: baseline;
}
html {
line-height: 1;
}
ol, ul {
list-style: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
caption, th, td {
text-align: left;
font-weight: normal;
vertical-align: middle;
}
q, blockquote {
quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
content: "";
content: none;
}
a img {
border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
display: block;
}
body {
font-family: Source Sans Pro, sans-serif;
font-weight: normal;
font-size: 12px;
margin: 0;
padding: 0;
color: #777777;
}
body a {
text-decoration: none;
color: inherit;
}
body a:hover {
color: inherit;
opacity: 0.7;
}
body .container {
min-width: 500px;
margin: 0 auto;
padding: 0 30px;
}
body .clearfix:after {
content: "";
display: table;
clear: both;
}
body .left {
float: left;
}
body .right {
float: right;
}
body .helper {
height: 100%;
}
header {
height: 40px;
margin-top: 20px;
margin-bottom: 40px;
padding: 0px 5px 0;
}
header figure {
float: left;
width: 40px;
margin-right: 10px;
}
header figure img {
height: 40px;
}
header .company-info {
color: #BDB9B9;
}
header .company-info .title {
margin-bottom: 5px;
color: #2A8EAC;
font-weight: bold;
font-size: 2em;
}
header .company-info .line {
display: inline-block;
height: 9px;
margin: 0 4px;
border-left: 1px solid #2A8EAC;
}
section .details {
min-width: 500px;
margin-bottom: 40px;
padding: 10px 35px;
background-color: #2A8EAC;
color: #ffffff;
}
section .details .client {
width: 50%;
line-height: 16px;
}
section .details .client .name {
font-weight: bold;
}
section .details .data {
width: 50%;
text-align: right;
}
section .details .title {
margin-bottom: 15px;
font-size: 3em;
font-weight: normal;
text-transform: uppercase;
}
section .table-wrapper {
position: relative;
overflow: hidden;
}
section .table-wrapper:before {
content: "";
display: block;
position: absolute;
top: 33px;
left: 30px;
width: 90%;
height: 100%;
border-top: 2px solid #BDB9B9;
border-left: 2px solid #BDB9B9;
z-index: -1;
}
section .no-break {
page-break-inside: avoid;
}
section table {
width: 100%;
margin-bottom: -20px;
table-layout: fixed;
border-collapse: separate;
border-spacing: 5px 20px;
}
section table .no {
width: 50px;
}
section table .desc {
width: 55%;
}
section table .qty, section table .unit, section table .total {
width: 15%;
}
section table tbody.head {
vertical-align: middle;
border-color: inherit;
}
section table tbody.head th {
text-align: center;
color: white;
font-weight: bold;
text-transform: uppercase;
}
section table tbody.head th div {
display: inline-block;
padding: 7px 0;
width: 100%;
background: #BDB9B9;
}
section table tbody.head th.desc div {
width: 115px;
margin-left: -110px;
}
section table tbody.body td {
padding: 10px 5px;
background: #F3F3F3;
text-align: center;
}
section table tbody.body h3 {
margin-bottom: 5px;
color: #2A8EAC;
font-weight: bold;
}
section table tbody.body .no {
padding: 0px;
background-color: #2A8EAC;
color: #ffffff;
font-size: 1.66666666666667em;
font-weight: bold;
line-height: 50px;
}
section table tbody.body .desc {
padding-top: 0;
padding-bottom: 0;
background-color: transparent;
color: #777787;
text-align: left;
}
section table tbody.body .total {
color: #2A8EAC;
font-weight: bold;
}
section table tbody.body tr.total td {
padding: 5px 10px;
background-color: transparent;
border: none;
color: #777777;
text-align: right;
}
section table tbody.body tr.total .empty {
background: white;
}
section table tbody.body tr.total .total {
font-size: 1.18181818181818em;
font-weight: bold;
color: #2A8EAC;
}
section table.grand-total {
margin-top: 40px;
margin-bottom: 0;
border-collapse: collapse;
border-spacing: 0px 0px;
margin-bottom: 40px;
}
section table.grand-total tbody td {
padding: 0 10px 10px;
background-color: #2A8EAC;
color: #ffffff;
font-weight: normal;
text-align: right;
}
section table.grand-total tbody td.no, section table.grand-total tbody td.desc, section table.grand-total tbody td.qty {
background-color: transparent;
}
section table.grand-total tbody td.total, section table.grand-total tbody td.grand-total {
border-right: 5px solid #ffffff;
}
section table.grand-total tbody td.grand-total {
padding: 0;
font-size: 1.16666666666667em;
font-weight: bold;
background-color: transparent;
}
section table.grand-total tbody td.grand-total div {
float: right;
padding: 10px 5px;
background-color: #21BCEA;
}
section table.grand-total tbody td.grand-total div span {
margin-right: 5px;
}
section table.grand-total tbody tr:first-child td {
padding-top: 10px;
}
footer {
margin-bottom: 20px;
padding: 0 5px;
}
footer .thanks {
margin-bottom: 40px;
color: #2A8EAC;
font-size: 1.16666666666667em;
font-weight: bold;
}
footer .notice {
margin-bottom: 25px;
}
footer .end {
padding-top: 5px;
border-top: 2px solid #2A8EAC;
text-align: center;
}
</style>
</head>
<body>
<header class="clearfix">
<div class="container">
<figure>
<img class="logo" src="data:image/svg+xml;charset=utf-8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjQxcHgiIGhlaWdodD0iNDFweCIgdmlld0JveD0iMCAwIDQxIDQxIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMy40LjEgKDE1NjgxKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5MT0dPPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc2tldGNoOnR5cGU9Ik1TUGFnZSI+CiAgICAgICAgPGcgaWQ9IklOVk9JQ0UtMiIgc2tldGNoOnR5cGU9Ik1TQXJ0Ym9hcmRHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMwLjAwMDAwMCwgLTMwLjAwMDAwMCkiIGZpbGw9IiMyQThFQUMiPgogICAgICAgICAgICA8ZyBpZD0iWkFHTEFWTEpFIiBza2V0Y2g6dHlwZT0iTVNMYXllckdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMC4wMDAwMDAsIDE1LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPGcgaWQ9IkxPR08iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMDAwMDAwLCAxNS4wMDAwMDApIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzkuOTI0NjM2MywxOC40NDg2MjEgTDMzLjc3MDczNTgsMTEuODQyMjkyMyBMMzMuNzcwNzM1OCw0LjIxMDUyNjgxIEMzMy43NzA3MzU4LDIuODMwOTIyMzYgMzIuNzI5MzQxMSwxLjcxMjU0NDE0IDMxLjQ0MTczNzIsMS43MTI1NDQxNCBDMzAuMTU3NDExOSwxLjcxMjU0NDE0IDI5LjExNjAxNzMsMi44MzA5MjIzNiAyOS4xMTYwMTczLDQuMjEwNTI2ODEgTDI5LjExNjAxNzMsNi44NDUxMTcwNCBMMjQuNTMzNzM3NCwxLjkyNjAzNDcxIEMyMi4yNjgwNTg1LC0wLjUwNDQxNDA5NCAxOC4zMjkwMTcxLC0wLjUwMDEyNDQ4NCAxNi4wNjg4NzEsMS45MzAzMjQzMiBMMC42ODExNDgzMjksMTguNDQ4NjIxIEMtMC4yMjY5NDY5ODQsMTkuNDI1NjYyMSAtMC4yMjY5NDY5ODQsMjEuMDA2NzY4MiAwLjY4MTE0ODMyOSwyMS45ODIwNDk0IEMxLjU5MDE2NTc3LDIyLjk1OTA5MDUgMy4wNjU3ODIyMywyMi45NTkwOTA1IDMuOTczODc3NTUsMjEuOTgyMDQ5NCBMMTkuMzU5OTYwOSw1LjQ2Mzc1Mjc1IEMxOS44NjE0OTg0LDQuOTI4NDMxNDcgMjAuNzQ0Nzk4Niw0LjkyODQzMTQ3IDIxLjI0MzQ2NzIsNS40NjIxMDI5IEwzNi42MzE5MDcxLDIxLjk4MjA0OTQgQzM3LjA4ODU2NzUsMjIuNDcwNTE1IDM3LjY4MzM0MjgsMjIuNzEzNzAyOSAzOC4yNzgxMTgsMjIuNzEzNzAyOSBDMzguODc0MDIwNCwyMi43MTM3MDI5IDM5LjQ3MDAyNTIsMjIuNDcwNTE1IDM5LjkyNTA0NjIsMjEuOTgyMDQ5NCBDNDAuODMzNTUxMywyMS4wMDY3NjgyIDQwLjgzMzU1MTMsMTkuNDI1NjYyMSAzOS45MjQ2MzYzLDE4LjQ0ODYyMSBMMzkuOTI0NjM2MywxOC40NDg2MjEgWiIgaWQ9IkZpbGwtMSI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMS4xMTEzOTc0LDEwLjIwNTg2MTIgQzIwLjY2NDM2ODIsOS43MjYzMDQ4MiAxOS45NDA2OTkzLDkuNzI2MzA0ODIgMTkuNDk0ODk5NiwxMC4yMDU4NjEyIEw1Ljk1OTg0Mjk2LDI0LjczMTM1OTIgQzUuNzQ2MTEzMiwyNC45NjAzNTg0IDUuNjI1MjExNDIsMjUuMjczNjA5OSA1LjYyNTIxMTQyLDI1LjYwMDA2MDIgTDUuNjI1MjExNDIsMzYuMTk0ODQ2IEM1LjYyNTIxMTQyLDM4LjY4MDcyOTcgNy41MDI3NzUwNyw0MC42OTYxODYzIDkuODE4NDUzOTgsNDAuNjk2MTg2MyBMMTYuNTE5NDg2Myw0MC42OTYxODYzIEwxNi41MTk0ODYzLDI5LjU1NTQxMDIgTDI0LjA4NTA2ODgsMjkuNTU1NDEwMiBMMjQuMDg1MDY4OCw0MC42OTYxODYzIEwzMC43ODY2MTM1LDQwLjY5NjE4NjMgQzMzLjEwMjI5MjQsNDAuNjk2MTg2MyAzNC45Nzk3NTM2LDM4LjY4MDcyOTcgMzQuOTc5NzUzNiwzNi4xOTQ4NDYgTDM0Ljk3OTc1MzYsMjUuNjAwMDYwMiBDMzQuOTc5NzUzNiwyNS4yNzM2MDk5IDM0Ljg1OTY3MTUsMjQuOTYwMzU4NCAzNC42NDUyMjQ1LDI0LjczMTM1OTIgTDIxLjExMTM5NzQsMTAuMjA1ODYxMiBaIiBpZD0iRmlsbC0zIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==" alt="">
</figure>
<div class="company-info">
<h2 class="title">Company Name</h2>
<span>455 Foggy Heights, AZ 85004, US</span>
<span class="line"></span>
<a class="phone" href="tel:602-519-0450">(602) 519-0450</a>
<span class="line"></span>
<a class="email" href="mailto:company@example.com">company@example.com</a>
</div>
</div>
</header>
<section>
<div class="details clearfix">
<div class="client left">
<p>INVOICE TO:</p>
<p class="name">John Doe</p>
<p>
796 Silver Harbour,<br>
TX 79273, US
</p>
<a href="mailto:john@example.com">john@example.com</a>
</div>
<div class="data right">
<div class="title">Invoice 3-2-1</div>
<div class="date">
Date of Invoice: 01/06/2014<br>
Due Date: 30/06/2014
</div>
</div>
</div>
<div class="container">
<div class="table-wrapper">
<table>
<tbody class="head">
<tr>
<th class="no"></th>
<th class="desc"><div>Description</div></th>
<th class="qty"><div>Quantity</div></th>
<th class="unit"><div>Unit price</div></th>
<th class="total"><div>Total</div></th>
</tr>
</tbody>
<tbody class="body">
<tr>
<td class="no">01</td>
<td class="desc">Creating a recognizable design solution based on the company's existing visual identity</td>
<td class="qty">30</td>
<td class="unit">$40.00</td>
<td class="total">$1,200.00</td>
</tr>
<tr>
<td class="no">02</td>
<td class="desc">Developing a Content Management System-based Website</td>
<td class="qty">80</td>
<td class="unit">$40.00</td>
<td class="total">$3,200.00</td>
</tr>
<tr>
<td class="no">03</td>
<td class="desc">Optimize the site for search engines (SEO)</td>
<td class="qty">20</td>
<td class="unit">$40.00</td>
<td class="total">$800.00</td>
</tr>
</tbody>
</table>
</div>
<div class="no-break">
<table class="grand-total">
<tbody>
<tr>
<td class="no"></td>
<td class="desc"></td>
<td class="qty"></td>
<td class="unit">SUBTOTAL:</td>
<td class="total">$5,200.00</td>
</tr>
<tr>
<td class="no"></td>
<td class="desc"></td>
<td class="qty"></td>
<td class="unit">AX 25%:</td>
<td class="total">$1,300.00</td>
</tr>
<tr>
<td class="grand-total" colspan="5"><div><span>GRAND TOTAL:</span>$6,500.00</div></td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="thanks">Thank you!</div>
<div class="notice">
<div>NOTICE:</div>
<div>A finance charge of 1.5% will be made on unpaid balances after 30 days.</div>
</div>
<div class="end">Invoice was created on a computer and is valid without the signature and seal.</div>
</div>
</footer>
</body>
</html>