Blame view
public/scss/pages/personal-account/orders.scss
3.23 KB
b80175387 Начальный проект ... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
@import "../../vars"; @import "../../mixins"; // таб мои заказы .orders-acc-wrapper { max-width: 985px; width: 100%; margin-right: 0; margin-bottom: 0; } .orders-acc { width: 100%; min-height: 98px; border: 1px solid #ABB2BF; border-radius: 10px; display: flex; flex-wrap: wrap; align-items: baseline; margin-bottom: 50px; &__content { font-weight: 600; font-size: 16px; line-height: 22px; color: $vmainGrey; display: flex; margin-top: 38px; > span { font-weight: 400; color: $vmainGrey; margin-right: 10px; color: #ABB2BF; } &.number { margin-left: 20px; } } &__btn { @include btn-orange; padding: 12px 31px 12px 10px; margin-right: 20px; position: relative; font-weight: 600px; font-size: 16px; &:after { position: absolute; content: ""; background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.244078 5.24408C-0.0813593 5.56951 -0.0813593 6.09715 0.244078 6.42259L7.5 13.6785L14.7559 6.42259C15.0814 6.09715 15.0814 5.56952 14.7559 5.24408C14.4305 4.91864 13.9028 4.91864 13.5774 5.24408L7.5 11.3215L1.42259 5.24408C1.09715 4.91864 0.569515 4.91864 0.244078 5.24408Z' fill='white'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: cover; width: 10px; height: 9.68px; right: 16px; top: 15px; z-index: 3; } &--active { @include btn-orange-hover; padding: 12px 56px 12px 56px; position: relative; font-weight: 600px; font-size: 16px; &:after { background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.244078 12.7559C-0.0813589 12.4305 -0.0813589 11.9028 0.244078 11.5774L7.5 4.32149L14.7559 11.5774C15.0814 11.9028 15.0814 12.4305 14.7559 12.7559C14.4305 13.0814 13.9028 13.0814 13.5774 12.7559L7.5 6.67851L1.42259 12.7559C1.09715 13.0814 0.569515 13.0814 0.244078 12.7559Z' fill='%23F2994A'/%3E%3C/svg%3E"); } } } > :nth-last-child(n+3) { margin-right: 76px; } } .orders-panel { display: none; margin-top: 40px; max-width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out; margin-left: 20px; } .orders-panel-data { margin-bottom: 40px; font-size: 16px; line-height: 22px; color: $vmainGrey; > :not(:last-child) { margin-bottom: 10px; } &__title { font-weight: 600; } &__content { font-weight: 400; } } .orders-panel-title { border: none; } .orders-panel-svg-act { display: inline-block; } // данные компании отсутствуют .orders-panel-svg { font-weight: 600 !important; display: none; } .test { } |