/*
	Theme Name: Hueman Pro Child
	Theme URI: http://alxmedia.se/themes/hueman/
	Description: Custom Child Theme.
	Author: EVDM
	Author URI: 
	Template: hueman-pro
	Version: 1.0.0
*/

@import url("../hueman-pro/style.css"); 

/* WP help says to use wp-enque instead of @import, and provided the following:

<?php

add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style' );
function enqueue_parent_theme_style() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}

It looks like per the documentation that code needs to be added to the parent php file, 
which seems to defeat the purpose of having a child theme, so it is commented out
of this file
*/

/* ------------------------------------------------------------------------- *
 *  Theme customization starts here
/* ------------------------------------------------------------------------- */

/*
#header {
background-image: url("http://scca-chicago.com/wp-content/images/carbon-fiber-vert-300.png");
background-position: left top;
background-repeat: repeat-x;
}
*/

.entry table td, .entry table th {text-align: left;}

/* remove UPDATED date from posts */
.updated { display: none; } 