init crater

This commit is contained in:
Mohit Panjwani
2019-11-11 12:16:00 +05:30
commit bdf2ba51d6
668 changed files with 158503 additions and 0 deletions

40
resources/assets/sass/pages/404.scss vendored Normal file
View File

@ -0,0 +1,40 @@
.page-error-404 {
background: $ls-color-secondary;
.error-box {
border-radius: 4px;
left: 50%;
margin: 0 auto;
margin-bottom: 45px;
padding: 20px;
position: absolute;
top: 50%;
color: $white;
transform: translate(-50%, -60%);
width: 800px;
}
h1 {
font-size: 10rem;
color: $ls-color-primary;
margin-bottom: 2rem;
}
h5 {
font-size: 2rem;
color: $white;
margin-bottom: 40px;
}
}
.bg-yellow {
background-color: $ls-color-primary;
color: $ls-color-secondary;
&:hover {
background-color: darken($ls-color-primary, 5%);
}
}

View File

@ -0,0 +1,123 @@
// Dashboard - Create & Index
// -------------------------
.customer-create {
.section-title {
font-style: normal;
font-weight: 500;
font-size: 17.5px;
line-height: 21px;
letter-spacing: 0.1px;
color: #000000;
}
.form-label {
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 21px;
color: $ls-color-secondary;
}
.customer-card {
border: 1px solid $ls-color-gray--light;
padding: 10px;
}
.same-address-checkbox-container {
display: flex;
justify-content: flex-end;
padding-left: 12px;
margin-bottom: 1.5rem;
align-items: center;
justify-content: flex-end;
}
hr {
margin-bottom: 1.8rem;
border: 1px solid $ls-color-gray--light;
}
.header-button-container {
display: block;
}
.collapse-button-container {
display: none;
.collapse-button {
width: 100%;
display: flex;
justify-content: center;
}
}
}
@media(max-width: $x-small-breakpoint ) {
.customer-index {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
}
.customer-create {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
.same-address-checkbox-container {
display: flex;
justify-content: flex-start;
padding-left: 15px;
margin-bottom: 0rem;
}
hr {
margin-bottom: 1.2rem;
border: 1px solid $ls-color-gray--light;
}
.section-title {
padding: 15px;
}
.collapse-button-container {
display: block;
}
.header-button-container {
display: none;
}
}
}

View File

@ -0,0 +1,368 @@
// Dashboard
// -------------------------
.dashbox {
background-color: $white;
box-shadow: $shadow;
border-radius: 4px;
margin-bottom: 30px;
padding: 20px;
position: relative;
display: flex;
justify-content: space-between;
i {
font-size: 30px;
left: 40px;
position: absolute;
top: 53px;
}
.title {
color: $ls-color-gray--dark;
display: block;
font-size: 17.5px;
line-height: 21px;
margin-top: 5px;
}
.amount {
color: $ls-color-black;
font-weight: 600;
font-size: 28px;
line-height: 34px;
}
&:active,
&:focus,
&:hover {
text-decoration: none;
background-color: $ls-color-gray--very-light;
}
}
.dash-item {
flex: 3;
padding: 0 15px 0 15px;
}
.dash-item:first-child {
flex: 5
}
.dashboard-card .card-header {
border: none !important;
margin-bottom: 30px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0;
padding-left: 10px;
h6 {
font-weight: 500;
font-size: 17.5px;
line-height: 21px;
letter-spacing: 0.1px;
flex: 1;
}
.year-selector {
height: 50px;
width: 150px;
}
}
.graph-body {
display: flex !important;
.chart-desc {
border-left: 1px solid $ls-color-gray--light;
padding: 0
}
.stats {
text-align: right;
display: flex;
flex-direction: column;
height: 100%;
.description {
padding-top: 30px;
flex: 1;
}
.description:last-child {
border-top: 1px solid $ls-color-gray--light;
padding-top: 30px;
}
.title {
font-size: 14px;
line-height: 21px;
letter-spacing: 0.01em;
padding-right: 25px
}
.total {
display: block;
margin-top: 6px;
font-weight: 600;
font-size: 24.5px;
line-height: 29px;
padding-right: 25px
}
}
}
.table-row {
margin-top: 20px;
.table-header {
display: flex;
justify-content: space-between;
position: relative;
align-items: center;
z-index: 1;
margin-bottom: 10px;
.table-title {
font-weight: 600;
font-size: 21px;
line-height: 25px;
margin-bottom: 0;
}
}
}
// Ecommerce
.dashbox-line-progress {
padding: 30px;
text-align: left;
i {
right: 30px;
left: auto;
top: 30px;
}
.progress {
height: 0.5rem;
margin-bottom: 0;
background-color: $ls-color-gray--light;
}
.title {
margin-bottom: 15px;
font-size: 26px;
}
}
.dashbox-circle-progress {
text-align: left;
padding: 30px;
.easy-pie-chart {
position: absolute;
right: 30px;
top: 50%;
transform: translate(0, -50%);
}
}
@media (min-width: 1200px) and (max-width: 1400px) {
.dashbox {
padding: 15px;
i {
left: 30px;
top: 25px;
}
&.dashbox-line-progress i {
right: 15px;
left: auto;
top: 15px;
}
}
.dashbox-circle-progress {
padding: 30px;
}
}
@media (max-width: 1200px) {
.dashbox {
padding: 12px;
.title {
font-size: 14px;
line-height: 16px;
margin-top: 3px;
}
.amount {
font-weight: 500;
font-size: 24px;
line-height: 30px;
}
}
.graph-body {
display: block !important;
.stats {
flex-direction: row;
flex-wrap: wrap;
text-align: center;
border-top: 1px solid $ls-color-gray--light;
.total {
padding-right: 0;
}
.description {
padding:30px 25px;
}
.description:last-child {
border-top: none;
padding-top: 30px;
border-left: 1px solid $ls-color-gray--light;
}
}
}
}
@media (max-width: 992px) {
.dashbox
.icon
.card-icon {
height: 40px;
width: 40px;
}
.dashboard-card
.card-header {
margin-bottom: 20px;
.year-selector {
height: 40px;
}
}
.dashboard-card
.card-header {
padding-left: 0;
h6 {
font-size: 16px;
line-height: 19px;
letter-spacing: 0;
}
}
.dash-item {
flex: 3px;
padding: 0 15px 0 15px;
}
.dash-item:nth-child(odd) {
padding: 0 15px 0 15px;
flex: 100%
}
.dash-item:nth-child(even) {
padding: 0 15px 0 15px;
flex: 100%
}
.graph-body {
.stats {
.title {
font-size: 12px;
line-height: 12px;
padding-right: 0;
}
.total {
display: block;
margin-top: 3px;
font-weight: 600;
font-size: 16px;
line-height: 1.2;
}
.description {
padding: 10px;
}
.description:last-child {
padding: 10px;
flex: 100%;
border-top: 1px solid #EBF1FA;
.title {
padding-right: 0;
}
}
}
}
.table-row
.mob-table {
margin-top: 25px !important;
}
}
//Finanace
.card.with-tabs .tabs-component {
.tabs-component-tabs {
position: absolute;
right: 1.25rem;
top: 14px;
}
.tabs-component-panels {
border: 0 !important;
}
}
@media(max-width: $small-breakpoint) {
.card.with-tabs .tabs-component {
.tabs-component-tabs {
position: relative;
display: block;
margin-right: -41px;
border-radius: 0;
top: -21px;
margin-left: -1px;
}
.tabs-component-panels {
// border: 0 !important;
}
.tabs-component-tab:not(:last-child) {
border-bottom: dotted 1px $ls-color-gray;
}
}
.dashboard-table
.table-component {
tr {
&:first-child {
margin-top: 20px;
}
}
td {
&:first-child {
padding-top: 40px !important;
justify-content: center;
}
}
}
}

View File

@ -0,0 +1,589 @@
// Estimates - Create
// -------------------------
.estimate-create-page {
position: relative;
.page-header {
margin: 0 0 40px 0;
.page-title {
font-size: 24.5px;
margin: 0 0 15px 0;
}
.breadcrumb {
.breadcrumb-item {
font-size: 14px;
}
}
.page-actions {
.btn-crater {
margin: 0 0 0 14px;
}
}
}
.estimate-input {
padding-left: 40px;
}
.show-customer {
background: #FFFFFF;
padding: 0 10px 0 10px;
min-height: 170px;
border: 1px solid $ls-color-gray--light;
label {
font-size: 14px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}
}
.address-menu {
display: flex;
flex-direction: column;
.title {
font-size: 15px;
white-space: nowrap;
color: $ls-color-gray;
font-weight: 500;
}
.content {
display: flex;
flex-direction: column;
label {
position: relative;
white-space: nowrap;
width: 90%;
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
.customer-content {
display: flex;
justify-content: space-between;
.email {
flex: 8;
}
.action {
cursor: pointer;
flex: 1;
font-size: 14px;
font-weight: 500;
color: $ls-color-primary;
margin: 0 0 0 0;
position: relative;
}
}
.add-customer {
padding: 0 0 0 0;
.add-customer-action {
position: relative;
display: flex;
justify-content: center;
background: #ffffff;
border: 1px solid $ls-color-gray--light;
min-height: 170px;
border-radius: 5px;
padding: 64px 0;
.customer-icon {
display: flex;
justify-content: center;
background: $ls-color-gray--light;
width: 40px;
color: white;
height: 40px;
font-size: 14px;
font-family: Poppins;
padding: 11px 14px 11px 13px;
border-radius: 50%;
margin: 0 15px 0 0;
}
label {
font-size: 17.5px;
margin: 7px 0 0 0;
}
}
}
.customer-required {
border: 1px solid $ls-color-red;
border-radius: 5px;
}
.offset-md-1 {
margin-left: 5%;
}
.estimate-input-group {
margin-bottom: 41px;
margin-right: 0;
.estimate-input {
padding-right: 0;
label {
font-family: Poppins;
font-style: normal;
font-weight: 500;
font-size: 14px;
color: $ls-color-black--light;
margin: 0 0 10px 0;
}
}
}
.item-table {
width: 100%;
text-align: center;
.item-table-header {
border: 1px solid $ls-color-gray--light;
background: white;
th {
padding: 10px 20px;
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 21px;
color: #55547A;
border-top: 1px solid $ls-color-gray--light;
border-bottom: 1px solid $ls-color-gray--light;
}
.item-heading {
padding-left: 50px;
}
.amount-heading {
padding-right: 50px;
}
th:first-child {
padding-left: 0 !important;
border-left: 1px solid $ls-color-gray--light;
}
th:last-child {
padding-right: 0 !important;
border-right: 1px solid $ls-color-gray--light;
}
}
.item-body {
td:first-child {
padding-left: 0 !important;
}
td:last-child {
padding-right: 0 !important;
}
.item-row {
background: #FFFFFF;
border: 1px solid $ls-color-gray--light;
box-sizing: border-box;
border-radius: 0px 0px 5px 5px;
td {
padding: 15px 20px;
text-align: left;
vertical-align: top;
}
> td {
padding: 0;
}
.item-select {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 20px;
color: $ls-color-gray--dark;
overflow: auto !important;
max-height: 250px !important;
}
.search-select .selector-menu {
top: 45px !important;
}
.main {
padding: 0 !important;
}
.item-amount {
display: flex;
align-items: center;
justify-content: flex-end;
}
.item-select-wrapper {
display: flex;
justify-content: flex-start;
}
.item-selector {
flex: 1;
}
.selected-item {
display: flex;
align-items: center;
height: 40px;
padding-left: 10px;
border: 1px solid $ls-color-gray--light;
background: $ls-color-gray--very-light;
border-radius: 5px;
position: relative;
}
.deselect-icon {
color: $ls-color-gray;
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
}
.sort-icon-wrapper,
.remove-icon-wrapper {
display: flex;
justify-content: center;
align-items: center;
margin: 0 15px;
height: 40px;
width: 20px;
cursor: pointer;
}
.sort-icon-wrapper {
color: $ls-color-gray;
height: 20px;
margin-top: 8px;
cursor: move;
}
.remove-icon {
color: $ls-color-secondary;
}
}
}
}
.tax-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
.tax-amount {
flex: 3;
}
.tax-select {
flex: 4;
}
}
.tax-tr td {
padding: 0 21px;
}
.multi-select-item {
.multiselect,
.multiselect__input,
.multiselect__single {
border: none;
display: flex;
align-items: center;
}
.multiselect:focus {
outline: none;
}
.multiselect__input,
.multiselect__single {
min-height: 40px;
padding-left: 10px;
border: 1px solid rgb(234, 241, 251);
}
.multiselect__tags {
// margin-bottom: 8px;
min-height: 30px;
padding: 0;
border: 0px ;
}
.multiselect__select {
line-height: 16px;
width: 40px;
height: 38px;
transition: transform 0.2s ease;
}
.multiselect__content-wrapper {
overflow: hidden;
border: 1px solid $ls-color-gray--light;
box-shadow: $shadow-md;
border-radius: 0px 0px 5px 5px;
}
.multiselect__content {
max-height: 240px;
overflow: auto;
}
}
.add-item-action {
display: flex;
justify-content: center;
align-items: center;
color: $ls-color-primary--light;
padding: 13px 23px;
width: 100%;
font-size: 15px;
border-bottom: 1px solid $ls-color-gray--light;
cursor: pointer;
&:hover {
background: $ls-color-gray--light;
}
.icon-fa {
margin: 2px 11px 0 0;
}
}
.estimate-foot {
display: flex;
justify-content: space-between;
margin: 35px 0;
.btn-template {
background: $ls-color-gray--light;
border: 1px solid $ls-color-gray--light;
color: $ls-color-black;
font-size: 14px;
}
.icon-button {
color: $ls-color-gray--dark;
}
label {
font-size: 14px;
margin: 0 0 0 0;
}
.estimate-notes {
display: flex;
flex-direction: column;
margin: 5px 0 0 0;
textarea {
border: 1px solid $ls-color-gray--light;
border-radius: 5px;
width: 100%;
min-height: 100px;
padding: 0 0 0 0;
}
}
.estimate-total {
display: flex;
flex-direction: column;
background: #ffffff;
min-width: 390px;
padding: 15px 20px;
border: 1px solid $ls-color-gray--light;
border-radius: 5px;
&> label {
text-transform: uppercase;
}
.section {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 7px 0;
.estimate-label {
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
line-height: 21px;
color:$ls-color-gray--dark;
}
.estimate-amount {
font-size: 18px;
color: #55547A;
}
.total {
color: $ls-color-primary--light;
}
.discount-drop-down {
width: 105px;
}
.item-dropdown {
font-family: Arial, Helvetica, sans-serif !important;
font-size: 16px;
}
}
.border-top {
margin: 0;
padding-top: 7px;
border-top: 1px solid $ls-color-gray--light;
}
.tax-selector {
font-weight: 600;
font-size: 14px;
margin-top: 12px;
line-height: 21px;
color: $ls-color-primary--light;
}
}
}
.item-row {
.item-name {
font-weight: 500;
text-align: left;
font-size: 14px;
}
.item-description {
width: 100%;
font-weight: 300;
font-size: 12px;
padding-top: 2px;
padding-left: 10px;
textarea {
&::placeholder {
font-family: Poppins;
font-style: normal;
font-size: 12px;
color: $ls-color-gray;
}
border: none;
resize: none;
width: 100%;
color: $ls-color-gray--very-dark;
}
}
.action {
font-weight: 500;
font-size: 14px;
color: $ls-color-primary;
cursor: pointer;
}
.activator {
label {
color: $ls-color-gray--dark;
font-size: 14px;
}
}
}
.item-dropdown {
display: flex;
border: 1px solid $ls-color-gray--light !important;
background-color: #fff !important;
border-radius: 0px 5px 5px 0px !important;
justify-content: center;
align-items: center;
height: 40px;
&:focus {
box-shadow: none !important;
}
}
.item-discount {
border-radius: 5px 0px 0px 5px !important;
height: 40px;
// border-right: 0px !important;
}
@media (max-width: $x-small-breakpoint) {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
.estimate-input-group {
.estimate-input {
padding-right: 15px;
padding-left: 20px;
margin-top: 1.5rem;
}
}
.estimate-foot {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.btn-template {
width: 100%;
display: flex;
justify-content: center;
}
.estimate-total {
margin-top: 25px;
}
}
}
}

View File

@ -0,0 +1,98 @@
// Estimates - Index
// -------------------------
.estimate-index-page {
.table-actions {
position: relative;
border: none;
.table-actions-button {
position: absolute;
right: 0px;
top: -15px;
}
.table-stats {
margin: 0;
position: absolute;
right: 0px;
top: 40px;
}
}
.filter-container {
display: flex;
justify-content: space-between;
}
.filter-customer {
margin-right: 40px;
flex: 1;
}
.filter-status {
margin-right: 40px;
flex: 1;
}
.filter-date {
flex: 1;
display: flex;
margin-right: 40px;
align-items: center;
.from {
flex: 1;
}
.to {
flex: 1;
}
}
.filter-estimate {
flex: 1;
}
.dashed {
border: 1px solid #B9C1D1;
width: 10px;
margin-top: 28px;
}
@media(max-width: $medium-breakpoint ) {
.filter-container {
flex-direction: column;
}
.filter-estimate {
margin-right: 40px;
}
.filter-customer,
.filter-status,
.filter-date,
.filter-estimate {
margin-bottom: 10px;
margin-right: 0px;
}
}
@media(max-width: $x-small-breakpoint) {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
}
}

View File

@ -0,0 +1,255 @@
// Estimates - View
// -------------------------
.estimate-view-page {
padding-left: 570px !important;
.estimate-sidebar {
width: 300px;
height: 100vh;
height: 100%;
left: 240px;
padding: 60px 0 10px;
position: fixed;
top: 0;
width: 300px;
z-index: 30;
background: #ffffff;
}
.inv-search {
background: $ls-color-gray--very-light !important;
}
.side-estimate {
padding: 12px 16px;
display: flex;
justify-content: space-between;
border-bottom: 1px solid rgba(185, 193, 209, 0.41);
cursor: pointer;
&:last-child {
margin-bottom: 98px;
}
&:hover {
background-color: $gray--very-light;
}
.left {
.status-expired {
background: #FED7D7;
font-size: 13px;
color: #9B2C2C;
padding: 5px 10px;
}
.status-accepted {
background: #D5EED0;
font-size: 13px;
color: #354930;
padding: 5px 10px;
}
.status-sent {
background: rgba(246, 208, 154, 0.4);
font-size: 13px;
color: #A96E1A;
padding: 5px 10px;
}
.status-viewed {
background: #C9E3EC;
font-size: 13px;
color: #1E576C;
padding: 5px 10px;
}
.status-pending {
background: #FED7D7;
font-size: 13px;
color: #9B2C2C;
padding: 5px 10px;
}
.status-rejected {
background: #E1E0EA;
font-size: 13px;
color: #312F57;
padding: 5px 10px;
}
.status-draft {
background: #F8EDCB;
font-size: 13px;
color: #6C432E;
padding: 5px 10px;
}
.inv-name {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 21px;
text-transform: capitalize;
color: $ls-color-black;
margin-bottom: 6px;
}
.inv-number {
font-style: normal;
font-weight: 500;
font-size: 12px;
line-height: 18px;
color: $ls-color-gray--very-dark;
margin-bottom: 6px;
}
.inv-status {
font-style: normal;
font-weight: normal;
font-size: 10px;
line-height: 15px;
padding: 2px 10px;
display: inline-block;
}
}
.right {
.inv-amount {
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 30px;
text-align: right;
color: $ls-color-black--light;
}
.inv-date {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 21px;
text-align: right;
color: $ls-color-gray--very-dark;
}
}
}
.no-result {
color: $ls-color-gray;
display: flex;
justify-content: center;
margin-top: 20px;
}
.side-header {
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 15px;
border-bottom: 1px solid rgba(185, 193, 209, 0.41);
.inv-button {
background: $ls-color-gray--very-light;
border: 1px solid #eaf1fb;
box-sizing: border-box;
color: $ls-color-gray--dark;
}
}
.side-content {
overflow-y: scroll;
height: 100%;
}
.estimate-view-page-container {
display: flex;
flex-direction: column;
height: 75vh;
min-height: 0;
overflow:hidden;
}
.frame-style {
flex: 1 1 auto;
border: 1px solid $ls-color-gray;
border-radius: 7px;
}
.inv-filter-fields-btn,
.inv-filter-sorting-btn {
&:focus {
outline: none !important;
box-shadow: 0 0 0 0.09rem rgba(111, 110, 142, 0.5) !important;
}
}
.filter-container {
margin-left: 12px;
.filter-items {
display: flex;
&:first-child {
margin-top: auto;
}
}
.inv-label {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 18px;
text-transform: capitalize;
color: $ls-color-black;
margin-bottom: 6px;
margin-left: 10px;
}
.base-input {
width: 20%;
}
.dropdown-container {
padding: 11px;
left: auto;
right: 0px;
width: 166px;
}
}
.filter-estimate-date {
.vdp-datepicker {
div {
.vdp-datepicker__clear-button {
margin-left: -21px;
margin-top: 2px;
font-size: 20px;
font-weight: 800;
}
}
}
}
.date-group {
display: flex;
}
.to-text {
padding: 8px;
}
}
@media (max-width: $small-breakpoint) {
.estimate-view-page {
padding-left: 310px !important;
}
.estimate-sidebar {
transition: 0.2s all;
left: 0px !important;
}
}

View File

@ -0,0 +1,72 @@
// Expenses
// -------------------------
.expenses {
.header-button-container {
// display: block;
}
.collapse-button-container {
display: none;
.collapse-button {
width: 100%;
display: flex;
justify-content: center;
}
}
.notes {
overflow: hidden;
width: 200px;
.note {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
}
@media(max-width: $x-small-breakpoint ) {
.expenses {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
.page-header {
margin-bottom: 5px;
}
.table-actions {
margin-top: 0px !important;
}
.header-button-container {
display: none;
}
.collapse-button-container {
margin-top: 8px;
display: block;
}
}
}

View File

@ -0,0 +1,591 @@
// Invoices - Create
// -------------------------
.invoice-create-page {
position: relative;
.page-header {
margin: 0 0 40px 0;
.page-title {
font-size: 24.5px;
margin: 0 0 15px 0;
}
.breadcrumb {
.breadcrumb-item {
font-size: 14px;
}
}
.page-actions {
.btn-crater {
margin: 0 0 0 14px;
}
}
}
.invoice-input {
padding-left: 40px;
}
.show-customer {
background: #FFFFFF;
padding: 0 10px 0 10px;
min-height: 170px;
border: 1px solid $ls-color-gray--light;
label {
font-size: 14px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}
}
.address-menu {
display: flex;
flex-direction: column;
.title {
font-size: 15px;
white-space: nowrap;
color: $ls-color-gray;
font-weight: 500;
}
.content {
display: flex;
flex-direction: column;
label {
position: relative;
white-space: nowrap;
width: 90%;
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
.customer-content {
display: flex;
justify-content: space-between;
.email {
flex: 8;
}
.action {
cursor: pointer;
flex: 1;
font-size: 14px;
font-weight: 500;
color: $ls-color-primary;
margin: 0 0 0 0;
position: relative;
}
}
.add-customer {
padding: 0 0 0 0;
.add-customer-action {
position: relative;
display: flex;
justify-content: center;
background: #ffffff;
border: 1px solid $ls-color-gray--light;
min-height: 170px;
border-radius: 5px;
padding: 64px 0;
.customer-icon {
display: flex;
justify-content: center;
background: $ls-color-gray--light;
width: 40px;
color: white;
height: 40px;
font-size: 14px;
font-family: Poppins;
padding: 11px 14px 11px 13px;
border-radius: 50%;
margin: 0 15px 0 0;
}
label {
font-size: 17.5px;
margin: 7px 0 0 0;
}
}
}
.customer-required {
border: 1px solid $ls-color-red;
border-radius: 5px;
}
.offset-md-1 {
margin-left: 5%;
}
.invoice-input-group {
margin-bottom: 41px;
margin-right: 0;
.invoice-input {
padding-right: 0;
label {
font-family: Poppins;
font-style: normal;
font-weight: 500;
font-size: 14px;
color: $ls-color-black--light;
margin: 0 0 10px 0;
}
}
}
.item-table {
width: 100%;
text-align: center;
.item-table-header {
border: 1px solid $ls-color-gray--light;
background: white;
th {
padding: 10px 20px;
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 21px;
color: #55547A;
border-top: 1px solid $ls-color-gray--light;
border-bottom: 1px solid $ls-color-gray--light;
}
.item-heading {
padding-left: 50px;
}
.amount-heading {
padding-right: 50px;
}
th:first-child {
padding-left: 0 !important;
border-left: 1px solid $ls-color-gray--light;
}
th:last-child {
padding-right: 0 !important;
border-right: 1px solid $ls-color-gray--light;
}
}
.item-body {
td:first-child {
padding-left: 0 !important;
}
td:last-child {
padding-right: 0 !important;
}
.item-row {
background: #FFFFFF;
border: 1px solid $ls-color-gray--light;
box-sizing: border-box;
border-radius: 0px 0px 5px 5px;
td {
padding: 15px 20px;
text-align: left;
vertical-align: top;
}
> td {
padding: 0;
}
.item-select {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 20px;
color: $ls-color-gray--dark;
overflow: auto !important;
max-height: 250px !important;
}
.search-select .selector-menu {
top: 45px !important;
}
.main {
padding: 0 !important;
}
.item-amount {
display: flex;
align-items: center;
justify-content: flex-end;
}
.item-select-wrapper {
display: flex;
justify-content: flex-start;
}
.item-selector {
flex: 1;
}
.selected-item {
display: flex;
align-items: center;
height: 40px;
padding-left: 10px;
border: 1px solid $ls-color-gray--light;
background: $ls-color-gray--very-light;
border-radius: 5px;
position: relative;
}
.deselect-icon {
color: $ls-color-gray;
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
}
.sort-icon-wrapper,
.remove-icon-wrapper {
display: flex;
justify-content: center;
align-items: center;
margin: 0 15px;
height: 40px;
width: 20px;
cursor: pointer;
}
.sort-icon-wrapper {
color: $ls-color-gray;
height: 20px;
margin-top: 8px;
cursor: move;
}
.remove-icon {
color: $ls-color-secondary;
}
}
}
}
.tax-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
.tax-amount {
flex: 3;
}
.tax-select {
flex: 4;
}
}
.tax-tr td {
padding: 0 21px;
}
.multi-select-item {
.multiselect,
.multiselect__input,
.multiselect__single {
border: none;
display: flex;
align-items: center;
}
.multiselect:focus {
outline: none;
}
.multiselect__input,
.multiselect__single {
min-height: 40px;
padding-left: 10px;
border: 1px solid rgb(234, 241, 251);
}
.multiselect__tags {
// margin-bottom: 8px;
min-height: 30px;
padding: 0;
border: 0px ;
}
.multiselect__select {
line-height: 16px;
width: 40px;
height: 38px;
transition: transform 0.2s ease;
}
.multiselect__content-wrapper {
overflow: hidden;
border: 1px solid $ls-color-gray--light;
box-shadow: $shadow-md;
border-radius: 0px 0px 5px 5px;
}
.multiselect__content {
max-height: 240px;
overflow: auto;
}
}
.add-item-action {
display: flex;
justify-content: center;
align-items: center;
color: $ls-color-primary--light;
padding: 13px 23px;
width: 100%;
font-size: 15px;
border-bottom: 1px solid $ls-color-gray--light;
cursor: pointer;
&:hover {
background: $ls-color-gray--light;
}
.icon-fa {
margin: 2px 11px 0 0;
}
}
.invoice-foot {
display: flex;
justify-content: space-between;
margin: 35px 0;
.btn-template {
background: $ls-color-gray--light;
border: 1px solid $ls-color-gray--light;
color: $ls-color-black;
font-size: 14px;
}
.icon-button {
color: $ls-color-gray--dark;
}
label {
font-size: 14px;
margin: 0 0 0 0;
}
.invoice-notes {
display: flex;
flex-direction: column;
margin: 5px 0 0 0;
textarea {
border: 1px solid $ls-color-gray--light;
border-radius: 5px;
width: 100%;
min-height: 100px;
padding: 0 0 0 0;
}
}
.invoice-total {
display: flex;
flex-direction: column;
background: #ffffff;
min-width: 390px;
padding: 15px 20px;
border: 1px solid $ls-color-gray--light;
border-radius: 5px;
&> label {
text-transform: uppercase;
}
.section {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 7px 0;
.invoice-label {
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
line-height: 21px;
color:$ls-color-gray--dark;
}
.invoice-amount {
font-size: 18px;
color: #55547A;
}
.total {
color: $ls-color-primary--light;
}
.discount-drop-down {
width: 105px;
}
.item-dropdown {
font-family: Arial, Helvetica, sans-serif !important;
font-size: 16px;
}
}
.border-top {
margin: 0;
padding-top: 7px;
border-top: 1px solid $ls-color-gray--light;
}
.tax-selector {
font-weight: 600;
font-size: 14px;
margin-top: 12px;
line-height: 21px;
color: $ls-color-primary--light;
}
}
}
.item-row {
.item-name {
font-weight: 500;
text-align: left;
font-size: 14px;
}
.item-description {
width: 100%;
font-weight: 300;
font-size: 12px;
padding-top: 2px;
padding-left: 10px;
textarea {
&::placeholder {
font-family: Poppins;
font-style: normal;
font-size: 12px;
color: $ls-color-gray;
}
border: none;
resize: none;
width: 100%;
color: $ls-color-gray--very-dark;
}
}
.action {
font-weight: 500;
font-size: 14px;
color: $ls-color-primary;
cursor: pointer;
}
.activator {
label {
color: $ls-color-gray--dark;
font-size: 14px;
}
}
}
.item-dropdown {
display: flex;
border: 1px solid $ls-color-gray--light !important;
background-color: #fff !important;
border-radius: 0px 5px 5px 0px !important;
justify-content: center;
align-items: center;
height: 40px;
&:focus {
box-shadow: none !important;
}
}
.item-discount {
border-radius: 5px 0px 0px 5px !important;
height: 40px;
// border-right: 0px !important;
}
@media (max-width: $x-small-breakpoint) {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
.invoice-input-group {
.invoice-input {
padding-right: 15px;
padding-left: 20px;
margin-top: 1.5rem;
}
}
.invoice-foot {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.btn-template {
width: 100%;
display: flex;
justify-content: center;
}
.invoice-total {
margin-top: 25px;
}
}
}
}

View File

@ -0,0 +1,93 @@
// Invoices - Index
// -------------------------
.invoice-index-page {
.table-actions {
position: relative;
border: none;
.table-actions-button {
position: absolute;
right: 0px;
top: -15px;
}
.table-stats {
margin: 0;
position: absolute;
right: 0px;
top: 40px;
}
}
.filter-container {
display: flex;
justify-content: space-between;
}
.filter-customer, .filter-status {
margin-right: 40px;
flex: 1;
}
.filter-date {
flex: 1;
display: flex;
margin-right: 40px;
align-items: center;
.from {
flex: 1;
}
.to {
flex: 1;
}
}
.filter-invoice {
flex: 1;
}
.dashed {
border: 1px solid #B9C1D1;
width: 10px;
margin-top: 28px;
}
@media(max-width: $medium-breakpoint ) {
.filter-container {
flex-direction: column;
}
.filter-invoice {
margin-right: 40px;
}
.filter-customer,
.filter-status,
.filter-date,
.filter-invoice {
margin-bottom: 10px;
margin-right: 0px;
}
}
@media(max-width: $x-small-breakpoint) {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
}
}

View File

@ -0,0 +1,227 @@
// Invoices - View
// -------------------------
.invoice-view-page {
padding-left: 570px !important;
.invoice-sidebar {
width: 300px;
height: 100vh;
height: 100%;
left: 240px;
padding: 60px 0 10px;
position: fixed;
top: 0;
width: 300px;
z-index: 30;
background: #FFFFFF;
}
.inv-search {
background: $ls-color-gray--very-light !important;
}
.side-invoice {
padding: 12px 16px;
display: flex;
justify-content: space-between;
border-bottom: 1px solid rgba(185, 193, 209, 0.41);
cursor: pointer;
&:last-child {
margin-bottom: 98px;
}
&:hover {
background-color: $ls-color-gray--very-light;
}
.left {
.inv-name {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 21px;
text-transform: capitalize;
color: $ls-color-black;
margin-bottom: 6px;
}
.inv-number {
font-style: normal;
font-weight: 500;
font-size: 12px;
line-height: 18px;
color: $ls-color-gray--dark;
margin-bottom: 6px;
}
.inv-status {
font-style: normal;
font-weight: normal;
font-size: 10px;
line-height: 15px;
padding: 2px 10px;
display: inline-block;
}
}
.right {
.inv-amount {
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 30px;
text-align: right;
color: $ls-color-black--light;
}
.inv-date {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 21px;
text-align: right;
color: $ls-color-gray--dark;
}
}
}
.no-result {
color: $ls-color-gray;
display: flex;
justify-content: center;
margin-top: 20px;
}
.side-header {
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 15px;
border-bottom: 1px solid rgba(185, 193, 209, 0.41);
.inv-button {
background: $ls-color-gray--very-light;
border: 1px solid $ls-color-gray--light;
box-sizing: border-box;
color: $ls-color-gray;
}
}
.side-content {
overflow-y: scroll;
height: 100%;
}
.invoice-view-page-container {
display: flex;
flex-direction: column;
height: 75vh;
min-height: 0;
overflow:hidden;
}
.frame-style {
flex: 1 1 auto;
border: 1px solid $ls-color-gray;
border-radius: 7px;
}
.inv-filter-fields-btn, .inv-filter-sorting-btn {
&:focus {
border-color: inherit;
box-shadow: none;
outline: none !important;
}
}
.filter-container {
margin-left: 12px;
.filter-items {
// margin-top: 10px;
display: flex;
&:first-child {
margin-top: auto;
}
}
.inv-label {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 18px;
text-transform: capitalize;
color: $ls-color-black;
margin-bottom: 6px;
margin-left: 10px;
}
.base-input {
width: 20%;
}
.dropdown-container {
padding: 11px;
left: auto;
right: 0px;
width: 155px;
}
}
.filter-invoice-date {
.vdp-datepicker {
div {
.vdp-datepicker__clear-button {
margin-left: -21px;
margin-top: 2px;
font-size: 20px;
font-weight: 800;
}
}
}
}
.date-group {
display: flex
}
.to-text {
padding: 8px;
}
}
@media (max-width: $small-breakpoint) {
.invoice-view-page {
padding-left: 310px !important;
}
.invoice-sidebar {
transition: .2s all;
left: 0px !important;
}
}

63
resources/assets/sass/pages/items.scss vendored Normal file
View File

@ -0,0 +1,63 @@
// Items
// -------------------------
.items {
.table-loader {
padding: 25px 0px;
display: flex;
justify-content: center;
align-items: center;
}
}
@media(max-width: $x-small-breakpoint ) {
.items {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
.page-header {
margin-bottom: 5px;
}
.table-actions {
margin-top: 0px !important;
}
}
}
.item-create {
.collapse-button {
width: auto;
}
}
@media(max-width: $x-small-breakpoint ) {
.item-create {
.collapse-button {
width: 100%;
display: flex;
justify-content: center;
}
}
}

192
resources/assets/sass/pages/login-3.scss vendored Normal file
View File

@ -0,0 +1,192 @@
// Login - Style 3
// -------------------------
.login-page.login-3 {
.site-wrapper {
display: flex;
}
.login-box {
color: #333;
flex: 2;
padding: 150px 60px 180px;
display: flex;
justify-content: center;
align-items: center;
max-width: 500px;
min-width: 450px;
.box-wrapper {
width: 100%;
}
}
.content-box {
background-image: url('/images/login-vector1.svg');
background-size: cover;
background-repeat: no-repeat;
height: 100%;
width: 100%;
position: relative;
flex: 5;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
h1 {
color: #fff;
font-size: 50px;
}
p {
color: $ls-color-gray--very-light;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px
}
}
.content-bottom {
background-image: url('/images/login-vector3.svg');
background-size: 100% 100%;
background-repeat: no-repeat;
z-index: 100;
position: absolute;
width: 100%;
height: 100px;
bottom: 0;
right: 32%;
}
.content-box::before {
background-image: url('/images/frame.svg');
content: "";
background-size: 100% 100%;
background-repeat: no-repeat;
height: 300px;
right: 0;
position: absolute;
top: 0;
width: 420px;
z-index: 1;
}
.content-box::after {
background-image: url('/images/login-vector2.svg');
content: "";
background-size: cover;
background-repeat: no-repeat;
height: 100%;
width: 100%;
right: 7.5%;
position: absolute;
}
.c-input {
color: #555;
}
.login-box a {
color: #817AE3;
&:hover {
color : lighten(#333, 10%);
}
}
.other-options h6 {
color: #555;
}
.page-copyright {
margin-top: 0;
padding-top: 150px;
color: $ls-color-gray--dark;
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 17px;
text-align: left;
}
.page-copyright a {
color: $ls-color-primary;
&:hover {
color : darken($ls-color-primary, 10%);
}
}
.logo-main img{
width: 200px;
}
@media (max-width: $large-breakpoint) {
.content-box h1 {
display: none;
}
.content-box p {
display: none;
}
.content-box::before {
height: 250px;
width: 350px;
}
.content-box::after {
right: 13%;
}
}
@media (max-width: $medium-breakpoint) {
.content-box h1 {
font-size: 15px;
margin-left: 50px;
}
.content-box p {
display: none;
}
.content-bottom {
width: 600px;
height: 0px;
}
.content-box::before {
height: 150px;
width: 250px;
}
}
@media(max-width: $small-breakpoint) {
.page-copyright {
padding-top: 110px
}
.login-box {
width: 100%;
max-width: none;
min-width: 0;
padding: 30px;
}
.content-box {
display: none;
}
}
}

166
resources/assets/sass/pages/login.scss vendored Normal file
View File

@ -0,0 +1,166 @@
// Login - Base
// -------------------------
.login-page {
height: 100%;
background-color: $ls-color-gray--very-light;
.login-wrapper {
height: 100%;
padding-top: 0;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.login-box {
color: $white;
padding: 20px;
width: 100%;
max-width: 400px;
.form-control {
// margin-top: 20px;
}
.input-label {
padding-bottom: 5px;
margin: 0;
font-weight: 500;
font-size: 14px;
line-height: 21px;
color: #55547A
}
.other-actions {
margin-bottom: 10px;
margin-top: 20px;
}
.page-copyright {
font-size: 14px;
margin-top: 50px;
text-align: center;
p {
margin-bottom: 10px;
}
}
a {
color: $ls-color-primary;
&:hover {
color: darken($ls-color-primary, 5%);
}
}
.btn-login {
background-color: $ls-color-primary;
color: white;
&:hover {
background-color: darken($ls-color-primary, 5%);
}
}
}
.login-box .c-input {
color: #fff;
.c-indicator {
top: 2px;
}
}
.login-wrapper .c-input {
> input {
&:checked ~ .c-indicator {
background-color: #333;
@include box-shadow(none);
}
&:focus ~ .c-indicator {
// the mixin is not used here to make sure there is feedback
box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem darken(#333, 5%);
}
&:active ~ .c-indicator {
background-color: darken(#333, 5%);
@include box-shadow(none);
}
}
}
.logo-main {
margin-bottom: 127px;
text-align: left;
img {
height: auto;
width: 300px;
}
}
.other-options {
border-top: 1px solid #fff;
padding: 1rem 0;
padding-top: 2rem;
h6 {
color: #c7cbd1;
font-size: 15px;
margin-top: 12px;
}
a,
a:hover {
color: $white;
}
}
.actions {
margin-top: 30px;
.btn-theme {
margin-right: 20px;
margin-top: 20px;
}
}
@media (max-width: $small-breakpoint) {
.other-actions {
font-size: 14px;
}
.logo-main {
img {
height: auto;
max-width: 100%;
}
}
}
.social-links {
margin-top: 40px;
.link-text {
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 17px;
color: $ls-color-gray
}
.social-logo {
display: flex;
align-items: center;
padding-top: 25px;
.icon {
display: block;
margin-right: 30px;
cursor: pointer;
}
}
}
}

View File

@ -0,0 +1,80 @@
// Payments
// -------------------------
@media(max-width: $x-small-breakpoint ) {
.payments {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
.page-header {
margin-bottom: 5px;
}
.table-actions {
margin-top: 0px !important;
}
}
}
.payment-create {
.header-button-container {
display: block;
}
.collapse-button-container {
display: none;
.collapse-button {
width: 100%;
display: flex;
justify-content: center;
}
}
}
@media(max-width: $x-small-breakpoint ) {
.payment-create, .payment-index {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
.header-button-container {
display: none;
}
.collapse-button-container {
display: block;
}
}
}

View File

@ -0,0 +1,96 @@
// Reports
// -------------------------
.reports {
.reports-tab-container {
margin-top: 25px;
}
.reports-frame-style {
height: 100vh;
width: 100%;
border: 1px solid $ls-color-gray;
border-radius: 7px;
}
.report-button {
width: auto;
}
.report-view-button {
display: none;
}
.report-fields-container {
margin-top: 25px;
}
.report-field-container {
margin-top: auto;
}
.report-submit-button-container {
margin-top: 32px;
}
.report-label {
font-size: 14px;
line-height: 21px;
color: $ls-color-secondary;
}
.report-label {
font-weight: 500;
color: #55547A;
font-size: 14px;
}
}
@media(max-width: $x-small-breakpoint ) {
.reports {
.reports-tab {
padding: 10px 19px;
}
.reports-frame-style {
display: none;
}
.report-view-button {
display: flex;
justify-content: center
}
.report-button {
width: 100%;
display: flex;
justify-content: center;
}
.report-fields-container {
margin-top: 0px;
}
.report-field-container {
margin-top: 20px;
}
.tabs {
.tab {
padding: 10px 15px;
.tab-link {
padding: 10px 17px !important;
}
}
}
}
}

View File

@ -0,0 +1,219 @@
// Settings
// -------------------------
.settings-container {
margin-top: 40px;
.settings-sidebar {
list-style-type: none;
padding: 0px;
.settings-menu-item {
padding: 10px 0px;
font-weight: 500;
font-size: 14px;
line-height: 18px;
color: $ls-color-black;
.setting-icon {
width: 25px;
color: $ls-color-gray;
font-size: 16px;
}
}
.link-color {
color: $ls-color-gray--dark;
display: flex;
align-items: center;
}
.active-setting {
color: $ls-color-primary !important;
cursor: pointer;
.setting-icon {
color: $ls-color-primary !important;
}
}
}
.setting-main-container {
.setting-card {
padding: 30px;
min-height: 620px;
}
.page-header {
margin: 0px;
.page-title {
margin: 0;
padding-bottom: 10px;
font-weight: 500;
font-size: 17.5px;
line-height: 21px;
letter-spacing: 0.1px;
color: #000000;
}
.page-sub-title {
max-width: 480px;
font-size: 14px;
line-height: 21px;
color: $ls-color-gray--dark;
margin-bottom: 30px;
}
}
.input-label {
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 21px;
color: #55547A;
}
}
.expense-category {
td {
background-color: $ls-color-gray--very-light !important;
}
}
.tax-table {
td {
background-color: $ls-color-gray--very-light !important;
}
.tax-name {
}
.compound-tax {
display: inline;
padding: 2px 8px;
font-size: 10px;
line-height: 15px;
background: $red--very-light;
color: $red--dark;
}
}
.add-new-tax {
height: 45px;
white-space: nowrap;
}
.flex-box {
display: flex;
}
.left {
position: relative;
width: 50px;
}
.btn-switch {
position: absolute;
top: -18px;
}
.box-title {
margin-bottom: 5px;
padding: 0;
font-size: 16px;
line-height: 21px;
color: #55547A;
}
.box-desc {
margin: 0;
padding: 0;
max-width: 480px;
font-size: 12px;
line-height: 18px;
color: $ls-color-gray--dark;
}
.notes {
overflow: hidden;
width: 200px;
.note {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
}
@media(max-width: $x-small-breakpoint ) {
.settings-container {
.setting-main-container {
.setting-card {
overflow: scroll;
}
& .ml-15 {
margin-left: 15px;
}
.page-header {
flex-wrap: wrap;
}
}
.table-component {
td:first-child {
height: auto;
min-height: 10px;
text-align: center;
justify-content: center;
}
}
.tax-table {
.tax-name {
margin-top: 21px;
width: 76%;
}
}
.expense-category {
.table-component__table__body {
tr:first-child {
td:nth-child(2) {
height: auto;
width: 101%;
}
}
}
}
.add-new-tax {
position: relative;
z-index: 1;
}
}
}

View File

@ -0,0 +1,116 @@
// Invoice statuses
.inv-status-due {
background: #FED7D7;
font-size: 13px;
color: #9B2C2C;
padding: 5px 10px;
}
.inv-status-paid {
background: #D5EED0;
font-size: 13px;
color: #354930;
padding: 5px 10px;
}
.inv-status-unpaid {
background: rgba(246, 208, 154, 0.4);
font-size: 13px;
color: #A96E1A;
padding: 5px 10px;
}
.inv-status-sent {
background: rgba(246, 208, 154, 0.4);
font-size: 13px;
color: #A96E1A;
padding: 5px 10px;
}
.inv-status-viewed {
background: #C9E3EC;
font-size: 13px;
color: #1E576C;
padding: 5px 10px;
}
.inv-status-completed {
background: #D5EED0;
font-size: 13px;
color: #354930;
padding: 5px 10px;
}
.inv-status-pending {
background: #FED7D7;
font-size: 13px;
color: #9B2C2C;
padding: 5px 10px;
}
.inv-status-partially_paid {
background: #E1E0EA;
font-size: 13px;
color: #312F57;
padding: 5px 10px;
}
.inv-status-draft {
background: #F8EDCB;
font-size: 13px;
color: #6C432E;
padding: 5px 10px;
}
// Estimate Statuses
.est-status-expired {
background: #FED7D7;
font-size: 13px;
color: #9B2C2C;
padding: 5px 10px;
}
.est-status-accepted {
background: #D5EED0;
font-size: 13px;
color: #354930;
padding: 5px 10px;
}
.est-status-sent {
background: rgba(246, 208, 154, 0.4);
font-size: 13px;
color: #A96E1A;
padding: 5px 10px;
}
.est-status-viewed {
background: #C9E3EC;
font-size: 13px;
color: #1E576C;
padding: 5px 10px;
}
.est-status-pending {
background: #FED7D7;
font-size: 13px;
color: #9B2C2C;
padding: 5px 10px;
}
.est-status-rejected {
background: #E1E0EA;
font-size: 13px;
color: #312F57;
padding: 5px 10px;
}
.est-status-draft {
background: #F8EDCB;
font-size: 13px;
color: #6C432E;
padding: 5px 10px;
}

159
resources/assets/sass/pages/wizard.scss vendored Normal file
View File

@ -0,0 +1,159 @@
// Wizard
// -------------------------
.wizard {
.wizard-card {
padding: 30px;
width: 100%;
}
.row {
margin-bottom: 27px;
}
.form-content {
margin-top: 70px;
display: flex;
justify-content: center;
}
.form-title {
font-style: normal;
font-weight: 600;
font-size: 24.5px;
line-height: 29px;
color: #000000;
}
.form-desc {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 21px;
color: $ls-color-gray--dark;
width: 55%;
margin-bottom: 30px;
}
.form-label {
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 21px;
}
.step-indicator {
padding-top: 40px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
height: 120px;
}
.indicator-line {
border: 5px solid $ls-color-gray--light;
border-radius: 5px;
box-sizing: border-box;
width: 520px;
position: relative;
display: flex;
justify-content: space-around;
margin-top: 60px;
.center {
position: absolute;
top: -11px;
width: 105%;
display: flex;
justify-content: space-between;
}
.steps {
border-radius: 50%;
float: left;
border: 5px solid $ls-color-gray--light;
padding: 0px 5px;
height: 21px;
width: 21px;
background: $ls-color-gray--light;
&.active {
border: 5px solid #5851d8;
background: #ffffff;
border-radius: 50%;
height: 21px;
width: 21px;
}
&.completed {
padding: 0px;
background: #5851d8;
border: 5px solid #5851d8;
border-radius: 50%;
height: 21px;
width: 21px;
.icon-check {
font-style: normal;
font-weight: 900;
font-size: 12px;
/* line-height: 21px; */
color: #ffffff;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
}
}
}
.upload-logo {
position: absolute;
right: 60px;
.preview-logo {
height: 50px;
max-width: 300px;
padding: 10px;
border: 4px solid $ls-color-gray--light;
}
}
.list-items {
display: flex;
justify-content: space-between;
margin-bottom: 0;
border: 1px solid $gray--light;
.left-item,
.right-item {
padding: 12px 10px;
margin-bottom: 0;
}
.right-item {
display: flex;
justify-content: center;
align-items: center;
}
}
.verified,
.not-verified {
height: 15px;
width: 15px;
background-color: $brand-success;
display: inline-block;
margin: 0 10px;
border-radius: 50%;
}
.not-verified {
background-color: $brand-danger;
}
}