Update to full design
This commit is contained in:
125
login/resources/css/custom.css
Normal file
125
login/resources/css/custom.css
Normal file
@@ -0,0 +1,125 @@
|
||||
body {
|
||||
font-family: "Karla", sans-serif;
|
||||
background-color: #fff;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.brand-wrapper {
|
||||
padding-top: 7px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.brand-wrapper .logo {
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.login-section-wrapper {
|
||||
display: -webkit-box;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
flex-direction: column;
|
||||
padding: 68px 100px;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.login-section-wrapper {
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.login-section-wrapper {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
min-height: 100vh;
|
||||
}
|
||||
}
|
||||
|
||||
.login-wrapper {
|
||||
width: 500px;
|
||||
max-width: 100%;
|
||||
padding-top: 24px;
|
||||
padding-bottom: 24px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.login-wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.login-wrapper label {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #b0adad;
|
||||
}
|
||||
|
||||
.login-wrapper .form-control {
|
||||
border: none;
|
||||
border-bottom: 1px solid #b3ffff;
|
||||
border-radius: 0;
|
||||
padding: 9px 5px;
|
||||
min-height: 40px;
|
||||
font-size: 18px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.login-wrapper .form-control::-webkit-input-placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
|
||||
.login-wrapper .form-control::-moz-placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
|
||||
.login-wrapper .form-control:-ms-input-placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
|
||||
.login-wrapper .form-control::-ms-input-placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
|
||||
.login-wrapper .form-control::placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
|
||||
.login-wrapper .login-btn {
|
||||
padding: 13px 20px;
|
||||
background-color: #00c2c2;
|
||||
border-radius: 0;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.login-wrapper .login-btn:hover {
|
||||
border: 1px solid #00c2c2;
|
||||
background-color: #fff;
|
||||
color: #00c2c2;
|
||||
}
|
||||
|
||||
.login-wrapper-footer-text {
|
||||
font-size: 16px;
|
||||
color: #000;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.login-title {
|
||||
color: #008080;
|
||||
}
|
||||
|
||||
.login-img {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
-o-object-position: left;
|
||||
object-position: left;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=login.css.map */
|
||||
Reference in New Issue
Block a user