9bdf3981 by Jeff Balicki

sss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 77745407
......@@ -14596,6 +14596,7 @@ h1 + p, .h1 + p {
}
.header-section,
.full-image-login,
.full-image,
.image-loaded {
height: 530px;
......@@ -14666,7 +14667,7 @@ h1 + p, .h1 + p {
height: 95vh;
}
.page-template-login .header-section,
.page-template-login .full-image,
.page-template-login .full-image-login,
.page-template-login .image-loaded {
height: 100vh;
min-height: 800px;
......@@ -14677,12 +14678,12 @@ h1 + p, .h1 + p {
}
@media only screen and (max-width: 768px) {
.page-template-login .header-section,
.page-template-login .full-image,
.page-template-login .full-image-login,
.page-template-login .image-loaded {
height: 115vh;
}
}
.page-template-login .full-image::after {
.page-template-login .full-image-login::after {
content: "";
display: block;
position: absolute;
......@@ -14695,11 +14696,11 @@ h1 + p, .h1 + p {
background-image: url("../images/logo-border.png");
}
@media only screen and (max-width: 768px) {
.page-template-login .full-image::after {
.page-template-login .full-image-login::after {
bottom: -20px;
}
}
.page-template-login .full-image::before {
.page-template-login .full-image-login::before {
color: #3DB149;
font-size: 30px;
content: "Bank like you live here.";
......@@ -14712,7 +14713,7 @@ h1 + p, .h1 + p {
z-index: 99;
}
@media only screen and (max-width: 768px) {
.page-template-login .full-image::before {
.page-template-login .full-image-login::before {
width: 100%;
}
}
......
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.
......@@ -25015,7 +25015,18 @@
img = new Image();
img.src = b;
img.onload = function () {
c.classList.add('image-loaded'), c.style.backgroundImage = 'linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 91%, rgba(0, 0, 0, 0) 100%), url(' + b + ')';
c.classList.add('image-loaded'), c.style.backgroundImage = 'linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0) 100%), url(' + b + ')';
};
});
var a1 = document.querySelector('.blur-image');
document.addEventListener("DOMContentLoaded", function () {
if (!a1) return !1;
var b2 = a.getAttribute("data-src"),
c2 = document.querySelector('.full-image-login'),
img2 = new Image();
img2.src = b2;
img2.onload = function () {
c2.classList.add('image-loaded'), c2.style.backgroundImage = 'linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 91%, rgba(0, 0, 0, 0) 100%), url(' + b2 + ')';
};
});
$$1(document).ready(function ($) {});
......
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.
......@@ -25,7 +25,7 @@ if ( is_page_template( 'page-templates/no-title.php' ) ) {
<div class="hero-container header-section blur-image" data-src="<?php echo the_post_thumbnail_url(); ?>" style="--med-image: url(<?php echo the_post_thumbnail_url('medium'); ?>);">
<div class="full-image">
<div class="full-image-login">
<div class="container">
<div class="hero-content row">
<div class="col align-self-center">
......
......@@ -15,8 +15,25 @@ document.addEventListener("DOMContentLoaded", function() {
img.src = b;
img.onload = function() {
c.classList.add('image-loaded'),
c.style.backgroundImage = 'linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 91%, rgba(0, 0, 0, 0) 100%), url(' + b + ')';
c.style.backgroundImage = 'linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0) 100%), url(' + b + ')';
};
});
var a1 = document.querySelector('.blur-image');
document.addEventListener("DOMContentLoaded", function() {
if (!a1) return !1;
var b2 = a.getAttribute("data-src"),
c2 = document.querySelector('.full-image-login'),
img2 = new Image;
img2.src = b2;
img2.onload = function() {
c2.classList.add('image-loaded'),
c2.style.backgroundImage = 'linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 91%, rgba(0, 0, 0, 0) 100%), url(' + b2 + ')';
};
});
......
......@@ -10,6 +10,7 @@
}
.header-section,
.full-image-login,
.full-image,
.image-loaded {
height: 530px;
......
......@@ -12,7 +12,7 @@
}
.header-section,
.full-image,
.full-image-login,
.image-loaded {
height: 100vh;
min-height: 800px;
......@@ -24,7 +24,7 @@
height: 115vh;
}
}
.full-image::after {
.full-image-login::after {
content: "";
display: block;
position: absolute;
......@@ -39,7 +39,7 @@
bottom:-20px;
}
}
.full-image::before {
.full-image-login::before {
color: #3DB149;
font-size: 30px;
content: "Bank like you live here.";
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.2.0022
Version: 1.2.0023
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......