first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,102 @@
.my-addresses {
padding: 40px 30px;
.address-card-wrap {
.btn-add-new-address {
margin-top: 0;
}
.address-card {
position: relative;
flex-grow: 1;
margin-bottom: 30px;
padding: 15px 20px 12px;
border: 1px solid $color-gray-lite;
border-radius: $radius-default;
cursor: pointer;
&.active {
border-color: $color-default-transparent;
border-color: var(--color-primary-transparent);
}
.address-card-data {
margin-bottom: 6px;
> span {
font-weight: 500;
display: block;
&:not(:first-child) {
font-size: 14px;
font-weight: 400;
line-height: 22px;
color: $color-gray;
}
&:nth-child(2) {
margin-top: 5px;
}
}
}
.address-card-actions {
display: flex;
margin-left: -8px;
.btn {
padding: 0 8px;
}
.btn-edit-address {
&:hover {
color: $color-default;
color: var(--color-primary);
}
}
.btn-delete-address {
&:hover {
color: $color-red;
}
}
}
}
}
.add-new-address-form {
margin-top: -7px;
.section-title {
margin-bottom: 25px;
padding-bottom: 13px;
border-bottom: 1px solid #e5e5e5;
}
.btn-cancel {
margin-right: 12px;
}
}
}
@media screen and (max-width: 500px) {
.my-addresses {
.address-card-wrap {
.btn-add-new-address {
width: 100%;
}
}
.add-new-address-form {
.btn-cancel {
width: 100%;
margin-right: 0;
}
.btn-save-address {
width: 100%;
margin-top: 15px;
}
}
}
}

View File

@@ -0,0 +1,5 @@
.my-downloads-table {
.btn-download {
@extend %account-common-buttons;
}
}

View File

@@ -0,0 +1,56 @@
.my-orders-table {
margin-bottom: 5px;
thead {
th {
white-space: nowrap;
}
}
tbody {
td {
white-space: nowrap;
&:first-child {
font-weight: 500;
}
&:nth-child(4) {
font-weight: 500;
}
}
}
.product-price {
color: $color-black;
}
.badge {
margin-top: -6px;
}
.btn-view {
@extend %account-common-buttons;
}
}
.user-info {
padding: 23px 30px;
li {
display: flex;
line-height: 24px;
padding: 11px 0;
color: $color-gray;
> i {
font-size: 24px;
margin-right: 8px;
vertical-align: top;
}
> span {
word-break: break-all;
}
}
}

View File

@@ -0,0 +1,11 @@
.my-profile {
padding: 35px 30px 40px;
}
@media screen and (max-width: 500px) {
.my-profile {
.btn-save-changes {
width: 100%;
}
}
}

View File

@@ -0,0 +1,49 @@
.my-reviews-table {
margin-bottom: 10px;
tbody {
td {
&:not(:first-child) {
vertical-align: middle;
}
&:nth-child(4) {
white-space: nowrap;
}
}
}
.product-image {
height: 60px;
width: 60px;
border-radius: $radius-default;
overflow: hidden;
.image-placeholder {
height: 40px;
width: 40px;
}
}
.product-name {
display: inline-block;
min-width: 220px;
color: $color-black;
&:hover {
color: $color-default;
color: var(--color-primary);
}
}
.product-rating {
> i {
font-size: 18px;
margin-right: 4px;
&:last-child {
margin-right: 0;
}
}
}
}

View File

@@ -0,0 +1,52 @@
.my-wishlist-table {
margin-bottom: 10px;
tbody {
td {
&:not(:first-child) {
vertical-align: middle;
}
&:nth-child(5) {
min-width: 160px;
}
}
}
.product-image {
height: 60px;
width: 60px;
border-radius: $radius-default;
overflow: hidden;
.image-placeholder {
height: 40px;
width: 40px;
}
}
.product-name {
display: inline-block;
min-width: 220px;
color: $color-black;
&:hover {
color: $color-default;
color: var(--color-primary);
}
}
.product-price {
margin-top: 2px;
}
.badge {
margin-top: 1px;
}
.btn-delete {
margin-top: 0 !important;
@extend %account-common-buttons;
}
}