Done !
| Server IP : 51.91.236.255 / Your IP : 216.73.217.126 Web Server : Apache System : Linux webm003.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : chloega ( 433239) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/chloega/www/wp-content/themes/bravada/includes/ |
Upload File : |
<?php
/**
* Master generated style function
*
* @package Bravada
*/
function bravada_body_classes( $classes ) {
$options = cryout_get_option( array(
'theme_landingpage', 'theme_layoutalign', 'theme_image_style', 'theme_magazinelayout', 'theme_comclosed', 'theme_contenttitles', 'theme_caption_style',
'theme_elementborder', 'theme_elementshadow', 'theme_elementborderradius', 'theme_totop', 'theme_menustyle', 'theme_menuposition', 'theme_menulayout',
'theme_topsection', 'theme_headerresponsive', 'theme_headerfullscreen', 'theme_fresponsive', 'theme_comlabels', 'theme_comicons', 'theme_comdate',
'theme_tables', 'theme_normalizetags', 'theme_articleanimation', 'theme_headertitle_anim', 'theme_lazyimages', 'theme_headingsaccent'
) );
if ( is_front_page() && $options['theme_landingpage'] && ('page' == get_option('show_on_front')) ) {
$classes[] = 'bravada-landing-page';
}
if ( $options['theme_layoutalign'] ) $classes[] = 'bravada-boxed-layout';
$classes[] = esc_html( $options['theme_image_style'] );
$classes[] = esc_html( $options['theme_caption_style'] );
$classes[] = esc_html( $options['theme_totop'] );
$classes[] = esc_html( $options['theme_tables'] );
$header_image = bravada_header_image_url();
if ( $options['theme_menustyle'] ) $classes[] = 'bravada-fixed-menu';
if ( $options['theme_menuposition'] && !empty( $header_image ) ) $classes[] = 'bravada-over-menu';
if ( $options['theme_menulayout'] == 0 ) $classes[] = 'bravada-menu-left';
if ( $options['theme_menulayout'] == 1 ) $classes[] = 'bravada-menu-right';
if ( $options['theme_menulayout'] == 2 ) $classes[] = 'bravada-menu-center';
if ( $options['theme_topsection'] ) $classes[] = 'bravada-topsection-reversed';
else $classes[] = 'bravada-topsection-normal';
if ( $options['theme_headerresponsive'] ) $classes[] = 'bravada-responsive-headerimage';
else $classes[] = 'bravada-cropped-headerimage';
if ( ( $options['theme_headerfullscreen'] == 1 ) || ( ( $options['theme_headerfullscreen'] == 2 ) && is_front_page() ) ) $classes[] = 'bravada-fullscreen-headerimage';
if ( $options['theme_fresponsive'] ) $classes[] = 'bravada-responsive-featured';
else $classes[] = 'bravada-cropped-featured';
if ( $options['theme_magazinelayout'] ) {
switch ( $options['theme_magazinelayout'] ):
case 1: $classes[] = 'bravada-magazine-one bravada-magazine-layout'; break;
case 2: $classes[] = 'bravada-magazine-two bravada-magazine-layout'; break;
case 3: $classes[] = 'bravada-magazine-three bravada-magazine-layout'; break;
endswitch;
}
switch ( $options['theme_comclosed'] ) {
case 2: $classes[] = 'bravada-comhide-in-posts'; break;
case 3: $classes[] = 'bravada-comhide-in-pages'; break;
case 0: $classes[] = 'bravada-comhide-in-posts'; $classes[] = 'bravada-comhide-in-pages'; break;
}
if ( $options['theme_comlabels'] == 1 ) $classes[] = 'bravada-comment-placeholder';
if ( $options['theme_comlabels'] == 2 ) $classes[] = 'bravada-comment-labels';
if ( $options['theme_comlabels'] == 3 ) $classes[] = 'bravada-comment-optlabels';
if ( $options['theme_comicons'] == 1 ) $classes[] = 'bravada-comment-icons';
if ( $options['theme_comdate'] == 1 ) $classes[] = 'bravada-comment-date-published';
$theme_archive_desc = trim( get_the_archive_description() ); // get_the_archive_description doesn't work with author description
if ( ( ( is_archive() && !function_exists( 'is_shop' ) ) || ( is_archive() && !is_shop() ) ) && cryout_get_option('theme_meta_blog_byline') == 2 ) {
$classes[] = 'bravada-desc-in-content';
}
switch ( $options['theme_contenttitles'] ) {
case 2: $classes[] = 'bravada-hide-page-title'; break;
case 3: $classes[] = 'bravada-hide-cat-title'; break;
case 0: $classes[] = 'bravada-hide-page-title'; $classes[] = 'bravada-hide-cat-title'; break;
}
if ( $options['theme_elementborder'] ) $classes[] = 'bravada-elementborder';
if ( $options['theme_elementshadow'] ) $classes[] = 'bravada-elementshadow';
if ( $options['theme_elementborderradius'] ) $classes[] = 'bravada-elementradius';
if ( $options['theme_normalizetags'] ) $classes[] = 'bravada-normalizedtags';
if ( $options['theme_headertitle_anim'] ) $classes[] = 'bravada-animated-title';
if ( $options['theme_lazyimages'] == 2 ) $classes[] = 'bravada-lazy-noanimation';
if ( !empty( $options['theme_articleanimation'] ) ) $classes[] = 'bravada-article-animation-' . esc_attr( $options['theme_articleanimation'] );
return $classes;
}
add_filter( 'body_class', 'bravada_body_classes' );
/*
* Dynamic styles for the frontend
*/
function bravada_custom_styles() {
$options = cryout_get_option();
extract($options);
ob_start();
/********** LAYOUT DIMENSIONS. **********/
switch ( $theme_layoutalign ) {
case 0: // wide ?>
body:not(.bravada-landing-page) #container, #colophon-inside, .footer-inside, #breadcrumbs-container-inside {
margin: 0 auto;
max-width: <?php echo esc_html( $theme_sitewidth ); ?>px;
}
body:not(.bravada-landing-page) #container {
max-width: calc( <?php echo esc_html( $theme_sitewidth ); ?>px - 4em );
}
<?php break;
case 1: // boxed ?>
#site-wrapper {
max-width: <?php echo esc_html( $theme_sitewidth ); ?>px;
}
<?php break;
}
if ( ! esc_html( $theme_menualignment ) ) { ?> .site-header-inside { max-width: <?php echo esc_html( $theme_sitewidth ) ?>px; margin: 0 auto; } <?php }
/********** COLUMNS **********/
$colPadding = 0; // percent
$sidebarP = $theme_primarysidebar;
$sidebarS = $theme_secondarysidebar;
?>
#primary { width: <?php echo absint( $sidebarP ); ?>px; }
#secondary { width: <?php echo absint( $sidebarS ); ?>px; }
#container.one-column .main { width: 100%; }
#container.two-columns-right #secondary { float: right; }
#container.two-columns-right .main,
.two-columns-right #breadcrumbs { width: calc( <?php echo 100 - (int) $colPadding ?>% - <?php echo absint( $sidebarS ); ?>px ); float: left; }
#container.two-columns-left #primary { float: left; }
#container.two-columns-left .main,
.two-columns-left #breadcrumbs { width: calc( <?php echo 100 - (int) $colPadding ?>% - <?php echo absint( $sidebarP ); ?>px ); float: right; }
#container.three-columns-right #primary,
#container.three-columns-left #primary,
#container.three-columns-sided #primary { float: left; }
#container.three-columns-right #secondary,
#container.three-columns-left #secondary,
#container.three-columns-sided #secondary { float: left; }
#container.three-columns-right #primary,
#container.three-columns-left #secondary { margin-left: <?php echo absint( $colPadding ) ?>%; margin-right: <?php echo absint( $colPadding ) ?>%; }
#container.three-columns-right .main,
.three-columns-right #breadcrumbs { width: calc( <?php echo 100 - absint( $colPadding ) * 2 ?>% - <?php echo absint( $sidebarS + $sidebarP ); ?>px ); float: left; }
#container.three-columns-left .main,
.three-columns-left #breadcrumbs { width: calc( <?php echo 100 - absint( $colPadding ) * 2 ?>% - <?php echo absint( $sidebarS + $sidebarP ); ?>px ); float: right; }
#container.three-columns-sided #secondary { float: right; }
#container.three-columns-sided .main,
.three-columns-sided #breadcrumbs { width: calc( <?php echo 100 - absint( $colPadding ) * 2 ?>% - <?php echo absint( $sidebarS + $sidebarP ); ?>px ); float: right; }
.three-columns-sided #breadcrumbs { margin: 0 calc( <?php echo absint( $colPadding ) ?>% + <?php echo absint($sidebarS) ?>px ) 0 -1920px; }
<?php if ( in_array( $theme_siteheader, array( 'logo', 'empty' ) ) ) { ?>
#site-text {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
<?php }
/******** FONTS ***********/
?>
html {
font-family: <?php cryout_font_select( $theme_fgeneral, $theme_fgeneralgoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_fgeneralsize ) ?>px; font-weight: <?php echo esc_html( $theme_fgeneralweight ) ?>;
line-height: <?php echo esc_html( (float) $theme_lineheight ) ?>;
<?php echo ( ! empty( $theme_fgeneralvariant ) ) ? 'text-transform: ' . esc_attr( $theme_fgeneralvariant ) : ''; ?>;
}
#site-title {
font-family: <?php cryout_font_select( $theme_fsitetitle, $theme_fsitetitlegoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_fsitetitlesize ) ?>em; font-weight: <?php echo esc_html( $theme_fsitetitleweight ) ?>;
}
#site-text {
<?php echo ( ! empty( $theme_fsitetitlevariant ) ) ? 'text-transform: ' . esc_attr( $theme_fsitetitlevariant ) : ''; ?>;
}
nav#mobile-menu #mobile-nav a {
font-family: <?php cryout_font_select( $theme_fmenu, $theme_fmenugoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_fmenusize ) ?>em; font-weight: <?php echo esc_html( $theme_fmenuweight ) ?>;
font-size: clamp(1.3rem, <?php echo ( esc_html( $theme_fmenusize ) * 2 ) ?>vw, <?php echo esc_html( $theme_fmenusize ) ?>em);
<?php echo ( ! empty( $theme_fmenuvariant ) ) ? 'text-transform: ' . esc_attr( $theme_fmenuvariant ) : ''; ?>;
}
nav#mobile-menu #mobile-nav ul.sub-menu a {
font-size: clamp(1.1rem, <?php echo ( esc_html( $theme_fmenusize ) * 1.6 ) ?>vw, <?php echo esc_html( $theme_fmenusize * 0.8 ) ?>em);
}
nav#mobile-menu input[type=search] {
font-family: <?php cryout_font_select( $theme_fmenu, $theme_fmenugoogle, true ) ?>;
}
.widget-title,
#comments-title,
#reply-title,
.related-posts .related-main-title,
.main .author-info .page-title {
font-family: <?php cryout_font_select( $theme_fwtitle, $theme_fwtitlegoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_fwtitlesize ) ?>em; font-weight: <?php echo esc_html( $theme_fwtitleweight ) ?>;
line-height: <?php echo esc_html( (float) $theme_fwtitlelineheight ) ?>; margin-bottom: <?php echo esc_html( (float) $theme_fwtitlespace ) ?>em;
<?php echo ( ! empty( $theme_fwtitlevariant ) ) ? 'text-transform: ' . esc_attr( $theme_fwtitlevariant ) : ''; ?>;
}
.widget-title::after,
#comments-title::after,
#reply-title::after,
.related-posts .related-main-title::after {
margin-bottom: <?php echo esc_html( (float) $theme_fwtitlespace ) ?>em;
}
.widget-container {
font-family: <?php cryout_font_select( $theme_fwcontent, $theme_fwcontentgoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_fwcontentsize ) ?>em; font-weight: <?php echo esc_html( $theme_fwcontentweight ) ?>;
}
.widget-container ul li {
line-height: <?php echo esc_html( (float) $theme_fwcontentlineheight ) ?>;
<?php echo ( ! empty( $theme_fwcontentvariant ) ) ? 'text-transform: ' . esc_attr( $theme_fwcontentvariant ) : ''; ?>;
}
.entry-title,
.main .page-title {
font-family: <?php cryout_font_select( $theme_ftitles, $theme_ftitlesgoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_ftitlessize ) ?>em; font-weight: <?php echo esc_html( $theme_ftitlesweight ) ?>;
<?php echo ( ! empty( $theme_ftitlesvariant ) ) ? 'text-transform: ' . esc_attr( $theme_ftitlesvariant ) : ''; ?>;
}
body:not(.single) .entry-meta > span {
font-family: <?php cryout_font_select( $theme_metatitles, $theme_metatitlesgoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_metatitlessize ) ?>em;
font-weight: <?php echo esc_html( $theme_metatitlesweight ) ?>;
<?php echo ( ! empty( $theme_metatitlesvariant ) ) ? 'text-transform: ' . esc_attr( $theme_metatitlesvariant ) : ''; ?>;
}
/* single post titles/metas */
#header-page-title .entry-title,
.singular-title,
.lp-staticslider .staticslider-caption-title,
.seriousslider-theme .seriousslider-caption-title {
font-family: <?php cryout_font_select( $theme_singletitle, $theme_singletitlegoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_singletitlesize ) ?>em; font-weight: <?php echo esc_html( $theme_singletitleweight ) ?>;
font-size: clamp(<?php echo esc_html( $theme_singletitlesize/2 ) ?>em, <?php echo esc_html( $theme_singletitlesize ) ?>vw, <?php echo esc_html( $theme_singletitlesize ) ?>em );
line-height: <?php echo esc_html( (float) $theme_singletitlelineheight ) ?>;
<?php echo ( ! empty( $theme_singletitlevariant ) ) ? 'text-transform: ' . esc_attr( $theme_singletitlevariant ) : ''; ?>;
}
.single .entry-meta > span {
font-family: <?php cryout_font_select( $theme_singlemeta, $theme_singlemetagoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_singlemetasize ) ?>em; font-weight: <?php echo esc_html( $theme_singlemetaweight ) ?>;
<?php echo ( ! empty( $theme_singlemetavariant ) ) ? 'text-transform: ' . esc_attr( $theme_singlemetavariant ) : ''; ?>;
}
<?php
$font_root = 2.6; // headings font size root
for ( $i = 1; $i <= 6; $i++ ) {
$size = round( ( $font_root - ( 0.27 * $i ) ) * ( preg_replace( "/[^\d]/", "", esc_html( $theme_fheadingssize ) ) / 100), 5 ); ?>
h<?php echo absint( $i ) ?> { font-size: <?php echo esc_html( (float) $size ) ?>em; } <?php
} //for
?>
h1, h2, h3, h4 {
font-family: <?php cryout_font_select( $theme_fheadings, $theme_fheadingsgoogle, true ) ?>;
font-weight: <?php echo esc_html( $theme_fheadingsweight ) ?>;
<?php echo ( ! empty( $theme_fheadingsvariant ) ) ? 'text-transform: ' . esc_attr( $theme_fheadingsvariant ) : ''; ?>;
}
.entry-content h1, .entry-summary h1,
.entry-content h2, .entry-summary h2,
.entry-content h3, .entry-summary h3,
.entry-content h4, .entry-summary h4,
.entry-content h5, .entry-summary h5,
.entry-content h6, .entry-summary h6 {
line-height: <?php echo esc_html( (float) $theme_fheadingslineheight ) ?>;
margin-bottom: <?php echo esc_html( (float) $theme_fheadingsspace ) ?>em;
}
.lp-section-header .lp-section-desc,
.lp-box-title,
.lp-tt-title,
#nav-fixed a + a,
#nav-below span,
.lp-blocks.lp-blocks1 .lp-block .lp-block-readmore {
font-family: <?php cryout_font_select( $theme_fheadings, $theme_fheadingsgoogle, true ) ?>;
}
.lp-section-header .lp-section-title {
font-family: <?php cryout_font_select( $theme_fgeneral, $theme_fgeneralgoogle, true ) ?>;
}
blockquote cite {
font-family: <?php cryout_font_select( $theme_fgeneral, $theme_fgeneralgoogle, true ) ?>;
}
<?php
/******** COLORS ***********/
?>
:root {
--bravada-accent-1: <?php echo esc_html( $theme_accent1 ) ?>;
--bravada-accent-2: <?php echo esc_html( $theme_accent2 ) ?>;
}
.bravada-accent-1 { color: <?php echo esc_html( $theme_accent1 ) ?>; }
.bravada-accent-2 { color: <?php echo esc_html( $theme_accent2 ) ?>; }
.bravada-accent-1-bg { background-color: <?php echo esc_html( $theme_accent1 ) ?>; }
.bravada-accent-2-bg { background-color: <?php echo esc_html( $theme_accent2 ) ?>; }
body {
color: <?php echo esc_html( $theme_sitetext ) ?>;
background-color: <?php echo esc_html( $theme_sitebackground ) ?>;
}
.lp-staticslider .staticslider-caption-text a {
color: <?php echo esc_html( $theme_menubackground ); ?>;
}
#site-header-main,
.menu-search-animated .searchform input[type="search"],
#access .menu-search-animated .searchform,
.site-header-bottom-fixed,
.bravada-over-menu .site-header-bottom.header-fixed .site-header-bottom-fixed {
background-color: <?php echo esc_html( $theme_menubackground ) ?>;
}
.bravada-over-menu .site-header-bottom-fixed {
background: transparent;
}
.bravada-over-menu .header-fixed.site-header-bottom #site-title a,
.bravada-over-menu .header-fixed.site-header-bottom #site-description {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.bravada-over-menu #site-title a,
.bravada-over-menu #site-description,
.bravada-over-menu #access > div > ul > li,
.bravada-over-menu #access > div > ul > li > a,
.bravada-over-menu .site-header-bottom:not(.header-fixed) #nav-toggle,
#breadcrumbs-container span, #breadcrumbs-container a, #breadcrumbs-container i {
color: <?php echo esc_html( $theme_menubackground ) ?>;
}
#bmobile #site-title a {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
#site-title a::before {
background: <?php echo esc_html( $theme_accent1 ) ?>;
}
body:not(.bravada-over-menu) .site-header-bottom #site-title a::before,
.bravada-over-menu .header-fixed.site-header-bottom #site-title a::before {
background: <?php echo esc_html( $theme_accent2 ) ?>;
}
body:not(.bravada-over-menu) .site-header-bottom #site-title a:hover {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
#site-title a:hover::before {
background: <?php echo esc_html( $theme_accent2 ) ?>;
}
#access > div > ul > li,
#access > div > ul > li > a,
.bravada-over-menu .header-fixed.site-header-bottom #access > div > ul > li:not([class*='current']),
.bravada-over-menu .header-fixed.site-header-bottom #access > div > ul > li:not([class*='current']) > a {
color: <?php echo esc_html( $theme_menutext ) ?>;
}
.hamburger span {
background-color: <?php echo esc_html( $theme_menutext ) ?>;
}
#mobile-menu,
nav#mobile-menu #mobile-nav a {
color: <?php echo esc_html( $theme_submenutext ) ?>;
}
nav#mobile-menu #mobile-nav > li.current_page_item > a,
nav#mobile-menu #mobile-nav > li.current-menu-item > a,
nav#mobile-menu #mobile-nav > li.current_page_ancestor > a,
nav#mobile-menu #mobile-nav > li.current-menu-ancestor > a,
nav#mobile-menu #mobile-nav a:hover {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
nav#mobile-menu {
color: <?php echo esc_html( $theme_submenutext ) ?>;
background-color: <?php echo esc_html( $theme_submenubackground ) ?>;
}
#mobile-nav .searchform input[type="search"] {
border-color: <?php echo esc_html( $theme_submenutext ) ?>;
}
.burgermenu-active.bravada-over-menu .site-header-bottom.header-fixed .site-header-bottom-fixed {
background-color: transparent;
}
.burgermenu-active.bravada-over-menu .site-header-bottom .hamburger span {
background-color: <?php echo esc_html( $theme_submenutext ) ?>;
}
.bravada-over-menu:not(.burgermenu-active) .site-header-bottom:not(.header-fixed) .hamburger span {
background-color: <?php echo esc_html( $theme_menubackground ) ?>;
}
.bravada-over-menu .header-fixed.site-header-bottom .side-section-element.widget_cryout_socials a:hover::before,
.side-section-element.widget_cryout_socials a:hover::before {
color: <?php echo esc_html( $theme_menubackground ) ?>;
}
#access ul.sub-menu li a,
#access ul.children li a,
.topmenu ul li a {
color: <?php echo esc_html( $theme_submenutext ) ?>;
}
#access ul.sub-menu li a,
#access ul.children li a {
background-color: <?php echo esc_html( $theme_submenubackground ) ?>;
}
#access ul.sub-menu li a:hover,
#access ul.children li a:hover {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
#access > div > ul > li.current_page_item > a,
#access > div > ul > li.current-menu-item > a,
#access > div > ul > li.current_page_ancestor > a,
#access > div > ul > li.current-menu-ancestor > a,
<?php /* #access .sub-menu, #access .children, */ ?>
.bravada-over-menu .header-fixed.site-header-bottom #access > div > ul > li > a {
color: <?php echo esc_html( $theme_activeitemtext ) ?>;
}
#access ul.children > li.current_page_item > a,
#access ul.sub-menu > li.current-menu-item > a,
#access ul.children > li.current_page_ancestor > a,
#access ul.sub-menu > li.current-menu-ancestor > a {
opacity: 0.95;
}
#access > div > ul ul > li a:not(:only-child)::after {
border-left-color: <?php echo esc_html( $theme_submenubackground ) ?>;
}
#access > div > ul > li > ul::before {
border-bottom-color: <?php echo esc_html( $theme_submenubackground ) ?>;
}
#access ul li.special1 > a {
background-color: <?php echo esc_html( cryout_hexdiff( $theme_menubackground, 15 ) ); ?>;
}
#access ul li.special2 > a {
background-color: <?php echo esc_html( $theme_menutext ); ?>;
color: <?php echo esc_html( $theme_menubackground ) ?>;
}
#access ul li.accent1 > a {
background-color: <?php echo esc_html( $theme_accent1 ); ?>;
color: <?php echo esc_html( $theme_menubackground ) ?>;
}
#access ul li.accent2 > a {
background-color: <?php echo esc_html( $theme_accent2 ); ?>;
color: <?php echo esc_html( $theme_menubackground ) ?>;
}
#access ul li.accent1 > a:hover,
#access ul li.accent2 > a:hover {
color: <?php echo esc_html( $theme_menubackground ) ?>;
}
#access > div > ul > li.accent1 > a > span::before,
#access > div > ul > li.accent2 > a > span::before {
background-color: <?php echo esc_html( $theme_menubackground ) ?>;
}
article.hentry,
body:not(.blog):not(.page-template-template-blog):not(.archive):not(.search) #container:not(.bravada-landing-page) .main,
body.bravada-boxed-layout:not(.bravada-landing-page) #container {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.pagination span {
color: <?php echo esc_html( $theme_accent2 ); ?>;
}
.pagination a:hover {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
color: <?php echo esc_html( $theme_contentbackground) ?>;
}
#header-overlay,
.lp-staticslider::after,
.seriousslider-theme .item::after {
background-color: <?php echo esc_html( $theme_overlaybackground1 ); ?>;
background: -webkit-linear-gradient( <?php echo absint( $theme_overlayangle - 90 ) . 'deg, ' . esc_html( $theme_overlaybackground1 ) . ' ' . absint( $theme_overlaybackgroundposition1 ) . '%, ' . esc_html( $theme_overlaybackground2 ) . ' ' . absint( $theme_overlaybackgroundposition2 ) . '%' ;?>);
background: linear-gradient( <?php echo absint( $theme_overlayangle ) . 'deg, ' . esc_html( $theme_overlaybackground1 ) . ' ' . absint( $theme_overlaybackgroundposition1 ) . '%, ' . esc_html( $theme_overlaybackground2 ) . ' ' . absint( $theme_overlaybackgroundposition2 ) . '%' ;?>);
opacity: <?php echo esc_html( $theme_overlayopacity/100 ); ?>;
pointer-events: none;
}
#header-page-title #header-page-title-inside,
#header-page-title .entry-title,
#header-page-title .entry-meta span, #header-page-title .entry-meta a, #header-page-title .entry-meta time, #header-page-title .entry-meta .icon-metas::before,
#header-page-title .byline,
#header-page-title #breadcrumbs-nav,
.lp-staticslider .staticslider-caption-inside,
.seriousslider-theme .seriousslider-caption-inside {
color: <?php echo esc_html( $theme_overlaytext ) ?>;
}
<?php if ( ! is_rtl() ):
if ( $theme_sitelayout == '2cSr' || $theme_sitelayout == '2cSl' || $theme_sitelayout == '3cSs' ) { ?> <?php }
if ( $theme_sitelayout == '3cSr' ) { ?>
#secondary { margin-left: 0; }
#primary { padding-left: 3%; padding-right: 0; }
<?php } if ( $theme_sitelayout == '3cSl' ) { ?>
#secondary { padding-right: 3%; padding-left: 0; }
#primary { margin-right: 0; }
<?php }
endif; ?>
<?php if ( is_rtl() ):
if ( $theme_sitelayout == '2cSr' || $theme_sitelayout == '2cSl' || $theme_sitelayout == '3cSs' ) { ?><?php }
if ( $theme_sitelayout == '3cSr' ) { ?>
body #secondary { margin-right: 0; }
body #primary { padding-right: 3%; padding-left: 0; }
<?php } if ( $theme_sitelayout == '3cSl' ) { ?>
body #secondary { padding-left: 3%; padding-right: 3%; }
body #primary { margin-left: 0; }
<?php }
endif; ?>
<?php if ( ! empty( $theme_primarybackground ) ) { ?>
#primary .widget-container {
background-color: <?php echo esc_html( $theme_primarybackground ) ?>;
border-color: <?php echo esc_html (cryout_hexdiff ($theme_primarybackground, 17 )) ?>;
padding: 1.5em 2.5em;
}
@media (max-width: 1024px) {
.cryout #container #primary .widget-container {
padding: 1em;
}
}
<?php } ?>
<?php if ( ! empty( $theme_secondarybackground ) ) { ?>
#secondary .widget-container {
background-color: <?php echo esc_html( $theme_secondarybackground ) ?>;
border-color: <?php echo esc_html (cryout_hexdiff ($theme_secondarybackground, 17 )) ?>;
padding: 1.5em 2.5em;
}
@media (max-width: 1024px) {
.cryout #container #secondary .widget-container {
padding: 1em;
}
}
<?php } ?>
#colophon,
#footer {
background-color: <?php echo esc_html( $theme_footerbackground ) ?>;
color: <?php echo esc_html( $theme_footertext ) ?>;
}
.post-thumbnail-container .featured-image-overlay::before {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
background: -webkit-gradient(linear, left top, left bottom, from(<?php echo esc_html( $theme_accent1 ) ?>), to(<?php echo esc_html( $theme_accent2 ) ?>));
background: linear-gradient(to bottom, <?php echo esc_html( $theme_accent1 ) ?>, <?php echo esc_html( $theme_accent2 ) ?>);
}
.post-thumbnail-container .featured-image-overlay::after {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
background: -webkit-gradient(linear, left top, left bottom, from(<?php echo esc_html( $theme_accent1 ) ?>), to(<?php echo esc_html( $theme_accent2 ) ?>));
background: linear-gradient(to bottom, <?php echo esc_html( $theme_accent2 ) ?>, <?php echo esc_html( $theme_accent1 ) ?>);
}
.main #content-masonry .post-thumbnail-container:hover + .entry-after-image .entry-title a {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
@media (max-width: 720px) {
.bravada-magazine-one .main #content-masonry .post-thumbnail-container + .entry-after-image {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
}
.entry-title a:active,
.entry-title a:hover {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
span.entry-format {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.main #content-masonry .format-link .entry-content a {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.main #content-masonry .format-link::after {
color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.cryout article.hentry.format-image,
.cryout article.hentry.format-audio,
.cryout article.hentry.format-video {
background-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 0 ) ) ?>;
}
.format-aside,
.format-quote {
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>;
}
.single .author-info {
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>;
}
.entry-content h5,
.entry-content h6,
.lp-text-content h5,
.lp-text-content h6 {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.entry-content blockquote::before,
.entry-content blockquote::after {
color: rgba(<?php echo esc_html( cryout_hex2rgb( $theme_sitetext ) ) ?>,0.2);
}
.entry-content h1, .entry-content h2,
.entry-content h3, .entry-content h4,
.lp-text-content h1, .lp-text-content h2,
.lp-text-content h3, .lp-text-content h4 {
color: <?php echo esc_html( $theme_headingstext ) ?>;
}
.entry-title,
.page-title {
color: <?php echo esc_html( $theme_titletext ) ?>;
}
a {
color: <?php echo esc_html( $theme_accent1 ); ?>;
}
a:hover,
.widget-area a,
.entry-meta span a:hover,
.comments-link a {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.comments-link a:hover,
.widget-area a:hover {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.socials a::before,
.socials a:hover::before {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.socials a::after,
.socials a:hover::after {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.bravada-normalizedtags #content .tagcloud a {
color: <?php echo esc_html($theme_contentbackground) ?>;
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.bravada-normalizedtags #content .tagcloud a:hover {
background-color: <?php echo esc_html( $theme_accent2 ) ?>;
}
#nav-fixed i {
background-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 36 ) ) ?>;
}
#nav-fixed .nav-next:hover i,
#nav-fixed .nav-previous:hover i {
background-color: <?php echo esc_html( $theme_accent2) ?>;
}
#nav-fixed a:hover + a,
#nav-fixed a + a:hover {
background-color: rgba(<?php echo esc_html( cryout_hex2rgb( $theme_accent2 ) ) ?>,1);
}
#nav-fixed i,
#nav-fixed span {
color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
button#toTop i::before {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
button#toTop i::after {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
<?php if( $theme_totop != 'bravada-totop-disabled' ) { ?>
@media (max-width: 800px) {
.cryout #footer-bottom .footer-inside { padding-top: 2.5em; }
.cryout .footer-inside a#toTop {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
color: <?php echo esc_html( $theme_sitebackground ) ?>;
}
.cryout .footer-inside a#toTop:hover { opacity: 0.8;}
}
<?php } ?>
.entry-meta .icon-metas:before {
color: <?php echo esc_html( cryout_hexdiff( $theme_sitetext, -69) ) ?>;
}
#site-title span a::before {
width: calc(100% - <?php echo floatval($theme_titleaccent) ?>em);
}
.bravada-caption-one .main .wp-caption .wp-caption-text {
border-bottom-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>;
}
.bravada-caption-two .main .wp-caption .wp-caption-text {
background-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 10 ) ) ?>;
}
.bravada-image-one .entry-content img[class*="align"],
.bravada-image-one .entry-summary img[class*="align"],
.bravada-image-two .entry-content img[class*='align'],
.bravada-image-two .entry-summary img[class*='align'] {
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>;
}
.bravada-image-five .entry-content img[class*='align'],
.bravada-image-five .entry-summary img[class*='align'] {
border-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.entry-summary .excerpt-fade {
background-image: linear-gradient(to left, <?php echo esc_html( $theme_contentbackground ) ?>, transparent);
}
/* diffs */
span.edit-link a.post-edit-link,
span.edit-link a.post-edit-link:hover,
span.edit-link .icon-edit:before {
color: <?php echo esc_html( $theme_sitetext ) ?>;
}
.searchform {
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 20 ) ) ?>;
}
.entry-meta span,
.entry-meta a,
.entry-utility span,
.entry-utility a,
.entry-meta time,
#breadcrumbs-nav {
color: <?php echo esc_html( cryout_hexdiff( $theme_sitetext, -55) ) ?>;
}
.main #content-masonry .post-thumbnail-container span.bl_categ,
.main #content-masonry .post-thumbnail-container .comments-link {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.footermenu ul li span.sep {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.entry-meta a::after,
.entry-utility a::after {
background: <?php echo esc_html( $theme_accent2 ) ?>;
}
#header-page-title .category-metas a {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.entry-meta .author:hover .avatar {
border-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.animated-title span.cry-single.animated-letter,
.animated-title span.cry-double.animated-letter {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
span.entry-sticky {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
#commentform {
<?php if ( $theme_comformwidth ) { echo 'max-width:' . esc_html( $theme_comformwidth ) . 'px;'; } ?>
}
code,
#nav-below .nav-previous a::before,
#nav-below .nav-next a::before {
background-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>;
}
#nav-below .nav-previous::after,
#nav-below .nav-next::after {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
pre,
.comment-author {
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>;
}
.commentlist .comment-area,
.commentlist .pingback {
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 12) ) ?>;
}
.commentlist img.avatar {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.comment-meta a {
color: <?php echo esc_html( cryout_hexdiff( $theme_sitetext, -79) ) ?>;
}
.commentlist .reply a,
.commentlist .author-name,
.commentlist .author-name a {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.commentlist .reply a:hover {
background-color: <?php echo esc_html( $theme_accent2 ) ?>;
}
select,
input[type],
textarea {
color: <?php echo esc_html( $theme_sitetext ) ?>;
background-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 10 ) ) ?>;
}
.sidey select {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.searchform .searchsubmit {
background: <?php echo esc_html( $theme_accent1 ) ?>;
}
.searchform:hover .searchsubmit {
background: <?php echo esc_html( $theme_accent2 ) ?>;
}
.searchform input[type="search"],
.searchform input[type="search"]:hover,
.searchform input[type="search"]:focus {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
input[type]:hover, textarea:hover, select:hover,
input[type]:focus, textarea:focus, select:focus {
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 35 ) ) ?>;
}
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
background-color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea {
background-color: <?php echo esc_html(cryout_hexdiff( $theme_contentbackground, 15 ) ) ?>;
}
.comment-form-author input:hover,
.comment-form-email input:hover,
.comment-form-url input:hover,
.comment-form-comment textarea:hover,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment textarea:focus {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.comment-form-author,
.comment-form-email {
border-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
hr {
background-color: <?php echo esc_html(cryout_hexdiff($theme_contentbackground, 15 ) ) ?>;
}
.cryout-preloader-inside .bounce1 {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.cryout-preloader-inside .bounce2 {
background-color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.page-header.pad-container {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
/* gutenberg */
.wp-block-image.alignwide {
margin-left: calc( ( <?php echo intval($theme_elementpadding * 1.50) ?>% + 4em ) * -1 );
margin-right: calc( ( <?php echo intval($theme_elementpadding * 1.50) ?>% + 4em ) * -1 );
}
.wp-block-image.alignwide img {
width: calc( <?php echo intval( 100 + $theme_elementpadding * 3 ) ?>% + 8em );
max-width: calc( <?php echo intval( 100 + $theme_elementpadding * 3 ) ?>% + 8em );
}
.has-accent-1-color, .has-accent-1-color:hover {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.has-accent-2-color, .has-accent-2-color:hover {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.has-headings-color, .has-headings-color:hover {
color: <?php echo esc_html( $theme_headingstext ) ?>;
}
.has-sitetext-color, .has-sitetext-color:hover {
color: <?php echo esc_html( $theme_sitetext ) ?>;
}
.has-sitebg-color, .has-sitebg-color:hover {
color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.has-accent-1-background-color {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.has-accent-2-background-color {
background-color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.has-headings-background-color {
background-color: <?php echo esc_html( $theme_headingstext ) ?>;
}
.has-sitetext-background-color {
background-color: <?php echo esc_html( $theme_sitetext ) ?>;
}
.has-sitebg-background-color {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.has-small-font-size {
font-size: <?php echo intval( intval($theme_fgeneralsize) / 1.2 ) ?>px;
}
.has-regular-font-size {
font-size: <?php echo intval( intval($theme_fgeneralsize) * 1.0 ) ?>px;
}
.has-large-font-size {
font-size: <?php echo intval( intval($theme_fgeneralsize) * 1.2 ) ?>px;
}
.has-larger-font-size {
font-size: <?php echo intval( intval($theme_fgeneralsize) * 1.44 ) ?>px;
}
.has-huge-font-size {
font-size: <?php echo intval( intval($theme_fgeneralsize) * 1.44 ) ?>px;
}
/* woocommerce */
.woocommerce-thumbnail-container .woocommerce-buttons-container a,
.woocommerce-page #respond input#submit.alt, .woocommerce a.button.alt,
.woocommerce-page button.button.alt, .woocommerce input.button.alt,
.woocommerce #respond input#submit, .woocommerce a.button,
.woocommerce button.button, .woocommerce input.button {
<?php /* font-family: <?php cryout_font_select( $theme_fheadings, $theme_fheadingsgoogle, true ) ?>; */ ?>
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3,
.woocommerce div.product .product_title,
.woocommerce .woocommerce-tabs h2 {
font-family: <?php cryout_font_select( $theme_fgeneral, $theme_fgeneralgoogle, true ) ?>;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3,
.woocommerce .star-rating {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.woocommerce #respond input#submit, .woocommerce a.button,
.woocommerce button.button, .woocommerce input.button {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
color: <?php echo esc_html( $theme_contentbackground ) ?>;
line-height: <?php echo esc_html( floatval($theme_lineheight) ) ?>;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover,
.woocommerce button.button:hover, .woocommerce input.button:hover {
background-color: <?php echo esc_html( cryout_hexdiff( $theme_accent2, 0 ) ) ?>;
color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.woocommerce-page #respond input#submit.alt, .woocommerce a.button.alt,
.woocommerce-page button.button.alt, .woocommerce input.button.alt {
color: <?php echo esc_html( $theme_accent1 ) ?>;
line-height: <?php echo esc_html( floatval($theme_lineheight) ) ?>;
}
.woocommerce-page #respond input#submit.alt::after, .woocommerce a.button.alt::after,
.woocommerce-page button.button.alt::after, .woocommerce input.button.alt::after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
outline: 2px solid;
-webkit-transition: .3s ease all;
transition: .3s ease all;
}
.woocommerce-page #respond input#submit.alt:hover::after, .woocommerce a.button.alt:hover::after,
.woocommerce-page button.button.alt:hover::after, .woocommerce input.button.alt:hover::after {
opacity: 0;
-webkit-transform: scale(1.2, 1.4);
transform: scale(1.2, 1.4);
}
.woocommerce-page #respond input#submit.alt:hover, .woocommerce a.button.alt:hover,
.woocommerce-page button.button.alt:hover, .woocommerce input.button.alt:hover {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
border-bottom-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt[disabled]:disabled,
.woocommerce #respond input#submit.alt[disabled]:disabled:hover,
.woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt[disabled]:disabled,
.woocommerce a.button.alt[disabled]:disabled:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt[disabled]:disabled,
.woocommerce button.button.alt[disabled]:disabled:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt[disabled]:disabled,
.woocommerce input.button.alt[disabled]:disabled:hover {
background-color: <?php echo esc_html( $theme_accent2 ) ?>;
color: #fff;
}
.woocommerce div.product .product_title,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
color: <?php echo esc_html( cryout_hexdiff( $theme_accent2, 0 ) ); ?>
}
.woocommerce .quantity .qty {
background-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>;
}
.woocommerce-checkout #payment {
background: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 10 ) ) ?>;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
background: <?php echo esc_html( cryout_hexdiff( $theme_accent2, 0 ) ) ?>;
}
.woocommerce div.product .products > h2,
.woocommerce .cart-collaterals h2 {
font-family: <?php cryout_font_select( $theme_fwtitle, $theme_fwtitlegoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_fwtitlesize ) ?>em; font-weight: <?php echo esc_html( $theme_fwtitleweight ) ?>;
line-height: <?php echo esc_html( (float) $theme_fwtitlelineheight ) ?>;
<?php echo ( ! empty( $theme_fwtitlevariant ) ) ? 'text-transform: ' . esc_attr( $theme_fwtitlevariant ) : ''; ?>;
}
.woocommerce div.product .products > h2::after,
.woocommerce .cart-collaterals h2::after {
background-color: <?php echo esc_html( $theme_accent1 )?> ;
}
<?php
/********** LAYOUT **********/
?>
.main .entry-content,
.main .entry-summary {
text-align: <?php echo esc_html( $theme_textalign ) ?>;
}
.main p,
.main ul,
.main ol,
.main dd,
.main pre,
.main hr {
margin-bottom: <?php echo esc_html( $theme_paragraphspace ) ?>em;
}
.main .entry-content p {
text-indent: <?php echo esc_html( $theme_parindent ) ?>em;
}
.main a.post-featured-image {
background-position: <?php echo esc_html( $theme_falign ) ?>;
}
#header-widget-area {
width: <?php echo esc_html( $theme_headerwidgetwidth ) ?>;
<?php switch ( esc_html( $theme_headerwidgetalign ) ) {
case 'left': ?> left: 10px; <?php break;
case 'right': ?> right: 10px; <?php break;
case 'center': ?> left: calc(50% - <?php echo esc_html( $theme_headerwidgetwidth ) ?> / 2); <?php break;
} ?>
}
.bravada-striped-table .main thead th,
.bravada-bordered-table .main thead th,
.bravada-striped-table .main td, .bravada-striped-table .main th,
.bravada-bordered-table .main th, .bravada-bordered-table .main td {
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 22 ) ) ?>;
}
.bravada-clean-table .main th,
.bravada-striped-table .main tr:nth-child(even) td,
.bravada-striped-table .main tr:nth-child(even) th {
background-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 7 ) ) ?>;
}
<?php if ( $theme_fpost && ( $theme_fheight > 0 ) ) { ?>
.bravada-cropped-featured .main .post-thumbnail-container {
height: <?php echo esc_html( $theme_fheight ) ?>px;
}
.bravada-responsive-featured .main .post-thumbnail-container {
max-height: <?php echo esc_html( $theme_fheight ) ?>px;
height: auto;
}
<?php } ?>
<?php
/********** SOME CONDITIONAL CLEANUP **********/
if ( empty( $theme_contentbackground ) ) { ?> #primary, #colophon { border: 0; box-shadow: none; } <?php }
/********** ELEMENTS PADDING **********/
?>
article.hentry .article-inner,
#content-masonry article.hentry .article-inner {
padding: <?php echo esc_html( $theme_elementpadding ) ?>%;
}
<?php if ( $theme_elementpadding ) { ?>
#breadcrumbs-nav,
body.woocommerce.woocommerce-page #breadcrumbs-nav,
.pad-container {
padding: <?php echo esc_html( $theme_elementpadding ) ?>%;
}
.bravada-magazine-two.archive #breadcrumbs-nav,
.bravada-magazine-two.archive .pad-container,
.bravada-magazine-two.search #breadcrumbs-nav,
.bravada-magazine-two.search .pad-container {
padding: <?php echo esc_html( $theme_elementpadding/2 ) ?>%;
}
.bravada-magazine-three.archive #breadcrumbs-nav,
.bravada-magazine-three.archive .pad-container,
.bravada-magazine-three.search #breadcrumbs-nav,
.bravada-magazine-three.search .pad-container {
padding: <?php echo esc_html( $theme_elementpadding/3 ) ?>%;
}
<?php } // bravada_elementpadding
/********** HEADER LAYOUT **********/
?>
.site-header-bottom {
height:<?php echo intval( $theme_menuheight ) ?>px;
}
.site-header-bottom .site-header-inside {
height:<?php echo intval( $theme_menuheight ) ?>px;
}
.menu-search-animated,
.menu-burger,
#sheader-container,
.identity,
#nav-toggle {
height: <?php echo intval( $theme_menuheight ) ?>px;
line-height: <?php echo intval( $theme_menuheight ) ?>px;
}
#access div > ul > li > a,
#access ul li[class*="icon"]::before {
line-height:<?php echo intval( $theme_menuheight ) ?>px;
}
nav#mobile-menu {
padding-top: <?php echo esc_html( $theme_menuheight + 10 ) ?>px;
}
body.admin-bar nav#mobile-menu {
padding-top: <?php echo esc_html( $theme_menuheight + 10 + 32 ) ?>px;
}
#branding {
height: <?php echo intval( $theme_menuheight ) ?>px;
}
.bravada-responsive-headerimage #masthead #header-image-main-inside {
max-height: <?php echo esc_html( $theme_headerheight ) ?>px;
}
.bravada-cropped-headerimage #masthead #header-image-main-inside {
height: <?php echo esc_html( $theme_headerheight ) ?>px;
}
<?php if ( is_front_page() && function_exists( 'the_custom_header_markup' ) && has_header_video() ) { ?>
.bravada-responsive-headerimage #masthead #header-image-main-inside {
max-height: none;
}
.bravada-cropped-headerimage #masthead #header-image-main-inside {
height: auto;
}
<?php } ?>
<?php if ( $theme_sitetagline ) {?>
#site-description { display: block; }
<?php } ?>
<?php if (! display_header_text() ) { ?>
#site-text { display: none; }
<?php }; ?>
<?php if ( esc_html( $theme_menuposition ) ) { ?>
#header-widget-area { top: <?php echo intval( $theme_menuheight )+10 ?>px; }
<?php }; ?>
<?php
$header_image = bravada_header_image_url();
// this check is done when applying the over-menu body class
/* if ( empty( $header_image ) ) { ?>
@media (min-width: 1152px) {
<?php if ( esc_html( $theme_menuposition ) ) { ?>
body:not(.bravada-landing-page) #site-wrapper {
margin-top: <?php echo intval( $theme_menuheight ) ?>px;
}
<?php } ?>
body:not(.bravada-landing-page) #masthead {
border-bottom: 1px solid <?php echo esc_html( cryout_hexdiff( $theme_menubackground, 17 ) ) ?>;
}
}
<?php }; */
/********** lANDING PAGE **********/
?>
.bravada-landing-page .lp-blocks-inside,
.bravada-landing-page .lp-boxes-inside,
.bravada-landing-page .lp-text-inside,
.bravada-landing-page .lp-posts-inside,
.bravada-landing-page .lp-page-inside,
.bravada-landing-page .lp-section-header,
.bravada-landing-page .content-widget {
max-width: <?php echo esc_html( $theme_sitewidth ) ?>px;
}
@media (min-width: 960px) {
.bravada-landing-page .lp-blocks.lp-blocks1 .lp-blocks-inside {
max-width: calc(<?php echo esc_html( $theme_sitewidth ) ?>px - 5em);
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
}
#header-page-title #header-page-title-inside,
.lp-staticslider .staticslider-caption,
.seriousslider.seriousslider-theme .seriousslider-caption {
max-width: <?php echo esc_html($theme_sitewidth) ?>px;
max-width: 85%;
padding-top: <?php echo esc_html($theme_menuheight) + 10 ?>px;
}
@media (max-width: 1024px) {
#header-page-title #header-page-title-inside,
.lp-staticslider .staticslider-caption,
.seriousslider.seriousslider-theme .seriousslider-caption {
max-width: 100%;
}
}
.bravada-landing-page .content-widget {
margin: 0 auto;
}
a.staticslider-button,
.seriousslider-theme .seriousslider-caption-buttons a {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
a.staticslider-button:hover,
.seriousslider-theme .seriousslider-caption-buttons a:hover {
background-color: <?php echo esc_html( $theme_accent2 ) ?>;
}
<?php if ( $theme_lpslider == 3 ) { ?>
.bravada-landing-page #header-image-main-inside { display: block; }
<?php } ?>
<?php if ( $theme_headingsaccent > 0 ) { ?>
.widget-title,
#comments-title,
#reply-title,
.related-posts .related-main-title,
.main .page-title,
#nav-below em,
.lp-text .lp-text-title,
.lp-boxes-animated .lp-box-title {
background-image: linear-gradient(to bottom, rgba(<?php echo esc_html( cryout_hex2rgb( $theme_accent1 ) ) ?>,0.4) 0%, rgba(<?php echo esc_html( cryout_hex2rgb( $theme_accent1 ) ) ?>,0.4) 100%);
}
<?php } ?>
<?php if ( $theme_headingsaccent == 2 ) { ?>
.entry-content h2, .entry-content h4 {
text-decoration-color: rgba(<?php echo esc_html( cryout_hex2rgb( $theme_accent1 ) ) ?>,0.3);
}
.entry-content h3 {
text-decoration-color: rgba(<?php echo esc_html( cryout_hex2rgb( $theme_accent2 ) ) ?>,0.3);
}
.entry-content h2, .entry-content h3, .entry-content h4 {
text-decoration-line: underline;
text-decoration-thickness: 0.4em;
text-decoration-skip-ink: none;
text-underline-offset: -0.2em;
}
<?php } ?>
.lp-slider {
background-color: <?php echo esc_html( $theme_lpbannerbg ) ?>;
}
.lp-blocks {
background-color: <?php echo esc_html( $theme_lpblocksbg ) ?>;
}
.lp-boxes {
background-color: <?php echo esc_html( $theme_lpboxesbg ) ?>;
}
.lp-boxes .lp-boxes-inside::before {
background-color: <?php echo esc_html( $theme_accent1 )?> ;
}
.lp-boxes ~ .lp-boxes .lp-boxes-inside::before {
background-color: <?php echo esc_html( $theme_accent2 )?> ;
}
.lp-boxes ~ .lp-boxes ~ .lp-boxes .lp-boxes-inside::before {
background-color: <?php echo esc_html( $theme_accent1 )?> ;
}
.lp-text {
background-color: <?php echo esc_html( $theme_lptextsbg ) ?>;
}
#lp-posts,
#lp-page {
background-color: <?php echo esc_html( $theme_lppostsbg ) ?>;
}
.lp-block {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.lp-block i[class^="blicon"]::before {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.lp-block .lp-block-title,
.lp-text .lp-text-title {
color: <?php echo esc_html( $theme_headingstext ) ?>;
}
<?php if ( $theme_headingsaccent > 0 ) { ?>
.lp-block .lp-block-title::after {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
<?php } ?>
.lp-blocks1 .lp-block i[class^="blicon"] +i[class^="blicon"]::before {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.lp-block-readmore {
color: <?php echo esc_html( cryout_hexdiff( $theme_sitetext, -80 ) ) ?>;
}
.lp-block-readmore:hover {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.lp-text-title {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.lp-text-inside .lp-text-background {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.lp-boxes .lp-box {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
.lp-boxes-animated .box-overlay {
background-color: <?php echo esc_html( $theme_accent2 ) ?>;
}
.lp-boxes-animated .lp-box-readmore {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.lp-boxes-static .box-overlay {
background-color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.lp-box-title {
color: <?php echo esc_html( $theme_headingstext ) ?>;
}
.lp-box-title:hover {
color: <?php echo esc_html( $theme_accent1 ) ?>;
}
.lp-boxes-1 .lp-box .lp-box-image {
height: <?php echo intval ( (int) $theme_lpboxheight1 ) ?>px;
}
#cryout_ajax_more_trigger,
.lp-port-readmore {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
<?php
for ($i=1; $i<=8; $i++) { ?>
.lpbox-rnd<?php echo absint( $i ) ?> { background-color: <?php echo esc_html( cryout_hexdiff( $theme_lpboxesbg, 50+5*absint( $i ) ) ) ?>; }
<?php }
return apply_filters( 'bravada_custom_styles', preg_replace('/(([\w-]+):\s*?;?\s*?([;}]))/i', '', ob_get_clean() ) );
} // bravada_custom_styles()
/*
* Dynamic styles for the admin MCE Editor
*/
function bravada_editor_styles() {
$options = cryout_get_option();
extract($options);
switch ( $theme_sitelayout ) {
case '1c':
$theme_primarysidebar = $theme_secondarysidebar = 0;
break;
case '2cSl':
$theme_secondarysidebar = 0;
break;
case '2cSr':
$theme_primarysidebar = 0;
break;
default:
break;
}
$content_body = floor( (int) $theme_sitewidth - ( (int) $theme_primarysidebar + (int) $theme_secondarysidebar ) );
ob_start();
if ( function_exists( 'register_block_type' ) && is_admin() ) {
$scope = '.wp-block';
} else if ( ! is_admin() ) {
$scope = '';
} ?>
/* Standard blocks */
body.mce-content-body, .wp-block { max-width: <?php echo esc_html( $content_body ); ?>px; }
/* Width of "wide" blocks */
.wp-block[data-align="wide"] { max-width: 1080px; }
/* Width of "full-wide" blocks */
.wp-block[data-align="full"] { max-width: none; }
body.mce-content-body, .block-editor .edit-post-visual-editor {
background-color: <?php echo esc_html( $theme_contentbackground ) ?>;
}
body.mce-content-body,
.wp-block {
max-width: <?php echo esc_html( $content_body ) ?>px;
font-family: <?php cryout_font_select( $theme_fgeneral, $theme_fgeneralgoogle, true ) ?>;
font-size: <?php echo esc_html( $theme_fgeneralsize ) ?>px;
line-height: <?php echo esc_html( floatval($theme_lineheight) ) ?>;
color: <?php echo esc_html( $theme_sitetext ) ?>;
}
.block-editor .editor-post-title__block .editor-post-title__input {
color: <?php echo esc_html( $theme_accent2 ) ?>;
}
<?php
$font_root = 2.6; // headings font size root
for ( $i = 1; $i <= 6; $i++ ) {
$size = round( ( $font_root - ( 0.27 * $i ) ) * ( preg_replace( "/[^\d]/", "", esc_html( $theme_fheadingssize ) ) / 100), 5 ); ?>
h<?php echo absint( $i ) ?> { font-size: <?php echo esc_html( $size ) ?>em; }
<?php } //for ?>
%%scope%% h1, %%scope%% h2, %%scope%% h3, %%scope%% h4, %%scope%% h5, %%scope%% h6 {
font-family: <?php cryout_font_select( $theme_fheadings, $theme_fheadingsgoogle, true ) ?>;
font-weight: <?php echo esc_html( $theme_fheadingsweight ) ?>;
color: <?php echo esc_html( $theme_headingstext ) ?>;
}
%%scope%% blockquote::before, %%scope%% blockquote::after {
color: rgba(<?php echo esc_html( cryout_hex2rgb( $theme_sitetext ) ) ?>,0.1);
}
%%scope%% a { color: <?php echo esc_html( $theme_accent1 ); ?>; }
%%scope%% a:hover { color: <?php echo esc_html( $theme_accent2 ); ?>; }
%%scope%% code { background-color: <?php echo esc_html(cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>; }
%%scope%% pre { border-color: <?php echo esc_html(cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>; }
%%scope%% select,
%%scope%% input[type],
%%scope%% textarea {
color: <?php echo esc_html( $theme_sitetext ); ?>;
background-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 10 ) ) ?>;
border-color: <?php echo esc_html( cryout_hexdiff( $theme_contentbackground, 17 ) ) ?>
}
%%scope%% p, %%scope%% ul, %%scope%% ol, %%scope%% dd, %%scope%% pre, %%scope%% hr {
margin-bottom: <?php echo floatval( $theme_paragraphspace ) ?>em;
}
%%scope%% p { text-indent: <?php echo floatval( $theme_parindent ) ?>em; }
<?php // end </style>
return apply_filters( 'bravada_editor_styles', str_replace( '%%scope%%', $scope, ob_get_clean() ) );
} // bravada_editor_styles()
/* backwards wrapper for bravada_editor_styles() to output the editor style ajax request */
function bravada_editor_styles_output() {
header( 'Content-type: text/css' );
echo bravada_editor_styles();
exit();
} // bravada_editor_styles_output()
/* theme identification for the customizer */
function cryout_customize_theme_identification() {
ob_start();
?> #customize-theme-controls [id*="cryout-"] h3.accordion-section-title::before { content: "BR"; border: 1px solid #E9B44C; color: #E9B44C; } <?php
return ob_get_clean();
} // cryout_customize_theme_identification()
/* FIN */