hi @drashok,
oops! yes it's living-journal not "live" :)
#1. if you wish to call the parent stylesheet - style.css - using functions.php in the child theme, I would suggest the following code:
function livingjournal_child_load_css(){
wp_register_style('livingjournal_parent', get_template_directory_uri() . '/style.css');
wp_enqueue_style('livingjournal_child_style', get_stylesheet_uri()', array('livingjournal_parent'));
}
add_action('wp_enqueue_scripts', 'livingjournal_child_load_css');
no need to put @import in the child style.css file.
#2. Inside the theme folder, there is a file called changelog.txt. This contains the summaries of the updates.
#3. Thank you for the compliment. But, no, we can't use css3 since the design we require cannot be duplicated using css3 alone.*