Refactor Estimate templates

This commit is contained in:
radhu587
2020-05-06 18:02:27 +05:30
parent 189141c84d
commit 30f76e2088
4 changed files with 472 additions and 414 deletions

View File

@ -64,13 +64,13 @@
padding-bottom: 20px;
}
/* -------------------------- */
/* company details style */
.company-details-container {
padding-top: 30px;
}
/* -------------------------- */
/* company address style */
.company-address-container {
float: left;
padding-left: 30px;
@ -100,10 +100,6 @@
padding: 10px 30px 0 0;
}
.amount-due {
background-color: #f2f2f2;
}
.attribute-label {
font-size: 12px;
line-height: 18px;
@ -118,7 +114,6 @@
text-align: right;
}
/* -------------------------- */
/* customer address style */
@ -198,14 +193,17 @@
width: 160px;
}
.item-table {
/* -------------------------- */
/* items style */
.items-table {
margin-top: 35px;
padding: 0px 30px 10px 30px;
page-break-before: avoid;
page-break-after: auto;
}
.item-table hr {
.items-table hr {
height: 0.1px;
}
@ -241,15 +239,15 @@
border-color: #d9d9d9;
}
.padd8 {
padding-top: 8px;
padding-bottom: 8px;
.item-description {
color: #595959;
font-size: 9px;
font-weight:300;
line-height: 12px;
}
.padd2 {
padding-top: 2px;
padding-bottom: 2px;
}
/* -------------------------- */
/* total display table style */
.total-display-table {
border-top: none;
@ -262,6 +260,23 @@
margin-top: 10px
}
.total-table-attribute-label {
font-size: 12px;
color: #55547A;
text-align: left;
padding-left: 10px;
}
.total-table-attribute-value {
font-weight: 500;
text-align: right;
font-size: 12px;
color: #040405;
padding-right: 10px;
padding-top: 2px;
padding-bottom: 2px;
}
.total-border-left {
border: 1px solid #E8E8E8 !important;
border-right: 0px !important;
@ -276,9 +291,8 @@
padding: 8px !important;
}
.inv-item {
border-color: red;
}
/* -------------------------- */
/* notes style */
.notes {
font-size: 12px;
@ -300,6 +314,13 @@
padding-bottom: 10px;
}
/* -------------------------- */
/* helpers style */
.text-primary {
color: #5851DB;
}
.text-center {
text-align: center
}
@ -312,9 +333,43 @@
text-align: right;
}
.no-border {
.border-0 {
border: none;
}
.py-2 {
padding-top: 2px;
padding-bottom: 2px;
}
.py-8 {
padding-top: 8px;
padding-bottom: 8px;
}
.py-3 {
padding: 3px 0;
}
.pr-20 {
padding-right: 20px;
}
.pr-10 {
padding-right: 10px;
}
.pl-20 {
padding-left: 20px;
}
.pl-10 {
padding-left: 10px;
}
.pl-0 {
padding-left: 0;
}
</style>
</head>