Blame view

public/css/pages/personal-account/orders.css 5.76 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
  .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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-bottom: 50px;
  }
  .orders-acc__content {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #333B49;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 38px;
  }
  .orders-acc__content > span {
    font-weight: 400;
    color: #333B49;
    margin-right: 10px;
    color: #ABB2BF;
  }
  .orders-acc__content.number {
    margin-left: 20px;
  }
  .orders-acc__btn {
    background: #F5851A;
    border-radius: 9.375px;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    border: 1px solid #F5851A;
    cursor: pointer;
    padding: 12px 31px 12px 10px;
    margin-right: 20px;
    position: relative;
    font-weight: 600px;
    font-size: 16px;
  }
  .orders-acc__btn: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;
  }
  .orders-acc__btn--active {
    border: 1px solid #F2994A;
    background-color: #FFFFFF;
    color: #F2994A;
    border-radius: 9.375px;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
    padding: 12px 56px 12px 56px;
    position: relative;
    font-weight: 600px;
    font-size: 16px;
  }
  .orders-acc__btn--active: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");
  }
  .orders-acc > :nth-last-child(n+3) {
    margin-right: 76px;
  }
  
  .orders-panel {
    display: none;
    margin-top: 40px;
    max-width: 100%;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease-out;
    -o-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
    margin-left: 20px;
  }
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
  .orders-panel-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .orders-panel-cont__btn {
    background: #F5851A;
    border-radius: 9.375px;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    border: 1px solid #F5851A;
    cursor: pointer;
    font-size: 16px;
    padding: 12px 26px;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .orders-panel-cont__btn:hover {
    border: 1px solid #F2994A;
    background-color: #FFFFFF;
    color: #F2994A;
    border-radius: 9.375px;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
    font-size: 16px;
  }
b80175387   Андрей Ларионов   Начальный проект ...
144
145
146
147
148
  .orders-panel-data {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 22px;
    color: #333B49;
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
149
150
    -ms-flex-item-align: start;
        align-self: start;
b80175387   Андрей Ларионов   Начальный проект ...
151
152
153
154
155
156
157
158
159
160
  }
  .orders-panel-data > :not(:last-child) {
    margin-bottom: 10px;
  }
  .orders-panel-data__title {
    font-weight: 600;
  }
  .orders-panel-data__content {
    font-weight: 400;
  }
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
161
162
163
164
  .orders-panel-comp {
    -ms-flex-item-align: start;
        align-self: start;
  }
b80175387   Андрей Ларионов   Начальный проект ...
165
166
167
168
169
170
171
172
173
174
175
  .orders-panel-title {
    border: none;
  }
  
  .orders-panel-svg-act {
    display: inline-block;
  }
  
  .orders-panel-svg {
    font-weight: 600 !important;
    display: none;
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
  }
  
  .orders-table {
    border-collapse: separate;
    border-spacing: 0 20px;
    min-width: 964px;
  }
  .orders-table__item {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #333B49;
    text-align: left;
  }
  .orders-table__price {
    min-width: 118px;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #F5851A;
  }
  .orders-table__count {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #F5851A;
    text-align: center;
  }
  
  .orders-table-titles {
    height: 38px;
  }
  
  .orders-table-content {
    border-bottom: 1px solid #F7F7F9;
    outline: 1px solid #F7F7F9;
    outline-offset: -2px;
  }
  
  .swiper-ord-table {
    margin-top: 0;
    margin: 0 !important;
    border-radius: 4px;
    width: 395px !important;
    height: 184px;
  }
  
  .slide-ord-table__img {
    max-width: 138px;
    width: 100%;
    height: 115px;
    padding: 0;
    margin: 0 auto;
    margin-top: 24px;
  }
  
  .orders-table-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .orders-table-item__info {
    max-width: 234px;
    width: 100%;
    margin-left: 20px;
  }
  .orders-table-item__title {
    margin-top: 10px;
    color: #333B49;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
  }
  .orders-table-item__vendor {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #333B49;
    margin-top: 20px;
  }
  .orders-table-item__vendor span {
    padding-right: 4px;
b80175387   Андрей Ларионов   Начальный проект ...
258
  }