New
parent
ad0b37c57f
commit
af5344cfe9
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,83 @@
|
|||||||
|
.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;
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 6.2 KiB |
@ -1,13 +1,13 @@
|
|||||||
// function refreshUserActivityContainer() {
|
function refreshUserActivityContainer() {
|
||||||
|
|
||||||
// $.ajax({
|
$.ajax({
|
||||||
// url: '/getupdatedactivities/',
|
url: '/getupdatedactivities/',
|
||||||
// method: 'GET',
|
method: 'GET',
|
||||||
// dataType: 'html',
|
dataType: 'html',
|
||||||
// success: function(data) {
|
success: function(data) {
|
||||||
// $('#activitiesContainer').html(data);
|
$('#activitiesContainer').html(data);
|
||||||
// }
|
}
|
||||||
// });
|
});
|
||||||
// }
|
}
|
||||||
|
|
||||||
// setInterval(refreshUserActivityContainer, 60000);
|
setInterval(refreshUserActivityContainer, 60000);
|
Loading…
Reference in New Issue