/* --------------------------------------------------------

	Theme style sheet sets a specific accent color 
	on some elements. Including this file depends
	on the visited category.

	Author:      click solutions GmbH  
				 Michael Schultze
	
	Project:     www.wings.hs-wismar.de

   -------------------------------------------
	TABLE OF CONTENT
		
		Colors
		Backgrounds
		Headings
		Buttons

   ------------------------------------------- */
@charset 'UTF-8';


/* ========================================================
    Colors
   ======================================================== */

.color-accent {
	color: rgb(127, 158, 204); /* should be replaced by specific accent colors */
}


/* ========================================================
   Backgrounds
   ======================================================== */

/* specify background colors from style document */
.bg-accent {
	background-color: rgb(127, 158, 204); /* should be replaced by specific accent colors */
	color: white;	
}




/* ========================================================
    Headings
   ======================================================== */

h2, .h2, .as-h2,
h4, .h4, .as-h4 {
	color: rgb(127, 158, 204);
}


/* ========================================================
    Buttons
   ======================================================== */


.button--primary,
.button.-primary,
.button--accent,
.button.-accent {
	background: rgb(127, 158, 204); /* should be replaced by specific accent colors */
	color: white;
}
	.button--primary:hover,
  .button.-primary:hover,
  .button--primary:focus,
  .button.-primary:focus,
  .button--accent:hover,
  .button.-accent:hover,
  .button--accent:focus,
  .button.-accent:focus {
		background: rgb(98, 130, 179); /* should be replaced by specific accent colors */
	}


.button--secondary,
.button.-secondary,
.button--ghost,
.button.-ghost {
	border-color: rgb(127, 158, 204); /* should be replaced by specific accent colors */
	color: rgb(127, 158, 204); /* should be replaced by specific accent colors */
}


/* ========================================================
    Navigation
   ======================================================== */

.nav--vertical .nav__link.is-current {
	color: rgb(127, 158, 204); /* should be replaced by specific accent colors */
}
