D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sadaunjx
/
public_html
/
wp-content
/
themes
/
newsplus1
/
inc
/
Filename :
css.php
back
Copy
<?php /* Copyrights (C) Arb4Host Network */ ?> <?php function a4h_css_vars() { ?> :root { --bg-color: <?php echo a4h_options('bg_color'); ?>; --main-color: <?php echo a4h_options('main_color'); ?>; --link-color: <?php echo a4h_options('link_color'); ?>; --link-hover-color: <?php echo a4h_options('link_hover_color'); ?>; } /******************** fonts ********************/ @media (min-width: <?php echo apply_filters('a4h_filter_fonts_css_min_screen_size', '992'); ?>px) { body, .body-font { font-weight: <?php echo a4h_options('fonts')['body_font_weight']; ?>; font-size: <?php echo a4h_options('fonts')['body_font_size']; ?>px; font-family: <?php echo a4h_options('fonts')['body_font_family']; ?>; } .navigation-font { font-weight: <?php echo a4h_options('fonts')['nav_menu_font_weight']; ?>; font-size: <?php echo a4h_options('fonts')['nav_menu_font_size']; ?>px; font-family: <?php echo a4h_options('fonts')['nav_menu_font_family']; ?>; } .widget-header, .widget-header h2, .widget-header h3, .widget-header-font { font-weight: <?php echo a4h_options('fonts')['widget_header_font_weight']; ?>; font-size: <?php echo a4h_options('fonts')['widget_header_font_size']; ?>px; font-family: <?php echo a4h_options('fonts')['widget_header_font_family']; ?>; } .page-title, .page-title-font { font-weight: <?php echo a4h_options('fonts')['page_title_font_weight']; ?>; font-size: <?php echo a4h_options('fonts')['page_title_font_size']; ?>px; font-family: <?php echo a4h_options('fonts')['page_title_font_family']; ?>; } .title, .title-font { font-weight: <?php echo a4h_options('fonts')['title_font_weight']; ?>; font-size: <?php echo a4h_options('fonts')['title_font_size']; ?>px; font-family: <?php echo a4h_options('fonts')['title_font_family']; ?>; } .post-content, .post-content-font { font-weight: <?php echo a4h_options('fonts')['post_content_font_weight']; ?>; font-size: <?php echo a4h_options('fonts')['post_content_font_size']; ?>px; font-family: <?php echo a4h_options('fonts')['post_content_font_family']; ?>; } } <?php } add_action('a4h_hook_dynamic_css', 'a4h_css_vars');