/*
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 !
-------------------------------------------------------------- */

/* START OF Change the Navbar Colors/Font/Size */
/* Adjust Menu (red) text color, (Garamond) font-family, (1.5em) font-size  */
.navbar .nav > li > a, .navbar .nav > li > a:first-letter,
.navbar .nav > li.current-menu-item > a, 
.navbar .nav > li.current-menu-ancestor > a {
display:        inline;
color:          red;                        
font-family:    Georgia;
font-size:      1.3em;
padding:        5px 30px;
}
 
/* Adjust Menu colors - Normal */
.navbar .nav > li > a, .navbar .nav > li > a:first-letter {
color:          #a6a6a6;
text-shadow:    none;
}
/* Adjust Menu colors - Hover */
.navbar .nav > li > a:hover, .navbar .nav > li > a:hover:first-letter { 
color:          #008000;                      
text-shadow:    none;
}
/* Adjust Menu colors - Active */
.navbar .nav > li > a:active, .navbar .nav > li > a:active:first-letter,
.navbar .nav > li.current-menu-item > a, 
.navbar .nav > li.current-menu-ancestor > a,
.navbar .nav > li.current-menu-item > a:first-letter, 
.navbar .nav > li.current-menu-ancestor > a:first-letter {
color:          #008000;
text-shadow:    none;
}
 
/* Adjust dropdown Menu items (blue) text color, (yellow) shading and (green) border */
.dropdown-menu > li > a {
color:          blue;
background:     yellow;
border-bottom:  2px solid green;
}
 
/* Remove the Hover/Focus Colors  
.navbar .nav > li.current-menu-item > a, .navbar .nav > li.current-menu-ancestor > a, 
.navbar .nav > li > a:hover, .navbar .nav > li > a:focus {
color:          #5A5A5A;
}*/
/* END OF Change the Navbar Colors/Font/Size */

.navbar.resp {
margin:         0px 0px;           /* Default position */
 
margin-top:     20px;              /* Move down by 20px */
margin-bottom:  -20px;
 
margin-bottom:  20px;              /* Move up by 20px */
margin-top:     -20px;
 
margin-left:    20px;              /* Move right by 20px */
margin-right:   -20px;
 
margin-right:   20px;              /* Move left by 20px */
margin-left:    -20px;
 
margin:         20px 0px 0px 20px; /* Move down 20px, right 20px */
}
header.tc-header {
background-image: -moz-linear-gradient(top, #e2ffe2, white);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e2ffe2), to(white));
background-image: -webkit-linear-gradient(top, #e2ffe2, white);
background-image: -o-linear-gradient(top, #e2ffe2, white);
background-image: linear-gradient(to bottom, #e2ffe2, white);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2ffe2' , endColorstr='white' , GradientType=0);
}
footer#footer .colophon {
background-image: -moz-linear-gradient(top, white, #e2ffe2);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e2ffe2));
background-image: -webkit-linear-gradient(top, white, #e2ffe2);
background-image: -o-linear-gradient(top, white, #e2ffe2);
background-image: linear-gradient(to bottom, white, #e2ffe2);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white' , endColorstr='#e2ffe2' , GradientType=0);
}
body {
background-color: #f5fff5;
}
.round-div {
border-color:   #f5fff5;
}
footer#footer, .footer-widgets   {
  background: none repeat scroll 0 0 #f5fff5; /* Change pink */
}