/*
|===========================================================================================================
| themename.css
|===========================================================================================================
|
| THEMENAME THEME
| 
| - Nest and indent your styles
| - Keep styles organized (use headings and comments)
| - Prefix your styles with a theme class (see example below)
| 
| 
| Usage: 
|
| Update the $theme_name variable in inc/siteinfo.php. This variable is added to the body tag as a class. 
| 
| Use the themename to define all your styles within common containers so
| as not to override default page styles in the header and footer.
| 
| The most commeon containers will be ".page" and ".feature" but you might have others in a unique template.
| 
| Do not use just ".themename" because it will override the msu-header and msu-footer styles. You must target
| the inner containers.
| 
| For example, your css rules would be prefixed with ".themename .page" or ".themename .feature" and etc.
| Check out Chevron and True Bulldog for further examples.
|
*/


/** ------------------------------------------------------------------------------------------------------- */
/**
 * 	UNIVERSAL 
 */

/* type */

.themename .page p {

}

.themename .page h1 {

}

/** ------------------------------------------------------------------------------------------------------- */
/**
 * 	ADJUSTMENTS AND MINOR ADDITIONS 
 */

/* buttons */

.themename .page .btn {

}

.themename .page .btn-primary {

}
	.themename .page .btn-primary:hover, 
	.themename .page .btn-primary:focus, 
	.themename .page .btn-primary:active, 
	.themename .page .btn-primary.active, 
	.themename .page .open > .dropdown-toggle.btn-primary {

	}


