318d7791 by Jeff Balicki

PART

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 955fee21
......@@ -15067,6 +15067,14 @@ p {
font-weight: 300;
}
strong {
font-family: "PT Sans", sans-serif;
font-size: 1.13rem;
line-height: 1.5rem;
color: #63656B;
font-weight: 700;
}
a[target=_blank]::after {
font-family: "FontAwesome";
content: "\f08e";
......@@ -15155,10 +15163,33 @@ ol li ol {
width: 100%;
}
#no-title-page-wrapper,
#page-wrapper {
padding-top: 103px;
}
.partner-with-us {
background-image: url("/wp-content/themes/understrap-child/images/green-background.png");
width: 120%;
margin: -130px -10% 0 -10%;
padding: 130px 5% 130px 20%;
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
.partner-with-us {
flex-direction: column-reverse;
width: 100%;
}
}
.partner-with-us .wp-block-column:first-of-type p {
max-width: 600px;
}
.partner-with-us h1, .partner-with-us .h1 {
color: #231F20;
}
.join-callout {
background-color: #a3d55f;
margin: 0px -25% 0px -25%;
......@@ -15418,9 +15449,11 @@ ol li ol {
margin-left: 0px;
}
#menu-social.page li {
margin-right: 14px;
}
#menu-social.page li a {
height: 48px;
width: 48px;
margin-right: 14px;
}
#menu-social.page a::after {
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.
......@@ -12,7 +12,9 @@ defined( 'ABSPATH' ) || exit;
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<?php
if ( ! is_page_template( 'page-templates/home.php' ) ) {
if ( is_page_template( 'page-templates/home.php' ) || is_page_template( 'page-templates/no-title.php' ) ) {
} else {
the_title(
'<header class="entry-header"><h1 class="entry-title">',
'</h1></header><!-- .entry-header -->'
......
......@@ -11,7 +11,8 @@
defined( 'ABSPATH' ) || exit;
get_header();
$container = get_theme_mod( 'understrap_container_type' );
$container = "";
//get_theme_mod( 'understrap_container_type' );
if ( is_front_page() ) {
get_template_part( 'global-templates/hero' );
......
<?php
/**
* Template Name: No Title, Full Width Page
*
* This template can be used to override the default template
*
* @package Understrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
get_template_part( 'page-templates/fullwidthpage' );
......@@ -90,6 +90,13 @@ p{
color: #63656B;
font-weight: 300;
}
strong{
font-family: "PT Sans", sans-serif;
font-size: 1.13rem;
line-height: 1.5rem;
color: #63656B;
font-weight: 700;
}
......@@ -188,9 +195,39 @@ ul:not(.navbar-nav):not(.menu){
width: 100%;
}
}
#no-title-page-wrapper,
#page-wrapper{
padding-top: 103px;
}
.partner-with-us{
background-image:url("/wp-content/themes/understrap-child/images/green-background.png");
width: 120%;
margin: -130px -10% 0 -10%;
padding: 130px 5% 130px 20%;
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
@media screen and (max-width: 900px) {
flex-direction: column-reverse;
width: 100%;
}
.wp-block-column:first-of-type{
p{
max-width: 600px;
}
}
h1{
color: #231F20;
}
}
.join-callout{
background-color: #a3d55f;
margin: 0px -25% 0px -25%;
......
......@@ -132,8 +132,10 @@
#menu-social.page{
margin-left: 0px;
li {
height:48px;
width:48px;
a{
height:48px;
width:48px;
}
margin-right:14px;
}
a::after{
......