/*
Theme Name:     ZeroGravity-Child
Description:    Based on ZeroGravity-Child Theme.
Author:         Papai_Imre
Template:       zerogravity

(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)

**********************************************
Override original css can not use @import!!!
**********************************************
Use own function.php under child-theme which is contain flowing code: 
	<?php
	add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
	function my_theme_enqueue_styles() {
	    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
	}	?>	;
*/
/*Override*/

body {
	/*default text color all text */
	color: black;
}

p {
  color: black;
}

.entry-title {
    font-size: 28px;
    font-size: 2rem;
    background-color: red;
	border-bottom: solid 2px green;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#91e842+0,b1ff16+72,fefffc+100&1+0,0.01+94 */
background: -moz-linear-gradient(left,  rgba(145,232,66,1) 0%, rgba(177,255,22,0.24) 72%, rgba(238,255,203,0.01) 94%, rgba(254,255,252,0.01) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(145,232,66,1) 0%,rgba(177,255,22,0.24) 72%,rgba(238,255,203,0.01) 94%,rgba(254,255,252,0.01) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(145,232,66,1) 0%,rgba(177,255,22,0.24) 72%,rgba(238,255,203,0.01) 94%,rgba(254,255,252,0.01) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#91e842', endColorstr='#03fefffc',GradientType=1 ); /* IE6-9 */


}

table, th, td  {
   border: 2px solid black; 
}
#bwg_container1_0 * {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
	margin: 0 auto;
}