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 { ...@@ -15752,6 +15752,7 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
15752 z-index: 99; 15752 z-index: 99;
15753 position: relative; 15753 position: relative;
15754 margin-bottom: 24px; 15754 margin-bottom: 24px;
15755 margin-left: -12px;
15755 } 15756 }
15756 .by-the-numbers h2, .by-the-numbers .h2 { 15757 .by-the-numbers h2, .by-the-numbers .h2 {
15757 color: #fff; 15758 color: #fff;
...@@ -15764,16 +15765,20 @@ body.understrap-no-sidebar .wp-block-cover.alignwide { ...@@ -15764,16 +15765,20 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
15764 margin-left: -12px; 15765 margin-left: -12px;
15765 margin-right: -12px; 15766 margin-right: -12px;
15766 } 15767 }
15767 @media (max-width: 900px) { 15768 @media (max-width: 1000px) {
15768 .the-numbers { 15769 .the-numbers {
15769 margin-left: -50px; 15770 width: 100vw;
15770 margin-right: -50px;
15771 } 15771 }
15772 } 15772 }
15773 .the-numbers .wp-block-columns { 15773 .the-numbers .wp-block-columns {
15774 gap: 0em; 15774 gap: 0em;
15775 } 15775 }
15776 @media (max-width: 900px) { 15776 @media (max-width: 1000px) {
15777 .the-numbers .wp-block-columns {
15778 margin-left: -12px;
15779 }
15780 }
15781 @media (max-width: 1000px) {
15777 .the-numbers .wp-block-columns { 15782 .the-numbers .wp-block-columns {
15778 flex-wrap: wrap !important; 15783 flex-wrap: wrap !important;
15779 } 15784 }
...@@ -15783,7 +15788,7 @@ body.understrap-no-sidebar .wp-block-cover.alignwide { ...@@ -15783,7 +15788,7 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
15783 background-color: #7AA6AD; 15788 background-color: #7AA6AD;
15784 color: #fff; 15789 color: #fff;
15785 } 15790 }
15786 @media (max-width: 900px) { 15791 @media (max-width: 1000px) {
15787 .the-numbers .wp-block-column { 15792 .the-numbers .wp-block-column {
15788 flex-basis: 50% !important; 15793 flex-basis: 50% !important;
15789 } 15794 }
...@@ -15836,13 +15841,13 @@ body.understrap-no-sidebar .wp-block-cover.alignwide { ...@@ -15836,13 +15841,13 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
15836 line-height: 72px; 15841 line-height: 72px;
15837 font-weight: 400; 15842 font-weight: 400;
15838 margin-bottom: 20px; 15843 margin-bottom: 20px;
15839 padding: 0px 25%; 15844 padding: 0px 10%;
15840 } 15845 }
15841 .the-work p.first-of-type { 15846 .the-work p.first-of-type {
15842 color: #fff; 15847 color: #fff;
15843 font-size: 20px; 15848 font-size: 20px;
15844 line-height: 24px; 15849 line-height: 24px;
15845 padding: 0px 25%; 15850 padding: 0px 10%;
15846 } 15851 }
15847 15852
15848 .wp-block-getwid-tabs__nav-link { 15853 .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 @@ ...@@ -16970,14 +16970,24 @@
16970 }); 16970 });
16971 }); 16971 });
16972 jQuery(document).ready(function ($) { 16972 jQuery(document).ready(function ($) {
16973 if ($(window).width() > 900) { 16973 if ($(window).width() >= 1000) {
16974 $('.the-numbers').css('margin-left', '-12px');
16974 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "-" + $('#content').css('margin-left')); 16975 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "-" + $('#content').css('margin-left'));
16975 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "-" + $('#content').css('margin-right')); 16976 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "-" + $('#content').css('margin-right'));
16977 } else {
16978 $('.the-numbers').css('margin-left', "-" + $('#content').css('margin-left'));
16979 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "0");
16980 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "0");
16976 } 16981 }
16977 window.addEventListener('resize', function () { 16982 window.addEventListener('resize', function () {
16978 if ($(window).width() > 900) { 16983 if ($(window).width() >= 1000) {
16984 $('.the-numbers').css('margin-left', '-12px');
16979 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "-" + $('#content').css('margin-left')); 16985 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "-" + $('#content').css('margin-left'));
16980 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "-" + $('#content').css('margin-right')); 16986 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "-" + $('#content').css('margin-right'));
16987 } else {
16988 $('.the-numbers').css('margin-left', "-" + $('#content').css('margin-left'));
16989 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left', "0");
16990 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right', "0");
16981 } 16991 }
16982 }); 16992 });
16983 function expandTiles() { 16993 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() { ...@@ -24,15 +24,24 @@ document.addEventListener("DOMContentLoaded", function() {
24 24
25 jQuery(document).ready(function($) { 25 jQuery(document).ready(function($) {
26 26
27 27 if ($(window).width() >= 1000) {
28 if ($(window).width() > 900) { 28 $('.the-numbers').css('margin-left','-12px');
29 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"-"+$('#content').css('margin-left')); 29 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"-"+$('#content').css('margin-left'));
30 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"-"+$('#content').css('margin-right')); 30 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"-"+$('#content').css('margin-right'));
31 }else{
32 $('.the-numbers').css('margin-left',"-"+$('#content').css('margin-left'));
33 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"0");
34 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"0");
31 } 35 }
32 window.addEventListener('resize', function() { 36 window.addEventListener('resize', function() {
33 if ($(window).width() > 900) { 37 if ($(window).width() >= 1000) {
38 $('.the-numbers').css('margin-left','-12px');
34 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"-"+$('#content').css('margin-left')); 39 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"-"+$('#content').css('margin-left'));
35 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"-"+$('#content').css('margin-right')); 40 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"-"+$('#content').css('margin-right'));
41 }else{
42 $('.the-numbers').css('margin-left',"-"+$('#content').css('margin-left'));
43 $('.the-numbers .wp-block-columns .wp-block-column:first-of-type').css('margin-left',"0");
44 $('.the-numbers .wp-block-columns .wp-block-column:last-of-type').css('margin-right',"0");
36 } 45 }
37 }); 46 });
38 47
......
...@@ -225,6 +225,8 @@ ...@@ -225,6 +225,8 @@
225 z-index: 99; 225 z-index: 99;
226 position: relative; 226 position: relative;
227 margin-bottom: 24px; 227 margin-bottom: 24px;
228 margin-left: -12px;
229
228 h2{ 230 h2{
229 color: #fff; 231 color: #fff;
230 font-size: 30px; 232 font-size: 30px;
...@@ -235,13 +237,18 @@ ...@@ -235,13 +237,18 @@
235 .the-numbers{ 237 .the-numbers{
236 margin-left: -12px; 238 margin-left: -12px;
237 margin-right: -12px; 239 margin-right: -12px;
238 @media (max-width: 900px) { 240 @media (max-width: 1000px) {
239 margin-left: -50px; 241 width: 100vw;
240 margin-right: -50px; 242 }
243 @media (max-width: 800px) {
244
241 } 245 }
242 .wp-block-columns{ 246 .wp-block-columns{
247 @media (max-width: 1000px) {
248 margin-left: -12px;
249 }
243 gap: 0em; 250 gap: 0em;
244 @media (max-width: 900px) { 251 @media (max-width: 1000px) {
245 flex-wrap: wrap!important; 252 flex-wrap: wrap!important;
246 } 253 }
247 } 254 }
...@@ -250,7 +257,7 @@ ...@@ -250,7 +257,7 @@
250 padding: 50px; 257 padding: 50px;
251 background-color: #7AA6AD; 258 background-color: #7AA6AD;
252 color: #fff; 259 color: #fff;
253 @media (max-width: 900px) { 260 @media (max-width: 1000px) {
254 flex-basis: 50% !important; 261 flex-basis: 50% !important;
255 } 262 }
256 } 263 }
...@@ -301,13 +308,13 @@ ...@@ -301,13 +308,13 @@
301 line-height: 72px; 308 line-height: 72px;
302 font-weight: 400; 309 font-weight: 400;
303 margin-bottom: 20px; 310 margin-bottom: 20px;
304 padding: 0px 25%; 311 padding: 0px 10%;
305 } 312 }
306 p.first-of-type{ 313 p.first-of-type{
307 color: #fff; 314 color: #fff;
308 font-size: 20px; 315 font-size: 20px;
309 line-height: 24px; 316 line-height: 24px;
310 padding: 0px 25%; 317 padding: 0px 10%;
311 } 318 }
312 } 319 }
313 320
......