/*
Theme Name:     Customizr Child
Theme URI:      http://themesandco.com/customizr
Description:    A child theme for the Customizr WordPress theme. This child theme simply includes 2 files : style.css to add your custom css and functions.php where you can extend Customizr's core code. In order to keep your code as clean and flexible as possible, try to use Customizr's hooks API for your customizations. Do something awesome and have fun !
Author:         Nicolas Guillaume (nikeo)
Author URI:     http://themesandco.com
Template:       customizr-pro
Version:        1.0.0
*/

/* Your awesome customizations start right here !
-------------------------------------------------------------- */

/*Red Ink CSS*/

/*remove grey border around code items e.g. [instagram-feed]*/
code{
border:none;
}

/*css to remove header and footer for full page display*/
body.foom {
  
  
}
.foom .tc-header,.foom #footer{
	display: none;
}
.foom .featurette-divider{
	display: none;
}

.foom .breadcrumb-trail{
	display: none;
}
.foom .entry-title{
	display: none;
}
.foom .entry-content {
    position:fixed;
    top: 50%;
    left: 40%;
    padding: 20px;
}
.foom blockquote{
	background: none;
	border: none;
	padding: 10px 0 0 0;
}
/*remove text shadows - otherwise any change of background colour shows them up - i.e. the Full Page*/
.close, h1, h2, h3, h4, h5, h6 {
    text-shadow: none;
}

/*increase social icon size*/
.social-block a {
    font-size: 1.5em;
}


/*extra top margin to logo*/
.tc-header .brand h1 {
    margin-top: 15px;
}
