/**
 * Color box
 *
 * Description: Style for a colored box of content used at the top of a page.
 * -----------------------------------------------------------------------------
 */


.color-box {
	background-color: $accent-color;
	padding: $margin-standard $margin-standard 0 $margin-standard;
	color: $white; 

	a {
		color: $white;

		&:hover {
			color: $white;
		}
	}
}