mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
580 B
38 lines
580 B
11 years ago
|
/*
|
||
|
Page: Invoice
|
||
|
*/
|
||
|
|
||
|
.invoice {
|
||
|
position: relative;
|
||
|
width: 90%;
|
||
|
margin: 10px auto;
|
||
|
background: #fff;
|
||
|
border: 1px solid #f4f4f4;
|
||
|
}
|
||
|
|
||
|
.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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|