You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.2 KiB
CSS
83 lines
1.2 KiB
CSS
.mainContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.mainContainer img {
|
|
width: 150px;
|
|
}
|
|
|
|
.invoiceDetails {
|
|
width: 100%;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 20px;
|
|
}
|
|
|
|
.customerDetails {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.customerDetails h1 {
|
|
color: rgb(181, 181, 181);
|
|
font-size: 18px;
|
|
}
|
|
|
|
.customerDetails p {
|
|
color: #374a7a;
|
|
}
|
|
|
|
.companyDetails {
|
|
display: flex;
|
|
align-items: end;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
color: #374a7a;
|
|
}
|
|
|
|
|
|
.invoiceItemsBar {
|
|
width: 100%;
|
|
height: 50px;
|
|
background-color: #374a7a;
|
|
padding: 10px 20px;
|
|
margin: 20px 0px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 10px;
|
|
color: white;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.invoiceItemsContainer {
|
|
width: 100%;
|
|
padding: 0px 20px;
|
|
}
|
|
|
|
.invoiceItemsContainer ul {
|
|
color: #374a7a;
|
|
list-style: circle;
|
|
}
|
|
|
|
.totalContainer {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: end;
|
|
margin-top: 20px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.totalContainer p {
|
|
color: rgb(181, 181, 181);
|
|
}
|
|
|
|
.totalContainer p span {
|
|
font-weight: 600;
|
|
color: #374a7a;
|
|
} |