/*
Theme Name: Twenty Sixteen Child
Theme URI: https://wordpress.org/themes/twentysixteen/
Template: twentysixteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
Tags: one-column,two-columns,right-sidebar,accessibility-ready,custom-background,custom-colors,custom-header,custom-menu,editor-style,featured-images,flexible-header,microformats,post-formats,rtl-language-support,sticky-post,threaded-comments,translation-ready,blog,block-patterns
Version: 3.5.1746996019
Updated: 2025-05-11 20:40:19

*/

<?php
function my_child_theme_enqueue_styles() {
    // Enqueue parent theme's stylesheet
    wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css');

    // Enqueue child theme's custom stylesheet
    wp_enqueue_style('child-style', get_stylesheet_directory_uri() . '/custom.css', array('parent-style'));
}
add_action('wp_enqueue_scripts', 'my_child_theme_enqueue_styles');
?>

<?php
function my_child_theme_inline_styles() {
    $custom_css = "
       .text_red{
	color:red;
}

.text_blue{
	color:blue;
}

.list_circle{
	list-style:circle;
}

.no_padding_margin{
	margin:none
	padding:none;
}
	
.padding_left{
	padding-left:20px;
}

.margin_left{
	margin-left:20px;
}"
  
    wp_add_inline_style('child-style', $custom_css);
}
add_action('wp_enqueue_scripts', 'my_child_theme_inline_styles');
?>