This repository has been archived on 2021-02-15. You can view files and clone it, but cannot push or open issues or pull requests.
Files
offpass-desktop/src/css/scanner.css
Nicolas 08af91f48c * Refactor
+ Menu to create or read a password
+ New loader
2019-10-27 00:06:51 +02:00

56 lines
959 B
CSS

#preview {
position: absolute;
z-index: -1;
top: 0;
left: 150%;
height: 100%;
width: 100%;
object-fit: cover;
}
#wait {
position: absolute;
left: 150%;
top: 10%;
width: 100%;
z-index: -2;
margin-top: 20%;
}
#wait h1 {
text-align: center;
}
#scanned {
position: absolute;
bottom: -500px;
width: 100%;
height: 100%;
z-index: -5;
opacity: 0;
padding-left: 20px;
backdrop-filter: blur(20px);
background: linear-gradient(0deg, rgba(0,0,0,.75) 80%, rgba(94,94,94,.75) 100%);
box-shadow: 0px -10px 34px -10px rgba(0,0,0,0.75);
}
#password {
font-family: 'Consolas';
font-weight: 200;
}
.show {
animation: showpass 1s;
opacity: 1 !important;
display: block !important;
}
@keyframes showpass {
from {
opacity: 0 !important;
display: none;
}
to {
opacity: 1 !important;
display: block !important;
}
}