node-paytmpg 5.3.0 → 5.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/codeql-analysis.yml +71 -71
- package/.github/workflows/nodejs.yml +24 -24
- package/.github/workflows/npm-publish.yml +23 -23
- package/Dockerfile +8 -8
- package/LICENSE +674 -674
- package/README.MD +245 -245
- package/app/controllers/adapters/open_money.js +515 -514
- package/app/controllers/checksum/checksum.js +154 -154
- package/app/controllers/checksum/crypt.js +98 -98
- package/app/controllers/checksum/server.js +132 -132
- package/app/controllers/np_user.controller.js +79 -79
- package/app/controllers/payment_controller.js +1067 -1067
- package/app/models/np_multidbplugin.js +101 -101
- package/app/models/np_transaction.model.js +16 -16
- package/app/models/np_user.model.js +11 -11
- package/app/routes/payment_route.js +73 -73
- package/app/views/home.hbs +21 -21
- package/app/views/init.hbs +92 -92
- package/app/views/layouts/index.hbs +57 -57
- package/app/views/result.hbs +49 -49
- package/app.yaml +18 -18
- package/example.js +51 -51
- package/index.js +23 -23
- package/package.json +42 -41
- package/public/css/style.css +268 -268
- package/public/js/index.js +282 -282
- package/public/layer_checkout.js +38 -38
- package/public/test.html +24 -24
package/public/css/style.css
CHANGED
|
@@ -1,269 +1,269 @@
|
|
|
1
|
-
.visuallyhidden {
|
|
2
|
-
border: 0;
|
|
3
|
-
clip: rect(0 0 0 0);
|
|
4
|
-
height: 1px;
|
|
5
|
-
margin: -1px;
|
|
6
|
-
overflow: hidden;
|
|
7
|
-
padding: 0;
|
|
8
|
-
position: absolute;
|
|
9
|
-
width: 1px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
body {
|
|
13
|
-
font-family: 'Open Sans', sans-serif;
|
|
14
|
-
background-color: #f0f0f0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
h1, h2, h3, h4, h5 {
|
|
18
|
-
margin: 0;
|
|
19
|
-
font-weight: 600;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.button {
|
|
23
|
-
align-self: center;
|
|
24
|
-
color: #ffffff;
|
|
25
|
-
width: 100%;
|
|
26
|
-
max-height: 100px;
|
|
27
|
-
height: 7vh;
|
|
28
|
-
max-width: 80vh;
|
|
29
|
-
background-color: #24cf5f;
|
|
30
|
-
padding: 12px 25px;
|
|
31
|
-
font-size: 12px;
|
|
32
|
-
letter-spacing: 1px;
|
|
33
|
-
text-transform: uppercase;
|
|
34
|
-
border: 0;
|
|
35
|
-
border-radius: 7px;
|
|
36
|
-
outline: 0;
|
|
37
|
-
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
|
|
38
|
-
-webkit-transition: all .2s;
|
|
39
|
-
transition: all .2s;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.button:hover, .button:active, .button:focus {
|
|
43
|
-
-webkit-transform: scale(1.1);
|
|
44
|
-
transform: scale(1.1);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.button--transparent {
|
|
48
|
-
background: transparent;
|
|
49
|
-
border: 0;
|
|
50
|
-
outline: 0;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.button--close {
|
|
54
|
-
position: absolute;
|
|
55
|
-
top: 10px;
|
|
56
|
-
left: 10px;
|
|
57
|
-
display: -ms-flexbox;
|
|
58
|
-
display: -webkit-box;
|
|
59
|
-
display: flex;
|
|
60
|
-
-ms-flex-align: center;
|
|
61
|
-
-webkit-box-align: center;
|
|
62
|
-
align-items: center;
|
|
63
|
-
-ms-flex-pack: center;
|
|
64
|
-
-webkit-box-pack: center;
|
|
65
|
-
justify-content: center;
|
|
66
|
-
width: 30px;
|
|
67
|
-
height: 30px;
|
|
68
|
-
color: #ffffff;
|
|
69
|
-
border-radius: 50%;
|
|
70
|
-
-webkit-transition: all .25s;
|
|
71
|
-
transition: all .25s;
|
|
72
|
-
z-index: 10;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.button--close svg {
|
|
76
|
-
width: 20px;
|
|
77
|
-
height: 20px;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.button--close svg * {
|
|
81
|
-
fill: currentColor;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.button--close:hover, .button--close:active, .button--close:focus {
|
|
85
|
-
color: #fbcf34;
|
|
86
|
-
background-color: #ffffff;
|
|
87
|
-
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.button--info {
|
|
91
|
-
position: absolute;
|
|
92
|
-
top: 0;
|
|
93
|
-
right: 0;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
input {
|
|
97
|
-
width: calc(100% - 10px);
|
|
98
|
-
max-width: 80vh;
|
|
99
|
-
min-height: 30px;
|
|
100
|
-
padding-left: 5px;
|
|
101
|
-
padding-right: 5px;
|
|
102
|
-
letter-spacing: .5px;
|
|
103
|
-
border: 0;
|
|
104
|
-
border-bottom: 2px solid #f0f0f0;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
input:valid {
|
|
108
|
-
border-color: #24cf5f;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
input:focus {
|
|
112
|
-
outline: none;
|
|
113
|
-
border-color: #fbcf34;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.form-list {
|
|
117
|
-
padding-left: 0;
|
|
118
|
-
list-style: none;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.form-list__row {
|
|
122
|
-
margin-bottom: 25px;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.form-list__row label {
|
|
126
|
-
position: relative;
|
|
127
|
-
display: block;
|
|
128
|
-
text-transform: uppercase;
|
|
129
|
-
font-weight: 600;
|
|
130
|
-
font-size: 11px;
|
|
131
|
-
letter-spacing: .5px;
|
|
132
|
-
color: #939393;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.form-list__row--inline {
|
|
136
|
-
display: -ms-flexbox;
|
|
137
|
-
display: -webkit-box;
|
|
138
|
-
display: flex;
|
|
139
|
-
-ms-flex-pack: justify;
|
|
140
|
-
-webkit-box-pack: justify;
|
|
141
|
-
justify-content: space-between;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.form-list__row--inline> :first-child {
|
|
145
|
-
-ms-flex: 2;
|
|
146
|
-
-webkit-box-flex: 2;
|
|
147
|
-
flex: 2;
|
|
148
|
-
padding-right: 20px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.form-list__row--inline> :nth-child(2n) {
|
|
152
|
-
-ms-flex: 1;
|
|
153
|
-
-webkit-box-flex: 1;
|
|
154
|
-
flex: 1;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.form-list__input-inline {
|
|
158
|
-
display: -ms-flexbox;
|
|
159
|
-
display: -webkit-box;
|
|
160
|
-
display: flex;
|
|
161
|
-
-ms-flex-pack: justify;
|
|
162
|
-
-webkit-box-pack: justify;
|
|
163
|
-
justify-content: space-between;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.form-list__input-inline>* {
|
|
167
|
-
width: calc(50% - 10px - 10px);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.form-list__row--agree {
|
|
171
|
-
margin-top: 30px;
|
|
172
|
-
margin-bottom: 30px;
|
|
173
|
-
font-size: 12px;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.form-list__row--agree label {
|
|
177
|
-
font-weight: 400;
|
|
178
|
-
text-transform: none;
|
|
179
|
-
color: #676767;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.form-list__row--agree input {
|
|
183
|
-
width: auto;
|
|
184
|
-
margin-right: 5px;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
#input--cc {
|
|
188
|
-
position: relative;
|
|
189
|
-
padding-top: 6px;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
#input--cc input {
|
|
193
|
-
padding-left: 46px;
|
|
194
|
-
width: calc(100% - 46px);
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.modal {
|
|
198
|
-
display: -ms-flexbox;
|
|
199
|
-
display: -webkit-box;
|
|
200
|
-
display: flex;
|
|
201
|
-
-ms-flex-pack: center;
|
|
202
|
-
-webkit-box-pack: center;
|
|
203
|
-
justify-content: center;
|
|
204
|
-
-ms-flex-align: center;
|
|
205
|
-
-webkit-box-align: center;
|
|
206
|
-
align-items: center;
|
|
207
|
-
height: 100vh;
|
|
208
|
-
width: 100vw;
|
|
209
|
-
z-index: 100;
|
|
210
|
-
overflow-y: auto;
|
|
211
|
-
background-color: #ffffff;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
.modal__container {
|
|
215
|
-
padding-top: 10vh;
|
|
216
|
-
|
|
217
|
-
display: -ms-flexbox;
|
|
218
|
-
display: -webkit-box;
|
|
219
|
-
display: flex;
|
|
220
|
-
max-width: 675px;
|
|
221
|
-
min-height: 400px;
|
|
222
|
-
margin-bottom: 125px;
|
|
223
|
-
border-radius: 5px;
|
|
224
|
-
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.modal__featured {
|
|
228
|
-
position: relative;
|
|
229
|
-
-ms-flex: 1;
|
|
230
|
-
-webkit-box-flex: 1;
|
|
231
|
-
flex: 1;
|
|
232
|
-
min-width: 130px;
|
|
233
|
-
padding: 20px;
|
|
234
|
-
overflow: hidden;
|
|
235
|
-
border-top-left-radius: 5px;
|
|
236
|
-
border-bottom-left-radius: 5px;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.modal__circle {
|
|
240
|
-
position: absolute;
|
|
241
|
-
top: 0;
|
|
242
|
-
left: 0;
|
|
243
|
-
height: 200%;
|
|
244
|
-
width: 200%;
|
|
245
|
-
background-color: #fbcf34;
|
|
246
|
-
border-radius: 50%;
|
|
247
|
-
-webkit-transform: translateX(-50%) translateY(-25%);
|
|
248
|
-
transform: translateX(-50%) translateY(-25%);
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.modal__product {
|
|
252
|
-
margin-top: 120px;
|
|
253
|
-
position: absolute;
|
|
254
|
-
top: 0;
|
|
255
|
-
left: 50%;
|
|
256
|
-
max-width: 85%;
|
|
257
|
-
-webkit-transform: translateX(calc(-50% - 10px));
|
|
258
|
-
transform: translateX(calc(-50% - 10px));
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.modal__content {
|
|
262
|
-
align-content: center;
|
|
263
|
-
justify-content: center;
|
|
264
|
-
min-width: 80vw;
|
|
265
|
-
-ms-flex: 3;
|
|
266
|
-
-webkit-box-flex: 3;
|
|
267
|
-
flex: 3;
|
|
268
|
-
padding: 40px 40px;
|
|
1
|
+
.visuallyhidden {
|
|
2
|
+
border: 0;
|
|
3
|
+
clip: rect(0 0 0 0);
|
|
4
|
+
height: 1px;
|
|
5
|
+
margin: -1px;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
padding: 0;
|
|
8
|
+
position: absolute;
|
|
9
|
+
width: 1px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
body {
|
|
13
|
+
font-family: 'Open Sans', sans-serif;
|
|
14
|
+
background-color: #f0f0f0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
h1, h2, h3, h4, h5 {
|
|
18
|
+
margin: 0;
|
|
19
|
+
font-weight: 600;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.button {
|
|
23
|
+
align-self: center;
|
|
24
|
+
color: #ffffff;
|
|
25
|
+
width: 100%;
|
|
26
|
+
max-height: 100px;
|
|
27
|
+
height: 7vh;
|
|
28
|
+
max-width: 80vh;
|
|
29
|
+
background-color: #24cf5f;
|
|
30
|
+
padding: 12px 25px;
|
|
31
|
+
font-size: 12px;
|
|
32
|
+
letter-spacing: 1px;
|
|
33
|
+
text-transform: uppercase;
|
|
34
|
+
border: 0;
|
|
35
|
+
border-radius: 7px;
|
|
36
|
+
outline: 0;
|
|
37
|
+
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
|
|
38
|
+
-webkit-transition: all .2s;
|
|
39
|
+
transition: all .2s;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.button:hover, .button:active, .button:focus {
|
|
43
|
+
-webkit-transform: scale(1.1);
|
|
44
|
+
transform: scale(1.1);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.button--transparent {
|
|
48
|
+
background: transparent;
|
|
49
|
+
border: 0;
|
|
50
|
+
outline: 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.button--close {
|
|
54
|
+
position: absolute;
|
|
55
|
+
top: 10px;
|
|
56
|
+
left: 10px;
|
|
57
|
+
display: -ms-flexbox;
|
|
58
|
+
display: -webkit-box;
|
|
59
|
+
display: flex;
|
|
60
|
+
-ms-flex-align: center;
|
|
61
|
+
-webkit-box-align: center;
|
|
62
|
+
align-items: center;
|
|
63
|
+
-ms-flex-pack: center;
|
|
64
|
+
-webkit-box-pack: center;
|
|
65
|
+
justify-content: center;
|
|
66
|
+
width: 30px;
|
|
67
|
+
height: 30px;
|
|
68
|
+
color: #ffffff;
|
|
69
|
+
border-radius: 50%;
|
|
70
|
+
-webkit-transition: all .25s;
|
|
71
|
+
transition: all .25s;
|
|
72
|
+
z-index: 10;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.button--close svg {
|
|
76
|
+
width: 20px;
|
|
77
|
+
height: 20px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.button--close svg * {
|
|
81
|
+
fill: currentColor;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.button--close:hover, .button--close:active, .button--close:focus {
|
|
85
|
+
color: #fbcf34;
|
|
86
|
+
background-color: #ffffff;
|
|
87
|
+
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.button--info {
|
|
91
|
+
position: absolute;
|
|
92
|
+
top: 0;
|
|
93
|
+
right: 0;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
input {
|
|
97
|
+
width: calc(100% - 10px);
|
|
98
|
+
max-width: 80vh;
|
|
99
|
+
min-height: 30px;
|
|
100
|
+
padding-left: 5px;
|
|
101
|
+
padding-right: 5px;
|
|
102
|
+
letter-spacing: .5px;
|
|
103
|
+
border: 0;
|
|
104
|
+
border-bottom: 2px solid #f0f0f0;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
input:valid {
|
|
108
|
+
border-color: #24cf5f;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
input:focus {
|
|
112
|
+
outline: none;
|
|
113
|
+
border-color: #fbcf34;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.form-list {
|
|
117
|
+
padding-left: 0;
|
|
118
|
+
list-style: none;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.form-list__row {
|
|
122
|
+
margin-bottom: 25px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.form-list__row label {
|
|
126
|
+
position: relative;
|
|
127
|
+
display: block;
|
|
128
|
+
text-transform: uppercase;
|
|
129
|
+
font-weight: 600;
|
|
130
|
+
font-size: 11px;
|
|
131
|
+
letter-spacing: .5px;
|
|
132
|
+
color: #939393;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.form-list__row--inline {
|
|
136
|
+
display: -ms-flexbox;
|
|
137
|
+
display: -webkit-box;
|
|
138
|
+
display: flex;
|
|
139
|
+
-ms-flex-pack: justify;
|
|
140
|
+
-webkit-box-pack: justify;
|
|
141
|
+
justify-content: space-between;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.form-list__row--inline> :first-child {
|
|
145
|
+
-ms-flex: 2;
|
|
146
|
+
-webkit-box-flex: 2;
|
|
147
|
+
flex: 2;
|
|
148
|
+
padding-right: 20px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.form-list__row--inline> :nth-child(2n) {
|
|
152
|
+
-ms-flex: 1;
|
|
153
|
+
-webkit-box-flex: 1;
|
|
154
|
+
flex: 1;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.form-list__input-inline {
|
|
158
|
+
display: -ms-flexbox;
|
|
159
|
+
display: -webkit-box;
|
|
160
|
+
display: flex;
|
|
161
|
+
-ms-flex-pack: justify;
|
|
162
|
+
-webkit-box-pack: justify;
|
|
163
|
+
justify-content: space-between;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.form-list__input-inline>* {
|
|
167
|
+
width: calc(50% - 10px - 10px);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.form-list__row--agree {
|
|
171
|
+
margin-top: 30px;
|
|
172
|
+
margin-bottom: 30px;
|
|
173
|
+
font-size: 12px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.form-list__row--agree label {
|
|
177
|
+
font-weight: 400;
|
|
178
|
+
text-transform: none;
|
|
179
|
+
color: #676767;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.form-list__row--agree input {
|
|
183
|
+
width: auto;
|
|
184
|
+
margin-right: 5px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
#input--cc {
|
|
188
|
+
position: relative;
|
|
189
|
+
padding-top: 6px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
#input--cc input {
|
|
193
|
+
padding-left: 46px;
|
|
194
|
+
width: calc(100% - 46px);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.modal {
|
|
198
|
+
display: -ms-flexbox;
|
|
199
|
+
display: -webkit-box;
|
|
200
|
+
display: flex;
|
|
201
|
+
-ms-flex-pack: center;
|
|
202
|
+
-webkit-box-pack: center;
|
|
203
|
+
justify-content: center;
|
|
204
|
+
-ms-flex-align: center;
|
|
205
|
+
-webkit-box-align: center;
|
|
206
|
+
align-items: center;
|
|
207
|
+
height: 100vh;
|
|
208
|
+
width: 100vw;
|
|
209
|
+
z-index: 100;
|
|
210
|
+
overflow-y: auto;
|
|
211
|
+
background-color: #ffffff;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.modal__container {
|
|
215
|
+
padding-top: 10vh;
|
|
216
|
+
|
|
217
|
+
display: -ms-flexbox;
|
|
218
|
+
display: -webkit-box;
|
|
219
|
+
display: flex;
|
|
220
|
+
max-width: 675px;
|
|
221
|
+
min-height: 400px;
|
|
222
|
+
margin-bottom: 125px;
|
|
223
|
+
border-radius: 5px;
|
|
224
|
+
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.modal__featured {
|
|
228
|
+
position: relative;
|
|
229
|
+
-ms-flex: 1;
|
|
230
|
+
-webkit-box-flex: 1;
|
|
231
|
+
flex: 1;
|
|
232
|
+
min-width: 130px;
|
|
233
|
+
padding: 20px;
|
|
234
|
+
overflow: hidden;
|
|
235
|
+
border-top-left-radius: 5px;
|
|
236
|
+
border-bottom-left-radius: 5px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.modal__circle {
|
|
240
|
+
position: absolute;
|
|
241
|
+
top: 0;
|
|
242
|
+
left: 0;
|
|
243
|
+
height: 200%;
|
|
244
|
+
width: 200%;
|
|
245
|
+
background-color: #fbcf34;
|
|
246
|
+
border-radius: 50%;
|
|
247
|
+
-webkit-transform: translateX(-50%) translateY(-25%);
|
|
248
|
+
transform: translateX(-50%) translateY(-25%);
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.modal__product {
|
|
252
|
+
margin-top: 120px;
|
|
253
|
+
position: absolute;
|
|
254
|
+
top: 0;
|
|
255
|
+
left: 50%;
|
|
256
|
+
max-width: 85%;
|
|
257
|
+
-webkit-transform: translateX(calc(-50% - 10px));
|
|
258
|
+
transform: translateX(calc(-50% - 10px));
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.modal__content {
|
|
262
|
+
align-content: center;
|
|
263
|
+
justify-content: center;
|
|
264
|
+
min-width: 80vw;
|
|
265
|
+
-ms-flex: 3;
|
|
266
|
+
-webkit-box-flex: 3;
|
|
267
|
+
flex: 3;
|
|
268
|
+
padding: 40px 40px;
|
|
269
269
|
}
|