You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.0 KiB
71 lines
1.0 KiB
.scanCode {
|
|
position: relative;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: #353230;
|
|
}
|
|
|
|
.back {
|
|
position: absolute;
|
|
bottom: 48px;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.btn {
|
|
position: absolute;
|
|
height: 56px;
|
|
left: 29px;
|
|
right: 28px;
|
|
bottom: 130px;
|
|
background: #ffffff;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #437af7;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
@keyframes scaner {
|
|
0% {
|
|
top: 10px;
|
|
}
|
|
100% {
|
|
top: 340px;
|
|
}
|
|
}
|
|
.border {
|
|
position: absolute;
|
|
top: 94px;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
width: 320px;
|
|
height: 320px;
|
|
z-index: 1;
|
|
}
|
|
.scaner {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
width: 320px;
|
|
height: 74px;
|
|
animation: 1s scaner infinite ease-in-out;
|
|
z-index: 3;
|
|
pointer-events: none;
|
|
}
|
|
.camera {
|
|
position: absolute;
|
|
top: 114px;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
width: 280px;
|
|
height: 280px;
|
|
z-index: 2;
|
|
}
|
|
|