2022-03-16 12:11:30 +01:00
|
|
|
/* login page */
|
|
|
|
body.overflowHidden {
|
|
|
|
overflow-y: hidden !important;
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
margin-top: 2vh;
|
|
|
|
}
|
|
|
|
main > h1 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.userlistContainer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: start;
|
|
|
|
}
|
|
|
|
.userlist {
|
|
|
|
width: 50vw;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.userlist li {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: .8rem 1.1rem;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.userlistButton {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
.passwordOverlayContainer {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: start;
|
|
|
|
background: var(--page-background);
|
|
|
|
z-index: 40;
|
|
|
|
}
|
|
|
|
.passwordOverlay {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: start;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.passwordOverlay > form {
|
|
|
|
min-width: unset;
|
|
|
|
width: fit-content;
|
|
|
|
}
|
|
|
|
.passwordOverlay > form > h1 {
|
2022-06-16 10:28:45 +02:00
|
|
|
margin-top: 2rem;
|
|
|
|
margin-bottom: 2rem;
|
2022-03-16 12:11:30 +01:00
|
|
|
}
|
|
|
|
form input[type="password"], form input[type="text"] {
|
|
|
|
width: 94%;
|
|
|
|
padding-top: .5rem;
|
|
|
|
padding-bottom: .5rem;
|
|
|
|
font-size: 1rem;
|
|
|
|
margin: .1rem 0;
|
|
|
|
}
|
|
|
|
.pinpad {
|
|
|
|
margin-top: 3rem;
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
max-width: 30vw;
|
|
|
|
}
|
|
|
|
.pinpad table {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
.pinpad table tr, .pinpad td {
|
|
|
|
padding: unset;
|
|
|
|
background: unset;
|
|
|
|
}
|
|
|
|
.pinpad tr td button {
|
|
|
|
height: 4.0rem;
|
|
|
|
width: 4.1rem;
|
|
|
|
font-size: 1.16rem;
|
|
|
|
margin: .2rem !important;
|
|
|
|
}
|
|
|
|
@media only screen and (max-width: 700px) {
|
|
|
|
.userlistContainer {
|
|
|
|
width: 95vw;
|
|
|
|
}
|
|
|
|
.userlist {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.userlist li {
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
.pinpad table tr td button {
|
|
|
|
height: 4.2rem;
|
|
|
|
width: 4.2rem;
|
|
|
|
font-size: 1.16rem;
|
|
|
|
margin: .2rem;
|
|
|
|
}
|
|
|
|
}
|