New Logo
This commit is contained in:
@@ -1,125 +1,131 @@
|
|||||||
|
:root {
|
||||||
|
--main-color: #00c2c2;
|
||||||
|
--secondary-color: #b3ffff;
|
||||||
|
--background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: "Karla", sans-serif;
|
font-family: 'Karla', sans-serif;
|
||||||
background-color: #fff;
|
background-color: var(--background-color);
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.brand-wrapper {
|
.brand-wrapper {
|
||||||
padding-top: 7px;
|
padding-top: 7px;
|
||||||
padding-bottom: 8px;
|
padding-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.brand-wrapper .logo {
|
.brand-wrapper .logo {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-section-wrapper {
|
.login-section-wrapper {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
-webkit-box-direction: normal;
|
-webkit-box-direction: normal;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 68px 100px;
|
padding: 68px 100px;
|
||||||
background-color: #fff;
|
background-color: var(--background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 991px) {
|
@media (max-width: 991px) {
|
||||||
.login-section-wrapper {
|
.login-section-wrapper {
|
||||||
padding-left: 50px;
|
padding-left: 50px;
|
||||||
padding-right: 50px;
|
padding-right: 50px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.login-section-wrapper {
|
.login-section-wrapper {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper {
|
.login-wrapper {
|
||||||
width: 500px;
|
width: 500px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
padding-top: 24px;
|
padding-top: 24px;
|
||||||
padding-bottom: 24px;
|
padding-bottom: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.login-wrapper {
|
.login-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper label {
|
.login-wrapper label {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #b0adad;
|
color: #b0adad;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper .form-control {
|
.login-wrapper .form-control {
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid #b3ffff;
|
border-bottom: 1px solid var(--secondary-color);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
padding: 9px 5px;
|
padding: 9px 5px;
|
||||||
min-height: 40px;
|
min-height: 40px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper .form-control::-webkit-input-placeholder {
|
.login-wrapper .form-control::-webkit-input-placeholder {
|
||||||
color: #b0adad;
|
color: #b0adad;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper .form-control::-moz-placeholder {
|
.login-wrapper .form-control::-moz-placeholder {
|
||||||
color: #b0adad;
|
color: #b0adad;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper .form-control:-ms-input-placeholder {
|
.login-wrapper .form-control:-ms-input-placeholder {
|
||||||
color: #b0adad;
|
color: #b0adad;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper .form-control::-ms-input-placeholder {
|
.login-wrapper .form-control::-ms-input-placeholder {
|
||||||
color: #b0adad;
|
color: #b0adad;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper .form-control::placeholder {
|
.login-wrapper .form-control::placeholder {
|
||||||
color: #b0adad;
|
color: #b0adad;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper .login-btn {
|
.login-wrapper .login-btn {
|
||||||
padding: 13px 20px;
|
padding: 13px 20px;
|
||||||
background-color: #00c2c2;
|
background-color: var(--main-color);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #fff;
|
color: var(--background-color);
|
||||||
margin-bottom: 14px;
|
margin-bottom: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper .login-btn:hover {
|
.login-wrapper .login-btn:hover {
|
||||||
border: 1px solid #00c2c2;
|
border: 1px solid var(--main-color);
|
||||||
background-color: #fff;
|
background-color: var(--background-color);
|
||||||
color: #00c2c2;
|
color: var(--main-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-wrapper-footer-text {
|
.login-wrapper-footer-text {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #000;
|
color: #000;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-title {
|
.login-title {
|
||||||
color: #008080;
|
color: var(--main-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-img {
|
.login-img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
-o-object-fit: cover;
|
-o-object-fit: cover;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
-o-object-position: left;
|
-o-object-position: left;
|
||||||
object-position: left;
|
object-position: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=login.css.map */
|
/*# sourceMappingURL=login.css.map */
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 32 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 9.5 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 49 KiB |
BIN
login/resources/images/logo_light_bold.png
Normal file
BIN
login/resources/images/logo_light_bold.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 36 KiB |
@@ -21,7 +21,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6 login-section-wrapper">
|
<div class="col-md-6 login-section-wrapper">
|
||||||
<div class="brand-wrapper">
|
<div class="brand-wrapper">
|
||||||
<img src="${url.resourcesPath}/images/logo_left.png" alt="logo" class="logo">
|
<img src="${url.resourcesPath}/images/logo_light_bold.png" alt="logo" class="logo">
|
||||||
</div>
|
</div>
|
||||||
<div class="login-wrapper my-auto">
|
<div class="login-wrapper my-auto">
|
||||||
<#nested "header">
|
<#nested "header">
|
||||||
|
|||||||
Reference in New Issue
Block a user