0
0
This repository has been archived on 2020-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
OpenShorte.old/lib/css/login.css

52 lines
979 B
CSS

body {
overflow-x: hidden;
}
.login-container {
margin-top: 50px;
margin-bottom: 5%;
}
.login-form-1 {
width: 100%;
padding: 5%;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}
.login-form-1 h3 {
text-align: center;
color: #333;
}
.login-container form {
padding: 10%;
}
.btnSubmit, .btnForget {
border-radius: 2rem;
padding: 1.5%;
border: none;
cursor: pointer;
max-width: 49%;
outline: none;
}
.login-form-1 .btnSubmit, .login-form-1 .btnForget {
font-weight: 600;
color: #fff;
background-color: #0062cc;
}
.login-response {
min-height: 24px;
color: darkcyan;
font-weight: 600;
text-decoration: none;
}
@media screen and (max-width: 768px) {
.login-container {
margin-top: 0;
}
}
@media screen and (max-width: 576px) {
.btnSubmit {
min-width: 100%;
}
.btnForget {
min-width: 100%;
margin-top: 5px;
}
}