/*
## Ersteller: Udo Kasper
## Erstelldatum: 2020-04-14
## Beschreibung: Formatierung der Belegungs-Seite
##
## Änderungshistorie
## Datum      Änderer    Änderung
## ---------- ---------- -----------------------------------------------------------------------
*/

/*
** Zuerst die Definitionen für alle ...
*/

#cont {
	display				: block;
	}
.buttonsGroup {
	display				: flex;
	flex-flow			: row wrap;
	justify-content		: space-around;
	}
.Text {
	font-family			: var(--schriftArt);
	font-size			: var(--schriftGroesseKlein);
	color				: var(--schriftFarbe);
	font-weight			: bold;
	}


/*
** dann die für das Handy ...
*/
#cont {
	padding-top			: 10px;
	padding-bottom		: 400px;
	}
.Fenster {
	display				: none;
	}
.Text {
	padding-top			: 10px;
	padding-bottom		: 10px;
	}
.Text ,
.Link {
	text-align			: center;
	}

/*
/* ... dann die für das Tablet ...
*/
@media screen and (min-width: 700px) {
	#cont {
		padding			: 0px;
		width			: 700px;
		}
	.Text ,
	.Link {
		display			: none;
		}
	.Fenster {
		display			: block;
		text-align		: center;
		}
	iframe
		{ height		: 550px
		; width			: 690px
		;}
}


/*
/* ... und zum Schluss die für den PC
*/
@media only screen and (min-device-width: 1200px) {
	#cont {
		width			: 1010px;
		}
	iframe
		{ height		: 750px
		; width			: 990px
		;}
}

