'; extract( apply_filters( 'hoot_custom_css_settings', $settings, 'lite' ) ); /*** Add Dynamic CSS ***/ /* Hoot Grid */ hybridextend_add_css_rule( array( 'selector' => '.hgrid', 'property' => 'max-width', 'value' => $grid_width, 'idtag' => 'grid_width', ) ); /* Base Typography and HTML */ hybridextend_add_css_rule( array( 'selector' => 'a', 'property' => 'color', 'value' => $accent_color, 'idtag' => 'accent_color', ) ); // Overridden in premium hybridextend_add_css_rule( array( 'selector' => '.accent-typo', 'property' => array( // property => array( value, idtag, important, typography_reset ), 'background' => array( $accent_color, 'accent_color' ), 'color' => array( $accent_font, 'accent_font' ), ), ) ); hybridextend_add_css_rule( array( 'selector' => '.invert-typo', 'property' => 'color', 'value' => $content_bg_color, ) ); hybridextend_add_css_rule( array( 'selector' => '.enforce-typo', 'property' => 'background', 'value' => $content_bg_color, ) ); hybridextend_add_css_rule( array( 'selector' => 'input[type="submit"], #submit, .button', 'property' => array( // property => array( value, idtag, important, typography_reset ), 'background' => array( $accent_color, 'accent_color' ), 'color' => array( $accent_font, 'accent_font' ), ), ) ); hybridextend_add_css_rule( array( 'selector' => 'input[type="submit"]:hover, #submit:hover, .button:hover', 'property' => array( // property => array( value, idtag, important, typography_reset ), 'background' => array( $accent_color_dark ), 'color' => array( $accent_font, 'accent_font' ), ), ) ); /* Layout */ hybridextend_add_css_rule( array( 'selector' => 'body', 'property' => 'background', 'idtag' => 'background', ) ); if ( $site_layout == 'boxed' ) { hybridextend_add_css_rule( array( 'selector' => '#page-wrapper', 'property' => 'background', 'value' => $box_background_color, 'idtag' => 'box_background_color', ) ); } /* Header (Topbar, Header, Main Nav Menu) */ // Text Logo if ( 'cursive' != $logo_fontface ) { // Override @logoFontFamily if selected in options hybridextend_add_css_rule( array( 'selector' => '#site-title', 'property' => array( // property => array( value, idtag, important, typography_reset ), 'font-family' => array( '"Open Sans", sans-serif' ), ), ) ); // Removed in premium } /* Header (Topbar, Header, Main Nav Menu) */ // Logo (with icon) if ( intval( $site_title_icon_size ) ) { hybridextend_add_css_rule( array( 'selector' => '.site-logo-with-icon #site-title i', 'property' => 'font-size', 'value' => $site_title_icon_size, 'idtag' => 'site_title_icon_size', ) ); } if ( $site_title_icon && intval( $site_title_icon_size ) ) { hybridextend_add_css_rule( array( 'selector' => '.site-logo-with-icon #site-title', 'property' => 'margin-left', 'value' => $site_title_icon_size, 'idtag' => 'site_title_icon_size', ) ); } /* Header (Topbar, Header, Main Nav Menu) */ // Mixed/Mixedcustom Logo (with image) if ( !empty( $logo_image_width ) ) : hybridextend_add_css_rule( array( 'selector' => '.site-logo-mixed-image img', 'property' => 'max-width', 'value' => $logo_image_width, 'idtag' => 'logo_image_width', ) ); endif; /* Header (Topbar, Header, Main Nav Menu) */ // Custom Logo if ( 'custom' == $logo || 'mixedcustom' == $logo ) { if ( is_array( $logo_custom ) && !empty( $logo_custom ) ) { $lcount = 1; foreach ( $logo_custom as $logo_custom_line ) { if ( !$logo_custom_line['sortitem_hide'] && !empty( $logo_custom_line['size'] ) ) { hybridextend_add_css_rule( array( 'selector' => '#site-logo-custom .site-title-line' . $lcount . ',#site-logo-mixedcustom .site-title-line' . $lcount, 'property' => 'font-size', 'value' => $logo_custom_line['size'], ) ); } if ( $lcount == 1 && !empty( $logo_custom_line['size'] ) ) { hybridextend_add_css_rule( array( 'selector' => '.site-logo-custom .site-title i', 'property' => 'line-height', 'value' => $logo_custom_line['size'], ) ); } $lcount++; } } } /* Main #Content */ hybridextend_add_css_rule( array( 'selector' => '.entry-footer .entry-byline', 'property' => 'color', 'value' => $accent_color, 'idtag' => 'accent_color', ) ); // Overridden in premium /* Light Slider */ hybridextend_add_css_rule( array( 'selector' => '.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a', 'property' => 'background-color', 'value' => $accent_color, 'idtag' => 'accent_color', ) ); /* Frontpage */ hybridextend_add_css_rule( array( 'selector' => '.frontpage-area.module-bg-accent', 'property' => 'background-color', 'value' => $accent_color, 'idtag' => 'accent_color', ) ); // Set as inline CSS // foreach ( $wtmodule_bg as $wtmname ) { // if ( $wtm_sectionbg[ $wtmname . '_type'] == 'image' && !empty( $wtm_sectionbg[ $wtmname . '_image'] ) && empty( $wtm_sectionbg[ $wtmname . '_parallax'] ) ) { // hybridextend_add_css_rule( array( // 'selector' => "#frontpage-{$wtmname}", // 'property' => 'background-image', // 'value' => $wtm_sectionbg[ $wtmname . '_image'], // 'idtag' => "frontpage_sectionbg_{$wtmname}-image", // ) ); // } // } /* Sidebars and Widgets */ hybridextend_add_css_rule( array( 'selector' => '.content-block-style4 .content-block-icon.icon-style-none', 'property' => 'color', 'value' => $accent_color, 'idtag' => 'accent_color', ) ); /* Plugins */ hybridextend_add_css_rule( array( 'selector' => '#infinite-handle span', 'property' => array( // property => array( value, idtag, important, typography_reset ), 'background' => array( $accent_color, 'accent_color' ), 'color' => array( $accent_font, 'accent_font' ), ), ) ); }