Blame view

babylon-vue-4.0.0/src/assets/sass/layout/_wizard.scss 16.9 KB
0f94839d   함상기   babylon client fo...
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
  .wizard-body {
      background:  url("../../layout/images/extensions/background.jpg") center;
      background-size: cover;
      background-repeat: no-repeat;
      height: 100vh;
  
      .wizard-header {
          padding: 24px 10%;
          img {
              height: 40px;
          }
      }
  
      .wizard-content {
          height: calc(100vh - 100px);
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
  
          .wizard-card {
              border-radius: 4px;
              box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.24);
              background-color: #303f46;
              width: 65%;
  
              .wizard-card-header {
                  .wizard-card-header-banner {
                      display: flex;
                      height: 110px;
  
                      .banner-logo {
                          img {
                              height: 100%;
                          }
                      }
  
                      .banner-image {
                          position: relative;
                          display: none;
                          overflow: hidden;
  
                          h1 {
                              color: #ffffff;
                              font-size: 21px;
                              font-weight: 500;
                              position: absolute;
                              left: 24px;
                              top: 25px;
                          }
  
                          img {
                              object-fit: fill;
                          }
  
                          &.active-banner {
                              display: block;
                          }
                      }
                  }
  
                  .wizard-card-tabs {
                      background-color: #405965;
                      display: flex;
                      justify-content: space-between;
  
                      .wizard-card-tab {
                          color: #aac8d6;
                          font-size: 13px;
                          cursor: pointer;
                          padding: 15px 10%;
                          width: 100%;
                          display: flex;
                          justify-content: center;
                          text-align: center;
  
                          &:hover {
                              background-color: #4e6e7d;
                              @include transition(background-color .3s);
                          }
  
                          &.selected-tab {
                              color: #ffffff;
                              @include transition(color .3s);
                          }
                      }
                  }
              }
  
              .wizard-card-content {
                  padding: 25px 30px;
                  min-height: 475px;
  
                  .wizard-forms-wrapper {
                      .wizard-forms {
                          .form-label{
                              color: #ffffff;
                              font-size: 13px;
                              margin-bottom: 6px;
                              margin-top: 24px;
                              display: block;
                          }
  
                          .form-inline-label {
                              color: #ffffff;
                              font-size: 13px;
                              margin-bottom: 2px;
                          }
                      }
                  }
  
                  .wizard-button {
                      padding: 0 10px;
                      display: flex;
                      justify-content: flex-end;
  
  
                      .p-button {
                          background-color: #405965;
                          border: none;
                          border-radius: 4px;
                          padding: 6px 30px;
                          font-size: 13px;
                          font-weight: 600;
  
                          &:hover {
                              background-color: #4b6a79;
                              @include transition(background-color .3s);
                          }
                      }
                  }
  
                  &.register {
                      display: none;
                      .warning {
                          display: flex;
                          align-items: center;
  
                          > i{
                              color: #e0284f;
                              margin-right: 10px;
                              font-size: 22px;
                          }
  
                          > p {
                              color: #ffffff;
                              margin: 0;
                          }
                      }
  
                      .wizard-forms-wrapper {
                          .wizard-forms {
                              padding: 0 10px;
  
                              input {
                                  width: 100%;
                                  border: solid 1px #527382;
                                  background-color: #405965;
                                  color: #ffffff;
                              }
  
                              .p-dropdown {
                                  border: solid 1px #527382;
                                  width: 100%;
                                  background-color: #405965;
                                  .p-inputtext {
                                      background-color: #405965;
                                      color: #ffffff;
                                      @include border-radius(2px);
                                  }
                                  .p-dropdown-trigger {
                                      background-color: #405965;
                                      color: #ffffff;
                                      @include border-radius(2px);
                                  }
                              }
  
                              .calendar {
                                  .form-label {
                                      margin-top: 24px;
                                  }
  
                                   span {
                                      width: 100%;
                                      display: flex;
  
                                       input {
                                          width: 100%;
                                          border: solid 1px #527382;
                                          background-color: #405965;
                                          color: #ffffff;
  
                                      }
                                  }
                              }
                          }
                      }
  
                      .wizard-button {
                          margin-top: 114px;
                      }
                  }
  
                  &.tier {
                      display: none;
                      .wizard-tier-cards {
                          margin-bottom: 24px;
  
                          .wizard-tier-card {
                              background-color: #405965;
                              border-radius: 4px;
                              padding: 0;
                              @include border-radius(4px);
                              cursor: pointer;
                              min-width: 200px;
  
                              .wizard-tier-card-header {
                                  display: flex;
                                  justify-content: center;
                                  align-items: center;
                                  background-image: linear-gradient(to bottom, #5d8191, #4f707f);
                                  padding: 10px 20px;
                                  margin-bottom: 10px;
                                  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.12);
                                  @include border-radius-top(4px);
  
  
                                  img {
                                      height: 75px;
                                  }
                              }
  
                              .wizard-tier-card-content {
                                  .title {
                                      > h1 {
                                          color: #ffffff;
                                          font-size: 21px;
                                          font-weight: 500;
                                          margin: 0;
                                          padding-left: 5px;
                                          border-left: 7px solid #d6619b;
                                      }
  
                                      > span {
                                          color: #ffffff;
                                          opacity: 0.7;
                                          font-size: 14px;
                                          margin-left: 12px;
                                          margin-top: 5px;
                                      }
                                  }
  
                                  > ul {
                                      padding: 24px 12px;
                                      list-style-type: none;
                                      margin: 0;
  
                                      > li {
                                          display: flex;
                                          align-items: center;
                                          padding: 7px 0;
  
                                          > i {
                                              font-size: 20px;
                                              color: #74909d;
                                              margin-right: 6px;
                                          }
  
                                          > p {
                                              margin: 0;
                                              color: #74909d;
                                          }
  
                                          &.active-list-item {
                                              i, p {
                                                  color: #ffffff;
                                              }
                                          }
                                      }
                                  }
                              }
  
                              &.beginner {
                                  .title {
                                      > h1 {
                                          border-color: #d6619b;
                                      }
                                  }
                              }
  
                              &.professional {
                                  .title {
                                      > h1 {
                                          border-color:  #4dbc90;
                                      }
                                  }
                              }
  
                              &.enterprise {
                                  .title {
                                      > h1 {
                                          border-color: #48bdf1;
                                      }
                                  }
                              }
  
                              &.active-tier-card {
                                  background-color: #3c6071;
                                  @include transition(background-color .3s);
                              }
                              &:hover {
                                  background-color: #4a6675;
                                  @include transition(background-color .3s);
                              }
                          }
                      }
  
                      .wizard-button {
                          margin-top: 56px;
                      }
                  }
  
                  &.payment {
                      padding: 0;
                      display: none;
  
                      .wizard-forms-wrapper {
                          padding:24px 40px;
  
                          .wizard-forms {
                              width: 66%;
  
                              .customPanel{
                                  width:100%;
                                  margin-left: 1em;
  
                                  img {
                                      height: 35px;
                                      margin-right: 8px;
                                  }
  
                                  .p-radiobutton{
                                      margin-top: 8px;
                                  }
                              }
  
                              .numbers {
                                  width: 100%;
                                  margin-left: 0.5rem;
                              }
  
                              input {
                                  width: 100%;
                                  border: solid 1px #527382;
                                  background-color: #405965;
                                  color: #ffffff;
                                  margin-left: .5em;
                              }
  
                              .form-label {
                                  margin-left: .5em;
                              }
  
                              > .form-label {
                                  width: 100%;
                                  display: inline-block;
                              }
  
                              .p-checkbox-label {
                                  color: #ffffff;
                                  font-size: 13px;
                              }
                          }
                      }
  
                      .wizard-button {
                          position: relative;
                          background-image: linear-gradient(to right, rgba(48,63,70,.15) 23%, rgba(116,144,157,.15) 60%);
                          padding: 24px 48px;
                          margin-top: 65px;
  
                          .order-summary {
                              display: none;
                              position: absolute;
                              left: 65px;
                              top: -8px;
  
                              p {
                                  color: #ffffff;
                                  font-size: 13px;
                                  margin: 0;
                                  margin-bottom: 12px;
                              }
  
                              h1 {
                                  color: #ffffff;
                                  font-size: 21px;
                                  margin: 0;
                              }
  
                              span {
                                  color: #aac8d6;
                                  font-size: 13px;
                              }
  
                              &.selected-order {
                                  display: block;
                              }
                          }
                      }
                  }
  
                  &.active-content {
                      display: block;
                  }
              }
          }
      }
  }
  
  @media (min-width: 1200px) {
      .wizard-body {
          .wizard-content {
              .wizard-card {
                  width: 55%;
              }
          }
      }
  }
  
  @media (max-width: 992px) {
      .wizard-body {
          .wizard-content {
              height: auto;
              align-items: stretch;
  
              .wizard-card {
                  width: 90%;
                  overflow: hidden;
  
                  .wizard-card-header {
                      .wizard-card-header-banner {
                          height: 150px;
  
                          .banner-image {
                              width: 100%;
                              img {
                                  display: none;
                              }
                              h1 {
                                  right: 10px;
                              }
                          }
                      }
                      .wizard-card-tabs {
                          .wizard-card-tab {
                              padding: 15px 5%;
                          }
                      }
                  }
  
                  .wizard-card-content {
                      max-height: 400px;
                      overflow: auto;
  
                      &.register {
                          .wizard-button {
                              margin-top: 24px;
                          }
                      }
  
                      &.tier {
                          .wizard-button {
                              margin-top: 24px;
                          }
                      }
  
                      &.payment {
                          .wizard-forms-wrapper {
                              .wizard-forms {
                                  width: 100%;
                              }
                          }
                          .wizard-button {
                              margin-top: 24px;
                              padding: 40px 10px;
                              display: flex;
                              align-items: center;
                              flex-direction: column;
  
                              .order-summary {
                                  position: relative;
                                  top: auto;
                                  left: auto;
                                  width: 100%;
                                  text-align: center;
                                  margin-bottom: 20px;
                              }
  
                              .p-button {
                                  height: 50px;
                              }
                          }
                      }
                  }
              }
          }
      }
  }