6e8953f7 by Jeff Balicki

login

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent ba8ed1cf
......@@ -14364,12 +14364,24 @@ figure.woocommerce-product-gallery__wrapper {
position: absolute;
background-size: cover;
background-position: top right;
bottom: -20px;
bottom: 0px;
right: 0px;
width: 100%;
height: 120px;
background-image: url("../images/logo-border.png");
}
.page-template-login .full-image::before {
color: #3DB149;
font-size: 30px;
content: "Bank like you live here.";
display: block;
position: absolute;
bottom: 0;
left: 14%;
width: 50%;
height: 60px;
z-index: 99;
}
.page-template-login .hero-content {
width: 40%;
height: 530px;
......@@ -14403,6 +14415,18 @@ figure.woocommerce-product-gallery__wrapper {
margin-bottom: 40px;
width: 100%;
}
.page-template-login .hero-content .um .um-button,
.page-template-login .hero-content .um .um-submit-btn {
border-radius: 0px !important;
background-color: #183668;
text-transform: uppercase !important;
color: #fff;
}
.page-template-login .hero-content .um .um-field-label label,
.page-template-login .hero-content .um a.um-link-alt,
.page-template-login .hero-content .um .um-field-checkbox-option {
color: #000 !important;
}
.page-template-login #wrapper-footer {
display: none;
}
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -6757,6 +6757,12 @@
};
});
// jQuery(document).ready(function($) {
// $('.page-template-login .full-image::before').css('margin-left',"-"+$('.container').css('margin-left'));
// window.addEventListener('resize', function() {
// $('.page-template-login .full-image::before').css('margin-left',"-"+$('.container').css('margin-left'));
// });
exports.Alert = alert;
exports.Button = button;
exports.Carousel = carousel;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -15,4 +15,11 @@ document.addEventListener("DOMContentLoaded", function() {
c.classList.add('image-loaded'),
c.style.backgroundImage = 'url(' + b + ')';
};
});
\ No newline at end of file
});
// jQuery(document).ready(function($) {
// $('.page-template-login .full-image::before').css('margin-left',"-"+$('.container').css('margin-left'));
// window.addEventListener('resize', function() {
// $('.page-template-login .full-image::before').css('margin-left',"-"+$('.container').css('margin-left'));
// });
\ No newline at end of file
......
......@@ -26,12 +26,25 @@
position: absolute;
background-size: cover;
background-position: top right;
bottom: -20px;
bottom:0px;
right: 0px;
width: 100%;
height: 120px;
background-image: url("../images/logo-border.png");
}
.full-image::before {
color: #3DB149;
font-size: 30px;
content: "Bank like you live here.";
display: block;
position: absolute;
bottom: 0;
left:14%;
width: 50%;
height: 60px;
z-index: 99;
}
.hero-content {
width: 40%;
......@@ -63,10 +76,27 @@
margin-bottom: 40px;
width: 100%;
}
.um-button,
.um-submit-btn{
border-radius: 0px !important;
background-color: #183668;
text-transform: uppercase !important;
color: #fff;
}
.um-field-label label,
a.um-link-alt,
.um-field-checkbox-option{
color: #000 !important;
}
}
}
#wrapper-footer{
display: none;
}
......