Add files via upload

This commit is contained in:
Arc
2019-12-12 23:08:26 +00:00
committed by GitHub
parent 4921ffc776
commit b7e5bff034
75 changed files with 6766 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
/*
* Page: Invoice
* -------------
*/
.invoice {
position: relative;
background: #fff;
border: 1px solid #f4f4f4;
padding: 20px;
margin: 10px 25px;
}
.invoice-title {
margin-top: 0;
}
/* Enhancement for printing */
@media print {
.invoice {
width: 100%;
border: 0;
margin: 0;
padding: 0;
}
.invoice-col {
float: left;
width: 33.3333333%;
}
.table-responsive {
overflow: auto;
> .table tr th,
> .table tr td {
white-space: normal!important;
}
}
}