User

Difference between revisions of "Mathis Back/bluell.css"

(flex filter box)
(flex buttons)
Line 11: Line 11:
 
     display: flex;
 
     display: flex;
 
     flex-direction: column;
 
     flex-direction: column;
 +
}
 +
 +
#buttonsContainer p {
 +
display: flex;
 +
    flex-direction: row;
 +
    justify-content: space-evenly;
 
}
 
}
  

Revision as of 14:16, 15 September 2021

#totalContainer {
	display: flex;
	justify-content: space-between;
}

#filterContainer {
	margin-top: 3em;
}

#filterContainer p {
    display: flex;
    flex-direction: column;
}

#buttonsContainer p {
	display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#audioresults {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 1100px) {
	#audioresults {
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	#totalContainer {
		flex-direction: column;
		align-items: center;
	}
}

.audiobox {
	margin-right: 12px;
}