drop.chapril.org-firefoxsend/app/templates/passwordInput/passwordInput.css

42 lines
674 B
CSS
Raw Normal View History

.passwordInput {
2018-02-21 21:35:52 +01:00
width: 90%;
height: 100px;
padding: 10px 5px 5px;
}
.passwordInput--hidden {
visibility: hidden;
}
.passwordInput__form {
display: flex;
flex-wrap: nowrap;
2018-02-21 21:35:52 +01:00
padding-bottom: 5px;
2018-02-16 21:56:53 +01:00
}
.passwordInput__msg {
font-size: 15px;
color: var(--lightTextColor);
}
2018-02-21 21:35:52 +01:00
.passwordInput__msg--error {
color: var(--errorColor);
}
2018-02-16 21:56:53 +01:00
.inputBtn--loading {
background-image: url('../assets/spinner.svg');
background-position: center;
background-size: 30px 30px;
background-repeat: no-repeat;
}
.inputBtn--password {
flex: 0 0 200px;
2018-02-16 21:56:53 +01:00
}
@media (max-device-width: 520px), (max-width: 520px) {
.passwordInput__form {
flex-direction: column;
}
}