PART
Signed-off-by: Jeff <jeff@gotenzing.com>
Showing
11 changed files
with
91 additions
and
3 deletions
| ... | @@ -15067,6 +15067,14 @@ p { | ... | @@ -15067,6 +15067,14 @@ p { |
| 15067 | font-weight: 300; | 15067 | font-weight: 300; |
| 15068 | } | 15068 | } |
| 15069 | 15069 | ||
| 15070 | strong { | ||
| 15071 | font-family: "PT Sans", sans-serif; | ||
| 15072 | font-size: 1.13rem; | ||
| 15073 | line-height: 1.5rem; | ||
| 15074 | color: #63656B; | ||
| 15075 | font-weight: 700; | ||
| 15076 | } | ||
| 15077 | |||
| 15070 | a[target=_blank]::after { | 15078 | a[target=_blank]::after { |
| 15071 | font-family: "FontAwesome"; | 15079 | font-family: "FontAwesome"; |
| 15072 | content: "\f08e"; | 15080 | content: "\f08e"; |
| ... | @@ -15155,10 +15163,33 @@ ol li ol { | ... | @@ -15155,10 +15163,33 @@ ol li ol { |
| 15155 | width: 100%; | 15163 | width: 100%; |
| 15156 | } | 15164 | } |
| 15157 | 15165 | ||
| 15166 | #no-title-page-wrapper, | ||
| 15158 | #page-wrapper { | 15167 | #page-wrapper { |
| 15159 | padding-top: 103px; | 15168 | padding-top: 103px; |
| 15160 | } | 15169 | } |
| 15161 | 15170 | ||
| 15171 | .partner-with-us { | ||
| 15172 | background-image: url("/wp-content/themes/understrap-child/images/green-background.png"); | ||
| 15173 | width: 120%; | ||
| 15174 | margin: -130px -10% 0 -10%; | ||
| 15175 | padding: 130px 5% 130px 20%; | ||
| 15176 | background-position: top left; | ||
| 15177 | background-size: cover; | ||
| 15178 | background-repeat: no-repeat; | ||
| 15179 | } | ||
| 15180 | @media screen and (max-width: 900px) { | ||
| 15181 | .partner-with-us { | ||
| 15182 | flex-direction: column-reverse; | ||
| 15183 | width: 100%; | ||
| 15184 | } | ||
| 15185 | } | ||
| 15186 | .partner-with-us .wp-block-column:first-of-type p { | ||
| 15187 | max-width: 600px; | ||
| 15188 | } | ||
| 15189 | .partner-with-us h1, .partner-with-us .h1 { | ||
| 15190 | color: #231F20; | ||
| 15191 | } | ||
| 15192 | |||
| 15162 | .join-callout { | 15193 | .join-callout { |
| 15163 | background-color: #a3d55f; | 15194 | background-color: #a3d55f; |
| 15164 | margin: 0px -25% 0px -25%; | 15195 | margin: 0px -25% 0px -25%; |
| ... | @@ -15418,9 +15449,11 @@ ol li ol { | ... | @@ -15418,9 +15449,11 @@ ol li ol { |
| 15418 | margin-left: 0px; | 15449 | margin-left: 0px; |
| 15419 | } | 15450 | } |
| 15420 | #menu-social.page li { | 15451 | #menu-social.page li { |
| 15452 | margin-right: 14px; | ||
| 15453 | } | ||
| 15454 | #menu-social.page li a { | ||
| 15421 | height: 48px; | 15455 | height: 48px; |
| 15422 | width: 48px; | 15456 | width: 48px; |
| 15423 | margin-right: 14px; | ||
| 15424 | } | 15457 | } |
| 15425 | #menu-social.page a::after { | 15458 | #menu-social.page a::after { |
| 15426 | top: 11px; | 15459 | top: 11px; | ... | ... |
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.
1.92 MB
1.68 MB
| ... | @@ -12,7 +12,9 @@ defined( 'ABSPATH' ) || exit; | ... | @@ -12,7 +12,9 @@ defined( 'ABSPATH' ) || exit; |
| 12 | <article <?php post_class(); ?> id="post-<?php the_ID(); ?>"> | 12 | <article <?php post_class(); ?> id="post-<?php the_ID(); ?>"> |
| 13 | 13 | ||
| 14 | <?php | 14 | <?php |
| 15 | if ( ! is_page_template( 'page-templates/home.php' ) ) { | 15 | if ( is_page_template( 'page-templates/home.php' ) || is_page_template( 'page-templates/no-title.php' ) ) { |
| 16 | |||
| 17 | } else { | ||
| 16 | the_title( | 18 | the_title( |
| 17 | '<header class="entry-header"><h1 class="entry-title">', | 19 | '<header class="entry-header"><h1 class="entry-title">', |
| 18 | '</h1></header><!-- .entry-header -->' | 20 | '</h1></header><!-- .entry-header -->' | ... | ... |
| ... | @@ -11,7 +11,8 @@ | ... | @@ -11,7 +11,8 @@ |
| 11 | defined( 'ABSPATH' ) || exit; | 11 | defined( 'ABSPATH' ) || exit; |
| 12 | 12 | ||
| 13 | get_header(); | 13 | get_header(); |
| 14 | $container = get_theme_mod( 'understrap_container_type' ); | 14 | $container = ""; |
| 15 | //get_theme_mod( 'understrap_container_type' ); | ||
| 15 | 16 | ||
| 16 | if ( is_front_page() ) { | 17 | if ( is_front_page() ) { |
| 17 | get_template_part( 'global-templates/hero' ); | 18 | get_template_part( 'global-templates/hero' ); | ... | ... |
| ... | @@ -90,6 +90,13 @@ p{ | ... | @@ -90,6 +90,13 @@ p{ |
| 90 | color: #63656B; | 90 | color: #63656B; |
| 91 | font-weight: 300; | 91 | font-weight: 300; |
| 92 | } | 92 | } |
| 93 | strong{ | ||
| 94 | font-family: "PT Sans", sans-serif; | ||
| 95 | font-size: 1.13rem; | ||
| 96 | line-height: 1.5rem; | ||
| 97 | color: #63656B; | ||
| 98 | font-weight: 700; | ||
| 99 | } | ||
| 93 | 100 | ||
| 94 | 101 | ||
| 95 | 102 | ||
| ... | @@ -188,9 +195,39 @@ ul:not(.navbar-nav):not(.menu){ | ... | @@ -188,9 +195,39 @@ ul:not(.navbar-nav):not(.menu){ |
| 188 | width: 100%; | 195 | width: 100%; |
| 189 | } | 196 | } |
| 190 | } | 197 | } |
| 198 | |||
| 199 | #no-title-page-wrapper, | ||
| 191 | #page-wrapper{ | 200 | #page-wrapper{ |
| 192 | padding-top: 103px; | 201 | padding-top: 103px; |
| 193 | } | 202 | } |
| 203 | |||
| 204 | |||
| 205 | .partner-with-us{ | ||
| 206 | background-image:url("/wp-content/themes/understrap-child/images/green-background.png"); | ||
| 207 | width: 120%; | ||
| 208 | margin: -130px -10% 0 -10%; | ||
| 209 | padding: 130px 5% 130px 20%; | ||
| 210 | background-position: top left; | ||
| 211 | background-size: cover; | ||
| 212 | background-repeat: no-repeat; | ||
| 213 | @media screen and (max-width: 900px) { | ||
| 214 | flex-direction: column-reverse; | ||
| 215 | width: 100%; | ||
| 216 | } | ||
| 217 | .wp-block-column:first-of-type{ | ||
| 218 | p{ | ||
| 219 | max-width: 600px; | ||
| 220 | } | ||
| 221 | |||
| 222 | |||
| 223 | } | ||
| 224 | h1{ | ||
| 225 | color: #231F20; | ||
| 226 | } | ||
| 227 | } | ||
| 228 | |||
| 229 | |||
| 230 | |||
| 194 | .join-callout{ | 231 | .join-callout{ |
| 195 | background-color: #a3d55f; | 232 | background-color: #a3d55f; |
| 196 | margin: 0px -25% 0px -25%; | 233 | margin: 0px -25% 0px -25%; | ... | ... |
| ... | @@ -132,8 +132,10 @@ | ... | @@ -132,8 +132,10 @@ |
| 132 | #menu-social.page{ | 132 | #menu-social.page{ |
| 133 | margin-left: 0px; | 133 | margin-left: 0px; |
| 134 | li { | 134 | li { |
| 135 | a{ | ||
| 135 | height:48px; | 136 | height:48px; |
| 136 | width:48px; | 137 | width:48px; |
| 138 | } | ||
| 137 | margin-right:14px; | 139 | margin-right:14px; |
| 138 | } | 140 | } |
| 139 | a::after{ | 141 | a::after{ | ... | ... |
-
Please register or sign in to post a comment