/*=======================================
Music Stylesheet für die Meder Website
Aufbau: 1.Grundlegende Formatierung
		2. Responsive Design
		3. Dialog
======================================*/

@import "Base.css";
@media screen {

/*=======================================
  1. Grundlegende Formatierung
=======================================*/

.song-art-container {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


.song-art-container::before {
	position:  absolute;
	top:  0;
	left:  0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: rgba(0, 0, 0, 0.4);
	background-image: url("../bilder/play.png");
	background-position: center;
	background-size: 35% auto;
	background-repeat: no-repeat;
	opacity: 0;
	transition: .5s;
	cursor: pointer;
}

.song-art-container:hover::before {
	opacity: 1;
}

.song-row {
	min-height: 200px;
}

.small-text {
	font-size: .8em;
}

.song-description {
	padding-left: 2.5em;
	text-align: left;
}

#songs {
	margin-bottom: 2em;
	text-align: left;
}

#page-container {
	margin-top: 2em;
}

/*=======================================
  2. Responsive Design
=======================================*/

@media only screen and (max-width: 576px) {
	.song-art-container {
		height: 300px;
	}

	.song-description {
		padding-left: unset;
		padding-top: 1em;
	}
}

/*=======================================
  3. Dialog
=======================================*/

#yt-dialog.loading .dialog-body:before {
	content: " ";
	width: 5em;
	height: 5em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-image: url("../bilder/loader.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	animation: 1s loading infinite linear;
}

@keyframes loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}

}	
}

/*=======================================
  Ende CSS Seite
=======================================*/