@charset "utf-8";

/* CSS Initialisierung (generell)*/
* {
	margin: 0;
	padding: 0;
	hyphens: auto;
		-moz-hyphens: auto;
		-o-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
body {
	width: 100%;
	height: 100%;
	background: #cfd8dc; /* Outdated browsers */
		background: -moz-linear-gradient(-45deg,  #cfd8dc 0%, #607d8b 100%, #b0bec5 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(-45deg,  #cfd8dc 0%,#607d8b 100%,#b0bec5 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(135deg,  #cfd8dc 0%,#607d8b 100%,#b0bec5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media all and (min-width: 900px) {	/* Breiter Bildschirm = mehr Rand, zentriert */
	body {
		margin: 0.5em;
	}
}

/* CSS Initialisierung (Layout) */
.container {
	margin: 0 auto;
	padding: 1em;
	max-width: 1000px;
}
.content {
	padding:0;
}

/* Schriften für Standardelemente */
h1 {
	font-size: 1.5em;
	font-weight: 700;
	margin-left: 6px;
	margin-bottom: 0.2em;
	text-align: left;
	color: #2b363b;		/* 20% von #b0bec5 */
}
h2 {
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 0.2em;
	text-align: left;
	color: #21282c;		/* 15% von #b0bec5 */
}
h3 {
	font-size: 1em;
	font-weight: 700;
	margin-bottom: 0.2em;
	text-align: left;
	color: #21282c;		/* 15% von #b0bec5 */
}
h4, summary {
	font-size: 1.2em;
	font-weight: 700;
	margin-top: 0.6em;
	margin-bottom: 0.2em;
	text-align: left;
	color: #21282c;		/* 15% von #b0bec5 */
}
summary:focus {
	outline: none;
}
summary:hover {
	cursor: pointer;
}
p {
	font-size: 1em;
	font-weight: 400;
	text-align: justify;
	color: #21282c;			/* 15% von #b0bec5 */
}
p + p {
	margin-top: 0.3em;
}
a {
	text-decoration: inherit;
	font-weight: 700;
	color: inherit;
}
a:hover {
	text-decoration: underline;
	color: #005780;		/* 100% Saturation von #b0bec5 */
}
a:hover > img { /* beim Darüberfahren farbige Hervorhebung und Unterstreichung */
	border-color: #005780;
}
strong {
	font-weight: 700;
}
em {
	font-style: italic;
}
@media all and (min-width: 550px) {		/* Alle Geräte mehrspaltig */
	h1 {
		font-size: 2em;
	}
}
@media all and (min-width: 900px) {	/* Breiter Bildschirm = mehr Rand, zentriert */
	h1 {
		font-size: 3em;
	}
}

/* Blog Eintrag aus Bild(ern) + Head + Text */
.comboLink, .diaryEntry {
	background-color: #6c8793;	/* 50% von #b0bec5 */
	margin-top: 0.2em;
	margin-bottom: 0.2em;
	border-radius: 10px;
	padding: 10px;
	float: left;
}
.comboLinkImage, .diaryEntryImage {
	width: 300px;
	height: 200px;
	overflow: hidden;
	position: relative;
	margin-right: 10px;
	margin-bottom: 0.5em;
}
.comboLinkImage img, .diaryEntryImage img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	position: absolute;
	border-style: solid;
	border-color: #6c8793;	/* 50% von #b0bec5 */
}
.comboLinkText, .diaryEntryText {
}
@media all and (min-width: 550px) {		/* Alle Geräte mehrspaltig */
	.comboLinkImage, .diaryEntryImage {
		float: left;
		margin-bottom: 0.1em;
	}
}

/* chatEntry Eingabefelder */
.chatEntry {
	background-color: #a7b7be;	/* 75% Lightness von #b0bec5 */
	margin-top: 0.2em;
	margin-bottom: 0.2em;
	border-radius: 10px;
	padding: 10px;
	float: left;
	width: 100%;
}
@media print {
	.chatEntry {
		display: none;
	}
}
input[type=text], select, textarea {
	width: 100%;
	padding: 4px 10px 6px 10px;
	border: 1px solid #6c8793;
	border-radius: 5px;
	resize: vertical;
}
input[type=submit] {
	padding: 4px 10px 6px 10px;
	margin-top: 4px;
}
label {
	color: #21282c;			/* 15% von #b0bec5 */
	padding: 4px 10px 6px 0;
	display: inline-block;
}
.labelSmall {
	color: #21282c;			/* 15% von #b0bec5 */
	font-weight: 400;
	font-size: 0.8em;
	text-align: justify;
	color: #333333;
}
.col-25, .col-75 {
    width: 100%;
    margin-top: 0;
}
.row:after {
	content: "";
	display: table;
	clear: both;
}
@media all and (min-width: 550px) {		/* Alle Geräte mehrspaltig */
	.col-25 {
		float: left;
		width: 6em;
		margin-top: 6px;
	}
	.col-75 {
		float: left;
		width: calc(100% - 6em);
		margin-top: 6px;
	}
	input[type=submit] {
		padding: 4px 10px 6px 10px;
		margin-top: 0;
	}
}

/* Infobox im Contentbereich */
.contInfo {
	background-color: #b6c3c9;	/* 75% Lightness von #b0bec5 */
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	border-radius: 10px;
	padding: 8px 10px 10px 10px;
	float: left;
	width: 100%;
}
.contInfo p {
	font-weight: 400;
	font-size: 0.8em;
	text-align: justify;
	color: #2b363b;				/* 20% von #b0bec5 */
}

/* Verweise in Kopf- und Fußzeile des Contentbereichs */
.contLink {
	background-color: #a7b7be;	/* 70% Lightness von #b0bec5 */
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	border-radius: 10px;
	padding: 8px 10px 10px 10px;
	float: left;
	width: 100%;
}
.contLink p {
	font-weight: 400;
	font-size: 0.8em;
	text-align: left;
	color: #2b363b;				/* 20% von #b0bec5 */
}
.contLink .thisPage {
	color: #6c8793;				/* 50% Lightness von #b0bec5 */
}
@media print {
	.contLink {
		display: none;
	}
}

/* Kommentare für Chats */
.blogChat {
	background-color: #a7b7be;	/* 70% Lightness von #b0bec5 */
	margin-top: 0.2em;
	margin-bottom: 0.2em;
	border-radius: 10px;
	padding: 8px 10px 10px 10px;
	float: left;
	width: 100%;
}
.blogChat p {
	font-weight: 400;
	font-size: 0.8em;
	text-align: justify;
	color: #2b363b;				/* 20% von #b0bec5 */
}
.blogChat img {
	float: left;
	border-radius: 10px;
	padding-right: 6px;
}

/* Rezept bestehend aus Bild + Zutaten = Intro */
.recipeIntro {
	max-width: 400px;
	background-color: #6c8793;	/* 50% von #b0bec5 */
	margin-top: 0.2em;
	margin-bottom: 0.2em;
	margin-right: 1em;
	border-radius: 10px;
	padding: 10px;
	float: left;
}
.recipeIntro img {
	width:320px;
	border-radius: 10px;
}
.Ingredients {
	margin-top: 0.2em;
}
.recipeText {
	margin-top: 0.2em;
	margin-bottom: 0.2em;
	padding: 10px;
}

/* ANIMIERTE BILDER */
/* 2 Bilder - 1. Bild */
.ani21 {
	animation: anim21 infinite 8s;
	-webkit-animation: anim21 infinite 8s;
	-moz-animation: anim21 infinite 8s;
	-o-animation: anim21 infinite 8s;
	-ms-animation: anim21 infinite 8s;
}
@-webkit-keyframes anim21 {
	0%	{ opacity: 1;}
	49% { opacity: 1;}
	50% { opacity: 0;}
	100%{ opacity: 0;}
}
@-moz-keyframes anim21 {
	0%	{ opacity: 1;}
	49% { opacity: 1;}
	50% { opacity: 0;}
	100%{ opacity: 0;}
}
@-o-keyframes anim21 {
	0%	{ opacity: 1;}
	49% { opacity: 1;}
	50% { opacity: 0;}
	100%{ opacity: 0;}
}
@keyframes anim21 {
	0%	{ opacity: 1;}
	49% { opacity: 1;}
	50% { opacity: 0;}
	100%{ opacity: 0;}
}
/* 2 Bilder - 2. Bild */
.ani22 {
	animation: anim22 infinite 8s;
	-webkit-animation: anim22 infinite 8s;
	-moz-animation: anim22 infinite 8s;
	-o-animation: anim22 infinite 8s;
	-ms-animation: anim22 infinite 8s;
}
@-webkit-keyframes anim22 {
	0%	{ opacity: 0;}
	49% { opacity: 0;}
	50% { opacity: 1;}
	100%{ opacity: 1;}
}
@-moz-keyframes anim22 {
	0%	{ opacity: 0;}
	49% { opacity: 0;}
	50% { opacity: 1;}
	100%{ opacity: 1;}
}
@-o-keyframes anim22 {
	0%	{ opacity: 0;}
	49% { opacity: 0;}
	50% { opacity: 1;}
	100%{ opacity: 1;}
}
@keyframes anim22 {
	0%	{ opacity: 0;}
	49% { opacity: 0;}
	50% { opacity: 1;}
	100%{ opacity: 1;}
}
/* 3 Bilder - 1. Bild */
.ani31 {
	animation: anim31 infinite 8s;
	-webkit-animation: anim31 infinite 8s;
	-moz-animation: anim31 infinite 8s;
	-o-animation: anim31 infinite 8s;
	-ms-animation: anim31 infinite 8s;
}
@-webkit-keyframes anim31 {
	0%, 100% { opacity: 1;}
	32%	{ opacity: 1;}
	33% { opacity: 0;}
	65% { opacity: 0;}
	66% { opacity: 0;}
	99% { opacity: 0;}
}
@-moz-keyframes anim31 {
	0%, 100% { opacity: 1;}
	32%	{ opacity: 1;}
	33% { opacity: 0;}
	65% { opacity: 0;}
	66% { opacity: 0;}
	99% { opacity: 0;}
}
@-o-keyframes anim31 {
	0%, 100% { opacity: 1;}
	32%	{ opacity: 1;}
	33% { opacity: 0;}
	65% { opacity: 0;}
	66% { opacity: 0;}
	99% { opacity: 0;}
}
@keyframes anim31 {
	0%, 100% { opacity: 1;}
	32%	{ opacity: 1;}
	33% { opacity: 0;}
	65% { opacity: 0;}
	66% { opacity: 0;}
	99% { opacity: 0;}
}
/* 3 Bilder - 2. Bild */
.ani32 {
	animation: anim32 infinite 8s;
	-webkit-animation: anim32 infinite 8s;
	-moz-animation: anim32 infinite 8s;
	-o-animation: anim32 infinite 8s;
	-ms-animation: anim32 infinite 8s;
}
@-webkit-keyframes anim32 {
	0%, 100% { opacity: 0;}
	32% { opacity: 0;}
	33% { opacity: 1;}
	65% { opacity: 1;}
	66% { opacity: 0;}
	99% { opacity: 0;}
}
@-moz-keyframes anim32 {
	0%, 100% { opacity: 0;}
	32% { opacity: 0;}
	33% { opacity: 1;}
	65% { opacity: 1;}
	66% { opacity: 0;}
	99% { opacity: 0;}
}
@-o-keyframes anim32 {
	0%, 100% { opacity: 0;}
	32% { opacity: 0;}
	33% { opacity: 1;}
	65% { opacity: 1;}
	66% { opacity: 0;}
	99% { opacity: 0;}
}
@keyframes anim32 {
	0%, 100% { opacity: 0;}
	32% { opacity: 0;}
	33% { opacity: 1;}
	65% { opacity: 1;}
	66% { opacity: 0;}
	99% { opacity: 0;}
}
/* 3 Bilder - 3. Bild */
.ani33 {
	animation: anim33 infinite 8s;
	-webkit-animation: anim33 infinite 8s;
	-moz-animation: anim33 infinite 8s;
	-o-animation: anim33 infinite 8s;
	-ms-animation: anim33 infinite 8s;
}
@-webkit-keyframes anim33 {
	0%, 100% { opacity: 0;}
	32% { opacity: 0;}
	33% { opacity: 0;}
	65% { opacity: 0;}
	66% { opacity: 1;}
	99% { opacity: 1;}
}
@-moz-keyframes anim33 {
	0%, 100% { opacity: 0;}
	32% { opacity: 0;}
	33% { opacity: 0;}
	65% { opacity: 0;}
	66% { opacity: 1;}
	99% { opacity: 1;}
}
@-o-keyframes anim33 {
	0%, 100% { opacity: 0;}
	32% { opacity: 0;}
	33% { opacity: 0;}
	65% { opacity: 0;}
	66% { opacity: 1;}
	99% { opacity: 1;}
}
@keyframes anim33 {
	0%, 100% { opacity: 0;}
	32% { opacity: 0;}
	33% { opacity: 0;}
	65% { opacity: 0;}
	66% { opacity: 1;}
	99% { opacity: 1;}
}
