-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbill.css
More file actions
198 lines (165 loc) · 3.01 KB
/
Copy pathbill.css
File metadata and controls
198 lines (165 loc) · 3.01 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
body {
margin-top: 20px;
background-color: #f7f7ff;
}
#invoice {
padding: 0px;
}
.invoice {
position: relative;
background-color: #fff;
min-height: 680px;
padding: 15px;
}
.invoice header {
padding: 10px 0;
margin-bottom: 20px;
border-bottom: 1px solid #0d6efd;
}
.invoice .company-details {
text-align: right;
}
.invoice .company-details .name {
margin-top: 0;
margin-bottom: 0;
}
.invoice .contacts {
margin-bottom: 20px;
}
.invoice .invoice-to {
text-align: left;
}
.invoice .invoice-to .to {
margin-top: 0;
margin-bottom: 0;
}
.invoice .invoice-details {
text-align: right;
}
.invoice .invoice-details .invoice-id {
margin-top: 0;
color: #0d6efd;
}
.invoice main {
padding-bottom: 50px;
}
.invoice main .thanks {
margin-top: -200;
margin-left: 45%;
font-size: 2em;
margin-bottom: 50px;
}
.invoice main .notices {
padding-left: 6px;
border-left: 6px solid #0d6efd;
background: #e7f2ff;
padding: 10px;
}
.invoice main .notices .notice {
font-size: 1.2em;
}
.invoice table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
margin-bottom: 20px;
}
.invoice table td,
.invoice table th {
padding: 15px;
background: #eee;
border-bottom: 1px solid #fff;
}
.invoice table th {
white-space: nowrap;
font-weight: 400;
font-size: 16px;
}
.invoice table td h3 {
margin: 0;
font-weight: 400;
color: #0d6efd;
font-size: 1.2em;
}
.invoice table .qty,
.invoice table .total,
.invoice table .unit {
text-align: right;
font-size: 1.2em;
}
.invoice table .no {
color: #fff;
font-size: 1.6em;
background: #0d6efd;
}
.invoice table .unit {
background: #ddd;
}
.invoice table .total {
background: #0d6efd;
color: #fff;
}
.invoice table tbody tr:last-child td {
border: none;
}
.invoice table tfoot td {
background: 0 0;
border-bottom: none;
white-space: nowrap;
text-align: right;
padding: 10px 20px;
font-size: 1.2em;
border-top: 1px solid #aaa;
}
.invoice table tfoot tr:first-child td {
border-top: none;
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 0px solid rgba(0, 0, 0, 0);
border-radius: 0.25rem;
margin-bottom: 1.5rem;
box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%),
0 2px 6px 0 rgb(206 206 238 / 54%);
}
.invoice table tfoot tr:last-child td {
color: #0d6efd;
font-size: 1.4em;
border-top: 1px solid #0d6efd;
}
.invoice table tfoot tr td:first-child {
border: none;
}
.invoice footer {
width: 100%;
text-align: center;
color: #777;
border-top: 1px solid #aaa;
padding: 8px 0;
}
@media print {
.invoice {
font-size: 11px !important;
overflow: hidden !important;
}
.invoice footer {
position: absolute;
bottom: 10px;
page-break-after: always;
}
.invoice > div:last-child {
page-break-before: always;
}
}
.invoice main .notices {
padding-left: 6px;
border-left: 6px solid #0d6efd;
background: #e7f2ff;
padding: 10px;
}