@@ -148,13 +148,12 @@ img {
148
148
}
149
149
150
150
.scanner-container .header .camera-list {
151
- width : 165px ;
152
151
position : absolute;
153
152
top : 46px ;
154
153
left : 0 ;
155
154
background-color : # 000000 ;
156
155
border-right : # aaaaaa ;
157
- z-index : 1 ;
156
+ z-index : 3 ;
158
157
display : none;
159
158
}
160
159
@@ -226,32 +225,6 @@ img {
226
225
z-index : 1 ;
227
226
}
228
227
229
- .scanner-container .camera-view-container .scan-mode-container {
230
- display : flex;
231
- align-items : center;
232
- justify-content : center;
233
- position : absolute;
234
- bottom : -55% ;
235
- left : 0 ;
236
- right : 0 ;
237
- z-index : 1 ;
238
- cursor : pointer;
239
- gap : 0.5rem ;
240
- font-size : 24px ;
241
- font-family : OpenSans-Regular;
242
- color : # ffffff ;
243
- user-select : none;
244
- }
245
-
246
- .scanner-container .camera-view-container .scan-mode-container : hover {
247
- opacity : 0.8 ;
248
- }
249
-
250
- .scanner-container .camera-view-container .scan-mode-container .settings-btn {
251
- width : 24px ;
252
- height : 24px ;
253
- }
254
-
255
228
.result-container {
256
229
position : absolute;
257
230
width : 100% ;
@@ -266,7 +239,7 @@ img {
266
239
}
267
240
268
241
.result-container .result-btn-container {
269
- padding : 15px 15px 7.5 px 30px ;
242
+ padding : 15px 15px 0 30px ;
270
243
display : flex;
271
244
gap : 2rem ;
272
245
}
@@ -300,6 +273,10 @@ img {
300
273
cursor : pointer;
301
274
}
302
275
276
+ .result-container # result-image-container {
277
+ display : flex;
278
+ justify-content : center;
279
+ }
303
280
.result-container .parsed-result-area {
304
281
width : 100% ;
305
282
padding : 15px 15px 0 30px ;
@@ -332,6 +309,7 @@ img {
332
309
align-items : center;
333
310
margin-top : auto;
334
311
box-shadow : 0 4px 8px rgba (0 , 0 , 0 , 0.2 );
312
+ background-color : # 2b2b2b ;
335
313
}
336
314
337
315
.result-container .restart-video .btn-restart-video {
@@ -344,59 +322,62 @@ img {
344
322
font-family : "Oswald-Regular" ;
345
323
}
346
324
347
- .settings-modal {
325
+ .scan-mode-container {
348
326
display : none;
349
- position : fixed;
350
- top : 0 ;
351
- left : 0 ;
352
- width : 100% ;
353
- height : 100% ;
354
- background-color : rgba (0 , 0 , 0 , 0.4 );
355
- z-index : 2 ;
356
327
justify-content : center;
357
328
align-items : center;
329
+ position : fixed;
330
+ bottom : 15% ;
331
+ left : 5% ;
332
+ right : 5% ;
333
+ z-index : 2 ;
358
334
}
359
335
360
- .settings-modal-content {
361
- background-color : # 323234 ;
362
- padding : 1rem 2rem 2rem ;
363
- color : # ffffff ;
364
- font-family : Oswald-Light;
365
- font-size : 20px ;
366
- box-shadow : 0 4px 8px rgba (0 , 0 , 0 , 0.2 );
367
- }
368
-
369
- .settings-modal-top {
336
+ .scan-mode-container .scan-mode-content {
337
+ position : relative;
370
338
display : flex;
371
- justify-content : space-between ;
339
+ justify-content : center ;
372
340
align-items : center;
373
- margin-bottom : 0.5rem ;
374
- }
375
-
376
- .settings-option-title {
377
- font-family : Oswald-Regular;
378
- margin : 0 ;
379
- margin-bottom : 0.5rem ;
380
- font-weight : normal;
341
+ background-color : rgb (34 , 34 , 34 );
342
+ box-shadow : 0 4px 8px rgba (0 , 0 , 0 , 0.2 );
343
+ border-radius : 8px ;
344
+ padding : 0.5rem ;
345
+ width : max-content;
346
+ opacity : 0.8 ;
381
347
}
382
348
383
- .settings -option-btn {
384
- background-color : rgb ( 34 , 34 , 34 ) ;
349
+ .scan -option-btn {
350
+ background-color : transparent ;
385
351
padding : 0.5rem ;
386
352
font-family : OpenSans-Regular;
387
353
color : white;
354
+ width : 5rem ;
388
355
}
389
356
390
357
.selected {
391
358
background-color : # fe8e14 ;
359
+ color : white;
360
+ border-radius : 8px ;
392
361
box-shadow : 0 4px 8px rgba (0 , 0 , 0 , 0.2 );
393
362
}
394
363
395
- .close-settings-btn {
396
- display : flex;
364
+ .scan-orientation-btn {
365
+ position : absolute;
366
+ top : -90% ;
367
+ right : 0 ;
368
+ padding : 0.5rem ;
369
+ display : none;
397
370
justify-content : center;
398
371
align-items : center;
399
- background : transparent;
372
+ border-radius : 8px ;
373
+ opacity : 0.8 ;
374
+ background-color : rgb (34 , 34 , 34 );
375
+ }
376
+
377
+ .scan-orientation-btn .scan-orientation-icon {
378
+ width : 24px ;
379
+ height : 24px ;
380
+ filter : invert (0.4 );
400
381
}
401
382
402
383
# notification {
@@ -431,7 +412,25 @@ img {
431
412
}
432
413
.banner-success {
433
414
background-color : rgb (124 , 252 , 0 , 0.4 );
434
- border : 1px solid # 7cfc00 ;
415
+ border : 1px solid # 00fc15 ;
416
+ }
417
+
418
+ .get-demo-code {
419
+ display : flex;
420
+ justify-content : center;
421
+ align-items : center;
422
+ color : # ffae38 ;
423
+ margin-left : auto;
424
+ margin-right : 1rem ;
425
+ font-family : Oswald-Regular;
426
+ text-decoration : none;
427
+ }
428
+
429
+ .dbr-download-code-icon {
430
+ width : 16px ;
431
+ height : 16px ;
432
+ stroke : # ffae38 ;
433
+ margin-left : 5px ;
435
434
}
436
435
437
436
@keyframes dce-rotate {
@@ -443,15 +442,6 @@ img {
443
442
}
444
443
}
445
444
446
- @keyframes dce-scanlight {
447
- from {
448
- top : 0 ;
449
- }
450
- to {
451
- top : 97% ;
452
- }
453
- }
454
-
455
445
@media screen and (max-width : 800px ) {
456
446
html ,
457
447
body {
@@ -469,27 +459,12 @@ img {
469
459
.home-page .description .start-btn {
470
460
font-size : 20px ;
471
461
}
472
-
473
- .scanner-container .camera-view-container .scan-mode-container .settings-btn {
474
- width : 16px ;
475
- height : 16px ;
476
- }
477
-
478
- .settings-modal-content {
479
- width : 100% ;
480
- height : 100% ;
481
- }
482
462
}
483
463
@media screen and (max-width : 1300px ) {
484
464
.scanner-container .camera-view-container .scan-help-msg {
485
465
font-size : 12px ;
486
466
top : -35% ;
487
467
}
488
-
489
- .scanner-container .camera-view-container .scan-mode-container {
490
- bottom : -45% ;
491
- font-size : 12px ;
492
- }
493
468
}
494
469
@media screen and (max-width : 800px ) and (orientation : landscape) {
495
470
.result-container .parsed-result-area .parsed-filed {
0 commit comments