-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major update on Login and Registration styling.""
This reverts commit daed0a9.
- Loading branch information
1 parent
daed0a9
commit f1c3fba
Showing
21 changed files
with
422 additions
and
689 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1048,4 +1048,3 @@ body { | |
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
body { | ||
font-family: "Karla", sans-serif; | ||
background-color: #fff; | ||
min-height: 100vh; } | ||
|
||
.brand-wrapper { | ||
padding-top: 7px; | ||
padding-bottom: 8px; } | ||
.brand-wrapper .logo { | ||
height: 25px; } | ||
|
||
.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: 575px) { | ||
.login-section-wrapper { | ||
padding-top: 20px; | ||
padding-bottom: 20px; | ||
min-height: 100vh; } } | ||
|
||
.login-wrapper { | ||
width: 300px; | ||
max-width: 100%; | ||
padding-top: 24px; | ||
padding-bottom: 24px; } | ||
@media (max-width: 575px) { | ||
.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 #e7e7e7; | ||
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: #fdbb28; | ||
border-radius: 0; | ||
font-size: 20px; | ||
font-weight: bold; | ||
color: #fff; | ||
margin-bottom: 14px; } | ||
.login-wrapper .login-btn:hover { | ||
border: 1px solid #fdbb28; | ||
background-color: #fff; | ||
color: #fdbb28; } | ||
.login-wrapper a.forgot-password-link { | ||
color: #080808; | ||
font-size: 14px; | ||
text-decoration: underline; | ||
display: inline-block; | ||
margin-bottom: 54px; } | ||
@media (max-width: 575px) { | ||
.login-wrapper a.forgot-password-link { | ||
margin-bottom: 16px; } } | ||
.login-wrapper-footer-text { | ||
font-size: 16px; | ||
color: #000; | ||
margin-bottom: 0; } | ||
|
||
.login-title { | ||
font-size: 30px; | ||
color: #000; | ||
font-weight: bold; | ||
margin-bottom: 25px; } | ||
|
||
.login-img { | ||
width: 100%; | ||
height: 100vh; | ||
-o-object-fit: cover; | ||
object-fit: cover; | ||
-o-object-position: left; | ||
object-position: left; } | ||
|
||
.footer-link { | ||
position: absolute; | ||
bottom: 1rem; | ||
text-align: center; | ||
width: 100%; } | ||
|
||
/*# sourceMappingURL=login.css.map */ |
Oops, something went wrong.