/**
* Theme Name: Customizr Pro
* Theme URI: http://presscustomizr.com/extension/customizr-pro/
* Description: The pro version of the popular Customizr WordPress theme.
* Version: 1.2.15
* Author: Press Customizr
* Author URI: http://presscustomizr.com/
* Tags: gray, white, light, blue, red, yellow, green, purple, orange, black, one-column, two-columns, three-columns, left-sidebar, right-sidebar, fluid-layout, responsive-layout, custom-menu, custom-colors, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, sticky-post, post-formats, rtl-language-support, editor-style
* Text Domain: customizr
* Copyright: (c) 2015 Nicolas GUILLAUME (Press Customizr), Nice, France
* License: GNU General Public License v2.0 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/**
* The styleheets of Customizr are located in inc/assets/css. Each skin has its own stylesheet : blue.css, green.css, ...
* The current stylesheet is loaded after the main skin stylesheet.
*
* IMPORTANT : If you write your CSS code below, it will be deleted when you'll update the theme.
* If you want to make quick style test / changes, consider using the Custom CSS section in appearance > customize > advanced options > Custom CSS, it will persist on update since it is saved in your database.
* To make important CSS customizations, you'll want to use a child theme and add your css code in the style.css file of it.
*/
/* START OF Adjust Sitewide Background & Text Color/Size */
/* Change the Header background */
header.tc-header, .navbar-wrapper,
.sticky-enabled header.tc-header   {
background-color:   red;                /* Change pink */
}
/* Adjust the Header */
header.tc-header {
/* Adjust the (red) top border style/color */     
border-top:         10px solid red;
/* Adjust the (green) bottom border style/color */              
border-bottom:      10px solid red;             
}
/* Change the Navbar background */
.navbar-inner {
background-color:   red;               /* Change pink */
background-image:   linear-gradient(to bottom, red, red); /* Change pink */
background-repeat:  repeat-x;
border: 1px solid   red;               /* Change pink */
border-radius:      4px;
box-shadow:         0 1px 4px rgba(0, 0, 0, 0.067);
}
/* END OF Adjust Sitewide Background & Text Color/Size */

/* 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:          white;                        
}

/* Adjust Menu colors - Hover */
.navbar .nav > li > a:hover, .navbar .nav > li > a:hover:first-letter { 
color:          black;                      
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:          black;
text-shadow:    none;
}

/* Adjust dropdown Menu items (blue) text color, (yellow) shading and (green) border */
.dropdown-menu > li > a {
color:          white;
background:     black;
border-bottom:  2px solid red;
}

footer#footer {
    background: none repeat scroll 0 0 red;
}