/*
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
Version:        1.0.0
*/

/* Your awesome customizations start right here !
-------------------------------------------------------------- */

/********************************************************/
/* Set Horizontal Line style to my blue    */
/********************************************************/
hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #1A80B6;
  border-bottom: 1px solid #ffffff;
}

/********************************************************/
/* Set Footer colour to my blue    */
/********************************************************/
footer#footer {
    background: none repeat scroll 0 0 #1A80B6;
}


