291bd279 by Jeff Balicki

ssss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent ba45714e
......@@ -14503,6 +14503,14 @@ h1, .h1 {
}
}
h1.entry-title, .entry-title.h1 {
color: #0484B8;
}
.resource-template-default .entry-content {
margin-top: 40px;
}
h2, .h2 {
color: #0484B8;
font-size: 40px;
......@@ -14646,6 +14654,7 @@ input[type=checkbox] {
.back {
text-decoration: none !important;
font-size: 20px;
margin-bottom: 20px;
}
.back::before {
......@@ -14687,6 +14696,22 @@ input[type=checkbox] {
padding: 30px 0px;
}
.wp-block-table {
margin: 40px 0px;
}
.wp-block-table th {
background-color: #0484B8 !important;
color: #fff !important;
}
.table-bordered > :not(caption) > * > *, .wp-block-table table > :not(caption) > * > * {
border-width: 0px !important;
}
.wp-element-caption {
text-align: center;
}
.pre-header {
background-color: #0484b8;
color: #fff;
......@@ -15724,13 +15749,20 @@ input[type=checkbox] {
padding: 15px 10px 8px 10px;
margin-bottom: 20px;
}
.js-accordion-item h3, .js-accordion-item .h3 {
.js-accordion-item .c-accordion__title {
color: #0484B8;
font-size: 29px !important;
line-height: 32px !important;
margin-top: 20px !important;
margin-bottom: 20px !important;
font-family: "Open Sans", sans-serif;
margin-top: 0px !important;
text-transform: capitalize;
}
@media only screen and (max-width: 768px) {
.js-accordion-item h3, .js-accordion-item .h3 {
font-size: 24px;
line-height: 34px;
.js-accordion-item .c-accordion__title {
font-size: 24px !important;
line-height: 34px !important;
}
}
......
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.
<?php
/**
* Single post partial template
*
* @package Understrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
?>
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<div class="entry-meta">
<?php // understrap_posted_on(); ?>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<?php //echo get_the_post_thumbnail( $post->ID, 'large' ); ?>
<div class="entry-content">
<?php
the_content();
understrap_link_pages();
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php understrap_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->
<?php
/**
* The template for displaying all single posts
*
* @package Understrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
get_header();
$container = get_theme_mod( 'understrap_container_type' );
?>
<div class="wrapper" id="single-wrapper">
<div class="<?php echo esc_attr( $container ); ?>" id="content" tabindex="-1">
<div class="row">
<a class="back" href="javascript:void(0)" onclick="history.back()">Back</a>
<?php
// Do the left sidebar check and open div#primary.
//get_template_part( 'global-templates/left-sidebar-check' );
?>
<main class="site-main" id="main">
<?php
while ( have_posts() ) {
the_post();
get_template_part( 'loop-templates/content', 'single-resource' );
//understrap_post_nav();
}
?>
</main>
<?php
// Do the right sidebar check and close div#primary.
//get_template_part( 'global-templates/right-sidebar-check' );
?>
</div><!-- .row -->
</div><!-- #content -->
</div><!-- #single-wrapper -->
<?php
get_footer();
......@@ -23,11 +23,18 @@
border-radius: 10px;
padding: 15px 10px 8px 10px;
margin-bottom: 20px;
h3{
.c-accordion__title{
color: #0484B8;
font-size: 29px !important;
line-height: 32px!important;
margin-top: 20px!important;
margin-bottom: 20px!important;
font-family: 'Open Sans', sans-serif;
margin-top: 0px !important;
text-transform: capitalize;
@media only screen and (max-width: 768px) {
font-size: 24px;
line-height: 34px;
font-size: 24px!important;
line-height: 34px!important;
}
}
}
\ No newline at end of file
......
......@@ -31,6 +31,15 @@ h1{
}
}
}
h1.entry-title{
color: #0484B8;
}
.resource-template-default {
.entry-content{
margin-top: 40px;
}
}
h2{
color: #0484B8;
......@@ -174,6 +183,7 @@ max-width: 100% !important;
.back{
text-decoration: none !important;
font-size: 20px;
margin-bottom: 20px;
}
.back::before{
......@@ -214,4 +224,18 @@ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/s
.empty-message{
text-align: center;
padding: 30px 0px;
}
.wp-block-table{
margin: 40px 0px;
th{
background-color: #0484B8 !important;
color: #fff !important;
}
}
.table-bordered>:not(caption)>*>*, .wp-block-table table>:not(caption)>*>*{
border-width: 0px !important
}
.wp-element-caption{
text-align: center;
}
\ No newline at end of file
......
......@@ -5,7 +5,7 @@
Author: Tenzing Communications
Author URI: https://tenzingbrand.com
Template: understrap
Version: 1.1.0020
Version: 1.1.0021
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......