a0a26288 by Jeff Balicki

zzzz

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent cab404f6
......@@ -15752,6 +15752,7 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
z-index: 99;
position: relative;
margin-bottom: 24px;
margin-left: -12px;
}
.by-the-numbers h2, .by-the-numbers .h2 {
color: #fff;
......@@ -15764,16 +15765,20 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
margin-left: -12px;
margin-right: -12px;
}
@media (max-width: 900px) {
@media (max-width: 1000px) {
.the-numbers {
margin-left: -50px;
margin-right: -50px;
width: 100vw;
}
}
.the-numbers .wp-block-columns {
gap: 0em;
}
@media (max-width: 900px) {
@media (max-width: 1000px) {
.the-numbers .wp-block-columns {
margin-left: -12px;
}
}
@media (max-width: 1000px) {
.the-numbers .wp-block-columns {
flex-wrap: wrap !important;
}
......@@ -15783,7 +15788,7 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
background-color: #7AA6AD;
color: #fff;
}
@media (max-width: 900px) {
@media (max-width: 1000px) {
.the-numbers .wp-block-column {
flex-basis: 50% !important;
}
......@@ -15836,13 +15841,13 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
line-height: 72px;
font-weight: 400;
margin-bottom: 20px;
padding: 0px 25%;
padding: 0px 10%;
}
.the-work p.first-of-type {
color: #fff;
font-size: 20px;
line-height: 24px;
padding: 0px 25%;
padding: 0px 10%;
}
.wp-block-getwid-tabs__nav-link {
......
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.
......@@ -16970,14 +16970,24 @@
});
});
jQuery(document).ready(function ($) {
if ($(window).width() > 900) {
if ($(window).width() >= 1000) {
$('.the-numbers').css('margin-left', '-12px');
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "-" + $('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "-" + $('#content').css('margin-right'));
} else {
$('.the-numbers').css('margin-left', "-" + $('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "0");
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "0");
}
window.addEventListener('resize', function () {
if ($(window).width() > 900) {
if ($(window).width() >= 1000) {
$('.the-numbers').css('margin-left', '-12px');
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "-" + $('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "-" + $('#content').css('margin-right'));
} else {
$('.the-numbers').css('margin-left', "-" + $('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "0");
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "0");
}
});
function expandTiles() {
......
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.
......@@ -24,15 +24,24 @@ document.addEventListener("DOMContentLoaded", function() {
jQuery(document).ready(function($) {
if ($(window).width() > 900) {
if ($(window).width() >= 1000) {
$('.the-numbers').css('margin-left','-12px');
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"-"+$('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"-"+$('#content').css('margin-right'));
}
}else{
$('.the-numbers').css('margin-left',"-"+$('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"0");
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"0");
}
window.addEventListener('resize', function() {
if ($(window).width() > 900) {
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"-"+$('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"-"+$('#content').css('margin-right'));
if ($(window).width() >= 1000) {
$('.the-numbers').css('margin-left','-12px');
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"-"+$('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"-"+$('#content').css('margin-right'));
}else{
$('.the-numbers').css('margin-left',"-"+$('#content').css('margin-left'));
$('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"0");
$('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"0");
}
});
......
......@@ -225,6 +225,8 @@
z-index: 99;
position: relative;
margin-bottom: 24px;
margin-left: -12px;
h2{
color: #fff;
font-size: 30px;
......@@ -235,13 +237,18 @@
.the-numbers{
margin-left: -12px;
margin-right: -12px;
@media (max-width: 900px) {
margin-left: -50px;
margin-right: -50px;
@media (max-width: 1000px) {
width: 100vw;
}
@media (max-width: 800px) {
}
.wp-block-columns{
@media (max-width: 1000px) {
margin-left: -12px;
}
gap: 0em;
@media (max-width: 900px) {
@media (max-width: 1000px) {
flex-wrap: wrap!important;
}
}
......@@ -250,7 +257,7 @@
padding: 50px;
background-color: #7AA6AD;
color: #fff;
@media (max-width: 900px) {
@media (max-width: 1000px) {
flex-basis: 50% !important;
}
}
......@@ -301,13 +308,13 @@
line-height: 72px;
font-weight: 400;
margin-bottom: 20px;
padding: 0px 25%;
padding: 0px 10%;
}
p.first-of-type{
color: #fff;
font-size: 20px;
line-height: 24px;
padding: 0px 25%;
padding: 0px 10%;
}
}
......