a36070e1 by Jeff Balicki

fix

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 195eb5f4
......@@ -15170,13 +15170,33 @@ ol li ol {
.partner-with-us {
background-image: url("/wp-content/themes/understrap-child/images/green-background.png");
width: 120%;
margin: -130px -10% 0 -10%;
padding: 130px 7% 130px 20%;
background-position: top left;
background-size: cover;
width: 125vw;
margin: -130px -15vw 0 -25vw;
padding: 130px 0vw 130px 35vw;
background-position: top right;
background-size: 100vw;
background-repeat: no-repeat;
}
@media screen and (max-width: 1550px) {
.partner-with-us {
width: 125vw;
margin: -130px -10% 0 -10%;
padding: 130px 7% 130px 20%;
background-position: top left;
background-size: 125vw;
background-repeat: no-repeat;
}
}
@media screen and (max-width: 1200px) {
.partner-with-us {
background-size: 155vw;
}
}
@media screen and (max-width: 1000px) {
.partner-with-us {
background-size: 155vw;
}
}
@media screen and (max-width: 900px) {
.partner-with-us {
flex-direction: column-reverse;
......@@ -15184,7 +15204,7 @@ ol li ol {
margin: -130px -10% 0 -10%;
padding: 40px 9% 130px 20%;
background-position: 0px 50px;
background-size: 120vw;
background-size: 150vw;
background-repeat: no-repeat;
}
}
......@@ -15196,6 +15216,11 @@ ol li ol {
max-width: 80Vw;
}
}
@media screen and (max-width: 900px) {
.partner-with-us .wp-block-column:first-of-type {
padding-top: 75px;
}
}
.partner-with-us h1, .partner-with-us .h1 {
color: #231F20;
}
......@@ -15204,8 +15229,12 @@ ol li ol {
color: #007299;
}
}
.partner-with-us .wp-block-image img {
margin-top: -40px;
}
@media screen and (max-width: 900px) {
.partner-with-us .wp-block-image img {
margin-top: 0px;
max-width: 70%;
float: right;
}
......
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.
......@@ -204,19 +204,34 @@ ul:not(.navbar-nav):not(.menu){
.partner-with-us{
background-image:url("/wp-content/themes/understrap-child/images/green-background.png");
width: 120%;
margin: -130px -10% 0 -10%;
padding: 130px 7% 130px 20%;
background-position: top left;
background-size: cover;
width: 125vw;
margin: -130px -15vw 0 -25vw;
padding: 130px 0vw 130px 35vw;
background-position: top right;
background-size: 100vw;
background-repeat: no-repeat;
@media screen and (max-width: 1550px) {
width: 125vw;
margin: -130px -10% 0 -10%;
padding: 130px 7% 130px 20%;
background-position: top left;
background-size: 125vw;
background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
background-size: 155vw;
}
@media screen and (max-width: 1000px) {
background-size: 155vw;
}
@media screen and (max-width: 900px) {
flex-direction: column-reverse;
width: 120%;
margin: -130px -10% 0 -10%;
padding: 40px 9% 130px 20%;
background-position: 0px 50px;
background-size: 120vw;
background-size: 150vw;
background-repeat: no-repeat;
}
.wp-block-column:first-of-type{
......@@ -227,18 +242,30 @@ ul:not(.navbar-nav):not(.menu){
}
}
}
.wp-block-column:first-of-type{
@media screen and (max-width: 900px) {
padding-top: 75px;
}
}
h1{
color: #231F20;
@media screen and (max-width: 900px) {
color: #007299;
}
}
@media screen and (max-width: 900px) {
.wp-block-image img{
max-width: 70%;
float: right;
}
margin-top: -40px;
@media screen and (max-width: 1500px) {
}
@media screen and (max-width: 900px) {
margin-top: 0px;
max-width: 70%;
float: right;
}
}
}
......