6e8953f7 by Jeff Balicki

login

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent ba8ed1cf
...@@ -14364,12 +14364,24 @@ figure.woocommerce-product-gallery__wrapper { ...@@ -14364,12 +14364,24 @@ figure.woocommerce-product-gallery__wrapper {
14364 position: absolute; 14364 position: absolute;
14365 background-size: cover; 14365 background-size: cover;
14366 background-position: top right; 14366 background-position: top right;
14367 bottom: -20px; 14367 bottom: 0px;
14368 right: 0px; 14368 right: 0px;
14369 width: 100%; 14369 width: 100%;
14370 height: 120px; 14370 height: 120px;
14371 background-image: url("../images/logo-border.png"); 14371 background-image: url("../images/logo-border.png");
14372 } 14372 }
14373 .page-template-login .full-image::before {
14374 color: #3DB149;
14375 font-size: 30px;
14376 content: "Bank like you live here.";
14377 display: block;
14378 position: absolute;
14379 bottom: 0;
14380 left: 14%;
14381 width: 50%;
14382 height: 60px;
14383 z-index: 99;
14384 }
14373 .page-template-login .hero-content { 14385 .page-template-login .hero-content {
14374 width: 40%; 14386 width: 40%;
14375 height: 530px; 14387 height: 530px;
...@@ -14403,6 +14415,18 @@ figure.woocommerce-product-gallery__wrapper { ...@@ -14403,6 +14415,18 @@ figure.woocommerce-product-gallery__wrapper {
14403 margin-bottom: 40px; 14415 margin-bottom: 40px;
14404 width: 100%; 14416 width: 100%;
14405 } 14417 }
14418 .page-template-login .hero-content .um .um-button,
14419 .page-template-login .hero-content .um .um-submit-btn {
14420 border-radius: 0px !important;
14421 background-color: #183668;
14422 text-transform: uppercase !important;
14423 color: #fff;
14424 }
14425 .page-template-login .hero-content .um .um-field-label label,
14426 .page-template-login .hero-content .um a.um-link-alt,
14427 .page-template-login .hero-content .um .um-field-checkbox-option {
14428 color: #000 !important;
14429 }
14406 .page-template-login #wrapper-footer { 14430 .page-template-login #wrapper-footer {
14407 display: none; 14431 display: none;
14408 } 14432 }
......
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 @@ ...@@ -6757,6 +6757,12 @@
6757 }; 6757 };
6758 }); 6758 });
6759 6759
6760 // jQuery(document).ready(function($) {
6761 // $('.page-template-login .full-image::before').css('margin-left',"-"+$('.container').css('margin-left'));
6762 // window.addEventListener('resize', function() {
6763 // $('.page-template-login .full-image::before').css('margin-left',"-"+$('.container').css('margin-left'));
6764 // });
6765
6760 exports.Alert = alert; 6766 exports.Alert = alert;
6761 exports.Button = button; 6767 exports.Button = button;
6762 exports.Carousel = carousel; 6768 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.
...@@ -16,3 +16,10 @@ document.addEventListener("DOMContentLoaded", function() { ...@@ -16,3 +16,10 @@ document.addEventListener("DOMContentLoaded", function() {
16 c.style.backgroundImage = 'url(' + b + ')'; 16 c.style.backgroundImage = 'url(' + b + ')';
17 }; 17 };
18 }); 18 });
19
20
21 // jQuery(document).ready(function($) {
22 // $('.page-template-login .full-image::before').css('margin-left',"-"+$('.container').css('margin-left'));
23 // window.addEventListener('resize', function() {
24 // $('.page-template-login .full-image::before').css('margin-left',"-"+$('.container').css('margin-left'));
25 // });
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -26,12 +26,25 @@ ...@@ -26,12 +26,25 @@
26 position: absolute; 26 position: absolute;
27 background-size: cover; 27 background-size: cover;
28 background-position: top right; 28 background-position: top right;
29 bottom: -20px; 29 bottom:0px;
30 right: 0px; 30 right: 0px;
31 width: 100%; 31 width: 100%;
32 height: 120px; 32 height: 120px;
33 background-image: url("../images/logo-border.png"); 33 background-image: url("../images/logo-border.png");
34 } 34 }
35 .full-image::before {
36 color: #3DB149;
37 font-size: 30px;
38 content: "Bank like you live here.";
39 display: block;
40 position: absolute;
41 bottom: 0;
42 left:14%;
43 width: 50%;
44 height: 60px;
45 z-index: 99;
46
47 }
35 48
36 .hero-content { 49 .hero-content {
37 width: 40%; 50 width: 40%;
...@@ -63,10 +76,27 @@ ...@@ -63,10 +76,27 @@
63 margin-bottom: 40px; 76 margin-bottom: 40px;
64 width: 100%; 77 width: 100%;
65 } 78 }
79 .um-button,
80 .um-submit-btn{
81 border-radius: 0px !important;
82 background-color: #183668;
83 text-transform: uppercase !important;
84 color: #fff;
85 }
86 .um-field-label label,
87 a.um-link-alt,
88 .um-field-checkbox-option{
89 color: #000 !important;
90 }
91
66 } 92 }
67 93
68 94
69 } 95 }
96
97
98
99
70 #wrapper-footer{ 100 #wrapper-footer{
71 display: none; 101 display: none;
72 } 102 }
......